/* ========================================
   O'DWICH - Street Food Style
   ======================================== */

/* CSS Variables */
:root {
    /* Colors from brand */
    --black: #0a0a0a;
    --dark: #121212;
    --dark-light: #1a1a1a;
    --green: #8be32b;
    --green-dark: #5ba50a;
    --orange: #f97316;
    --orange-light: #fb923c;
    --white: #fafafa;
    --gray: #a1a1aa;
    --gray-dark: #52525b;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-hero: 'Gasoek One', sans-serif;
    --font-tag: 'Permanent Marker', cursive;
    --font-body: 'Inter', sans-serif;
    --font-subtitle: 'Montserrat', sans-serif;

    /* Spacing */
    --nav-height: 80px;
    --container-width: 1200px;
    --section-padding: 120px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   LOADER
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.loader-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
}

/* Ghost logo - faded version always visible */
.loader-logo-ghost {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0.12;
}

/* Fill container - clips the filled logo */
.loader-logo-fill {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: inset(100% 0 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 100%;
    height: auto;
}

/* Curtain overlay */
.loader-curtain {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    transform-origin: bottom center;
    pointer-events: none;
}

/* Curtain texture */
.loader-curtain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

/* Hide page content until loaded */
body.loading .hero,
body.loading .concept,
body.loading .showcase,
body.loading .commander,
body.loading .footer {
    visibility: hidden;
}

body.loading {
    overflow: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-hero);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--white);
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--green);
}

.mobile-cta {
    font-family: var(--font-display);
    font-size: 1.2rem;
    padding: 16px 40px;
    background: var(--orange);
    color: var(--black);
    border-radius: 4px;
    margin-top: 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Graffiti overlay */
.hero-graffiti {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.graffiti-overlay-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--nav-height) + 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-style: italic;
    background: linear-gradient(128deg, rgba(255, 255, 255, 1) 16%, rgba(153, 153, 153, 1) 106%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: inline;
}

.hero-subtitle {
    font-family: var(--font-subtitle);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn-commander {
    display: inline-block;
    font-family: var(--font-hero);
    font-size: 1.3rem;
    text-transform: uppercase;
    padding: 14px 48px;
    border-radius: 8px;
    background: linear-gradient(114deg, #8be32b 11%, #5ba50a 104%);
    color: #1a1a1a;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 227, 43, 0.3);
    cursor: pointer;
}

.btn-commander:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 227, 43, 0.5);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-hero);
    font-size: 1.3rem;
    text-transform: uppercase;
    padding: 12px 48px;
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* Hero scene (sandwiches on tablecloth) */
.hero-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-scene-img {
    width: 70%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: -80px;
}

.btn {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--green);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 227, 43, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.2rem;
}


/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: var(--section-padding) 0;
}

.section-tag {
    font-family: var(--font-tag);
    font-size: 0.9rem;
    color: var(--orange);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 24px;
}

.text-accent {
    color: var(--green);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

/* ========================================
   CONCEPT SECTION
   ======================================== */
.concept {
    position: relative;
    background: var(--black);
    padding: 120px 0;
    overflow: hidden;
}

.concept-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 227, 43, 0.06) 0%, transparent 60%);
}

.concept-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.concept-script {
    font-family: var(--font-tag);
    font-size: 2.5rem;
    color: var(--green);
    display: block;
    margin-bottom: 20px;
}

.concept-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
    -webkit-text-stroke: 0.25px var(--orange);
}

.concept-text {
    font-family: var(--font-subtitle);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 50px;
}

.concept-text strong {
    color: var(--green);
    font-weight: 600;
}

.concept-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--green);
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.feature-sub {
    font-size: 0.8rem;
    color: var(--gray);
}

