* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --tangerine: #FF9F1C;
    --bright-orange: #FF5722;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --gray: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    padding: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.8rem 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 1.8rem 1.5rem;
    display: block;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--tangerine));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--tangerine);
}

.nav-links a:hover::before {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--tangerine);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(255, 107, 53, 0.3)), 
                url('images/storefront.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 159, 28, 0.2) 100%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 3px solid var(--tangerine);
}

.hero-logo {
    width: 300px;
    max-width: 80%;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--tangerine);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    font-family: 'Bebas Neue', sans-serif;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--tangerine));
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s;
    letter-spacing: 3px;
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    border: 2px solid var(--white);
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.5);
}

/* About Section */
.about {
    padding: 4rem 5%;
    background: var(--white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--black);
    letter-spacing: 5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--tangerine));
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--gray);
    font-weight: 400;
}

.about-image {
    display: none;
}

/* Features */
.features {
    padding: 4rem 5%;
    background: var(--black);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--tangerine);
    box-shadow: 0 20px 40px rgba(255, 159, 28, 0.4);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

/* Gallery Carousel */
.gallery {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--tangerine) 100%);
    color: var(--white);
}

.gallery-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 60px;
}

.gallery-carousel {
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 450px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-orange);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--white);
}

.gallery-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 5%;
    background: var(--black);
}

/* Location Section */
.location {
    padding: 5rem 5%;
    background: var(--off-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.location-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--tangerine);
}

.location-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    min-width: 35px;
}

.info-text h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    letter-spacing: 1px;
}

.info-text p {
    color: var(--gray);
    line-height: 1.8;
}

.info-text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    color: var(--tangerine);
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1.5rem;
    margin-top: 1rem;
}

.hours-grid .day {
    font-weight: 700;
    color: var(--black);
}

.hours-grid .time {
    color: var(--gray);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    height: 500px;
    border: 4px solid var(--tangerine);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--tangerine);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--tangerine);
}

.footer-logo {
    width: 200px;
    margin: 0 auto 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-links a:hover {
    background: var(--tangerine);
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    border-top: 2px solid var(--primary-orange);
    padding-top: 2rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: right 0.3s;
        border-top: 3px solid var(--tangerine);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1.2rem 2rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .hero {
        background-attachment: scroll;
        background-size: auto 100%;
        background-position: center center;
        min-height: 100vh;
    }

    .hero-logo {
        width: 150px;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-image img {
        height: 300px;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.7rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .gallery {
        padding: 3rem 4%;
    }

    .gallery-slide {
        height: 350px;
        width: 100%;
    }

    .gallery-carousel-wrapper {
        max-width: 100%;
        padding: 0 50px;
        margin: 2rem auto 0;
    }

    .gallery-carousel {
        width: 100%;
    }

    .gallery-track {
        width: 100%;
    }

    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .gallery-nav.prev {
        left: 0;
    }

    .gallery-nav.next {
        right: 0;
    }

    .location-info {
        padding: 2rem;
    }

    .info-text p {
        font-size: 0.95rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 50px;
    }

    .about,
    .features,
    .gallery,
    .location,
    .instagram-section {
        padding: 3rem 4%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
        border-width: 2px;
    }

    .hero {
        background-attachment: scroll;
        background-size: auto 100%;
        background-position: 40% center;
        min-height: 100vh;
    }

    .hero-logo {
        width: 130px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.7rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .gallery {
        padding: 3rem 3%;
    }

    .gallery-slide {
        height: 280px;
        width: 100%;
    }

    .gallery-carousel-wrapper {
        max-width: 100%;
        padding: 0 45px;
        margin: 2rem auto 0;
    }

    .gallery-carousel {
        width: 100%;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .gallery-nav.prev {
        left: 0;
    }

    .gallery-nav.next {
        right: 0;
    }

    .gallery-carousel {
        border-width: 2px;
    }

    .gallery-dots {
        margin-top: 20px;
    }
}