.feature-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.btn-concept {
    display: inline-block;
    font-family: var(--font-hero);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 16px 48px;
    background: #f5f5dc;
    color: var(--black);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-concept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 245, 220, 0.2);
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */
.showcase {
    position: relative;
    background: var(--black);
    padding: 120px 0;
    overflow: hidden;
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/tag-rempli.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.showcase .container {
    position: relative;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-script {
    font-family: var(--font-tag);
    font-size: 2rem;
    color: var(--orange);
    display: block;
    margin-bottom: 16px;
}

.showcase-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    -webkit-text-stroke: 0.25px var(--orange);
}

.showcase-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    position: relative;
    background: var(--dark);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 50px rgba(139, 227, 43, 0.15);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    background: var(--green);
    color: var(--black);
    border-radius: 4px;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-info {
    text-align: center;
}

.product-name {
    font-family: var(--font-hero);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-desc {
    font-family: var(--font-subtitle);
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.product-origin {
    font-family: var(--font-tag);
    font-size: 0.8rem;
    color: var(--orange);
}

.showcase-cta {
    text-align: center;
}

/* ========================================
   COMMANDER SECTION
   ======================================== */
.commander {
    position: relative;
    background: var(--black);
    padding: 120px 0;
    overflow: hidden;
}

.commander-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 227, 43, 0.06) 0%, transparent 60%);
}

.commander-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.commander-script {
    font-family: var(--font-tag);
    font-size: 2.5rem;
    color: var(--orange);
    display: block;
    margin-bottom: 16px;
}

.commander-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}

.commander-desc {
    font-family: var(--font-subtitle);
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.7;
}

.commander-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    text-align: left;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    background: rgba(139, 227, 43, 0.05);
}

.platform-card.uber:hover {
    border-color: #06c167;
    background: rgba(6, 193, 103, 0.1);
}

.platform-card.deliveroo:hover {
    border-color: #00ccbc;
    background: rgba(0, 204, 188, 0.1);
}

.platform-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

img.platform-logo {
    object-fit: contain;
    background: transparent;
}

.platform-card.uber img.platform-logo {
    background: #06C167;
    padding: 4px 2px;
}

.platform-card.deliveroo img.platform-logo {
    background: #00CCBC;
    padding: 4px;
}

.platform-logo.surplace-logo {
    background-color: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 8c-11 0-20 9-20 20 0 15 20 32 20 32s20-17 20-32c0-11-9-20-20-20zm0 27c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.platform-logo.livraison-logo {
    background-color: var(--orange);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M19.5 8H17V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v9h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-4l-3-3zM6 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12.5-8.5l1.96 2.5H17V8.5h1.5zM18 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'/%3E%3C/svg%3E");
    background-size: 55%;
    background-position: center;
    background-repeat: no-repeat;
}

.platform-card.livraison {
    border-color: rgba(249, 115, 22, 0.3);
}

.platform-card.livraison:hover {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.05);
}

.platform-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.platform-name {
    font-family: var(--font-hero);
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
}

.platform-time {
    font-size: 0.85rem;
    color: var(--gray);
}

.platform-arrow {
    font-size: 1.5rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.platform-card:hover .platform-arrow {
    color: var(--white);
    transform: translateX(5px);
}

.commander-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: var(--gray);
    font-family: var(--font-subtitle);
    font-size: 0.95rem;
}

.commander-hours svg {
    color: var(--green);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-insta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-insta:hover {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.1);
}

.footer-insta svg {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 30px;
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.footer-sep {
    opacity: 0.3;
}

.footer-credit {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-credit:hover {
    color: var(--green);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Large screens */
@media (max-width: 1400px) {
    .hero-scene-img {
        width: 95%;
        max-width: 1000px;
    }
}

/* Medium-large screens (laptops) */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .hero-title {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    }

    .hero-scene {
        margin-top: -100px;
    }

    .hero-scene-img {
        width: 100%;
    }

    .showcase-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }

    .nav {
        padding: 0 32px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero-content {
        padding-top: calc(var(--nav-height) + 40px);
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 1.6vw, 1.1rem);
        padding: 0 20px;
    }

    .hero-ctas {
        gap: 16px;
    }

    .btn-commander,
    .btn-outline {
        font-size: 1.1rem;
        padding: 12px 36px;
    }

    .hero-scene {
        margin-top: -80px;
    }

    /* Concept */
    .concept {
        padding: 100px 0;
    }

    .concept-script {
        font-size: 2.2rem;
    }

    .concept-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .concept-features {
        gap: 24px;
    }

    .feature-separator {
        height: 30px;
    }

    /* Showcase */
    .showcase {
        padding: 100px 0;
    }

    .showcase-script {
        font-size: 1.8rem;
    }

    .showcase-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* Commander */
    .commander {
        padding: 100px 0;
    }

    .commander-script {
        font-size: 2.2rem;
    }

    .commander-platforms {
        gap: 16px;
    }

    .platform-card {
        padding: 20px 24px;
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
        --nav-height: 70px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-logo-img {
        height: 45px;
    }

    /* Mobile Menu Amélioré */
    .mobile-menu {
        padding-top: var(--nav-height);
    }

    .mobile-menu-content {
        gap: 24px;
    }

    .mobile-link {
        font-size: 2rem;
    }

    .mobile-cta {
        font-size: 1rem;
        padding: 14px 36px;
        margin-top: 16px;
    }

    /* Burger Animation */
    .nav-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        padding-top: calc(var(--nav-height) + 30px);
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 20px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        padding: 0 30px;
        width: 100%;
        max-width: 320px;
    }

    .btn-commander,
    .btn-outline {
        font-size: 1rem;
        padding: 14px 32px;
        width: 100%;
        text-align: center;
    }

    .hero-scene {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: -40px;
    }

    .hero-scene-img {
        width: 105%;
        max-width: none;
        margin-bottom: -50px;
    }

    .hero-graffiti {
        opacity: 0.6;
    }

    /* Concept */
    .concept {
        padding: 70px 0;
    }

    .concept-script {
        font-size: 1.8rem;
    }

    .concept-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .concept-text {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 0;
    }

    .concept-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .feature {
        background: rgba(255, 255, 255, 0.03);
        padding: 14px 16px;
        border-radius: 12px;
        justify-content: flex-start;
    }

    .feature-separator {
        display: none;
    }

    .btn-concept {
        font-size: 1rem;
        padding: 14px 40px;
    }

    /* Showcase */
    .showcase {
        padding: 70px 0;
    }

    .showcase-header {
        margin-bottom: 40px;
    }

    .showcase-script {
        font-size: 1.5rem;
    }

    .showcase-title {
        font-size: 1.6rem;
    }

    .showcase-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .product-card {
        padding: 16px;
        border-radius: 16px;
    }

    .product-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
        top: 12px;
        left: 12px;
    }

    .product-image {
        height: 200px;
        margin-bottom: 16px;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .product-desc {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .product-origin {
        font-size: 0.7rem;
    }

    /* Commander */
    .commander {
        padding: 70px 0;
    }

    .commander-script {
        font-size: 1.8rem;
    }

    .commander-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .commander-desc {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .commander-platforms {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .platform-card {
        padding: 16px 20px;
    }

    .platform-logo {
        width: 44px;
        height: 44px;
    }

    .platform-name {
        font-size: 1rem;
    }

    .platform-time {
        font-size: 0.8rem;
    }

    .platform-arrow {
        font-size: 1.2rem;
    }

    .commander-hours {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-insta {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        font-size: 0.8rem;
    }

    .footer-sep {
        display: none;
    }

    .footer-bottom span,
    .footer-bottom a {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Loader mobile */
    .loader-logo-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
        --nav-height: 65px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-logo-img {
        height: 38px;
    }

    .nav-burger span {
        width: 24px;
    }

    /* Mobile Menu */
    .mobile-link {
        font-size: 1.6rem;
    }

    .mobile-cta {
        font-size: 0.9rem;
        padding: 12px 32px;
    }

    /* Hero */
    .hero-content {
        padding-top: calc(var(--nav-height) + 20px);
    }

    .hero-title {
        font-size: 1.5rem;
        padding: 0 16px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        padding: 0 16px;
        margin-bottom: 20px;
    }

    .hero-ctas {
        padding: 0 20px;
        max-width: 100%;
    }

    .btn-commander,
    .btn-outline {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .hero-scene {
        margin-top: -30px;
    }

    .hero-scene-img {
        width: 115%;
        margin-bottom: -40px;
    }

    /* Concept */
    .concept {
        padding: 60px 0;
    }

    .concept-script {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .concept-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .concept-text {
        font-size: 0.88rem;
        margin-bottom: 32px;
    }

    .concept-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature {
        padding: 12px 14px;
        max-width: none;
        width: 100%;
    }

    .feature-icon {
        width: 26px;
        height: 26px;
    }

    .feature-title {
        font-size: 0.85rem;
    }

    .feature-sub {
        font-size: 0.72rem;
    }

    .btn-concept {
        font-size: 0.9rem;
        padding: 12px 32px;
    }

    /* Showcase */
    .showcase {
        padding: 60px 0;
    }

    .showcase-header {
        margin-bottom: 32px;
    }

    .showcase-script {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .showcase-title {
        font-size: 1.3rem;
    }

    .showcase-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 32px;
    }

    .product-card {
        padding: 12px;
        border-radius: 14px;
    }

    .product-card:hover {
        transform: translateY(-4px);
    }

    .product-badge {
        top: 8px;
        left: 8px;
        font-size: 0.5rem;
        padding: 3px 6px;
    }

    .product-image {
        height: 160px;
        margin-bottom: 12px;
    }

    .product-name {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .product-desc {
        font-size: 0.65rem;
        margin-bottom: 6px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-origin {
        font-size: 0.6rem;
    }

    /* Commander */
    .commander {
        padding: 60px 0;
    }

    .commander-script {
        font-size: 1.4rem;
    }

    .commander-title {
        font-size: 1.3rem;
    }

    .commander-desc {
        font-size: 0.88rem;
        margin-bottom: 28px;
    }

    .commander-platforms {
        gap: 10px;
        margin-bottom: 28px;
    }

    .platform-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .platform-logo {
        width: 40px;
        height: 40px;
    }

    .platform-name {
        font-size: 0.9rem;
    }

    .platform-time {
        font-size: 0.75rem;
    }

    .platform-arrow {
        font-size: 1rem;
    }

    .commander-hours {
        font-size: 0.78rem;
        padding: 8px 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-main {
        gap: 20px;
        padding-bottom: 24px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-insta {
        font-size: 0.8rem;
        padding: 8px 14px;
        gap: 8px;
    }

    .footer-insta svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.75rem;
    }

    /* Loader */
    .loader-logo-wrapper {
        width: 160px;
        height: 160px;
    }
}

/* Small mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 14px;
    }

    .nav-logo-img {
        height: 34px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.72rem;
    }

    .btn-commander,
    .btn-outline {
        font-size: 0.82rem;
        padding: 10px 20px;
    }

    .concept-script {
        font-size: 1.3rem;
    }

    .concept-title {
        font-size: 1.15rem;
    }

    .concept-text {
        font-size: 0.82rem;
    }

    .showcase-script {
        font-size: 1.15rem;
    }

    .showcase-title {
        font-size: 1.15rem;
    }

    .product-card {
        padding: 12px;
        gap: 12px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }

    .product-name {
        font-size: 0.88rem;
    }

    .commander-script {
        font-size: 1.2rem;
    }

    .commander-title {
        font-size: 1.15rem;
    }

    .mobile-link {
        font-size: 1.4rem;
    }

    .loader-logo-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
