/* =====================================================
   DA ENNIO - Premium Italian Sandwich Shop
   Color palette:
     Black:       #000000
     Italian Green: #009246
     Italian White: #FFFFFF
     Italian Red:   #CE2B37
     Gold:          #D4AF37
   ===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* ---------- Tricolor stripe utility ---------- */
.tricolor-bar {
    display: flex;
    height: 5px;
    width: 100%;
}
.tricolor-bar__green  { flex: 1; background: #009246; }
.tricolor-bar__white  { flex: 1; background: #FFFFFF; }
.tricolor-bar__red    { flex: 1; background: #CE2B37; }

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-tricolor {
    display: flex;
    height: 4px;
}
.header-tricolor span {
    flex: 1;
}
.header-tricolor span:nth-child(1) { background: #009246; }
.header-tricolor span:nth-child(2) { background: #FFFFFF; }
.header-tricolor span:nth-child(3) { background: #CE2B37; }

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.header-nav a:hover {
    color: #D4AF37;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow behind title */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #009246;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 12px;
}

.hero-logo-img {
    height: clamp(70px, 12vw, 130px);
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Tricolor underline accent under the title */
.hero-title-accent {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}
.hero-title-accent span {
    width: 48px;
    height: 3px;
    border-radius: 2px;
}
.hero-title-accent span:nth-child(1) { background: #009246; }
.hero-title-accent span:nth-child(2) { background: #FFFFFF; }
.hero-title-accent span:nth-child(3) { background: #CE2B37; }

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: rgba(255,255,255,0.72);
    max-width: 540px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ---------- Hero CTAs ---------- */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* ---------- CTA Button - Voir le Menu ---------- */
.btn-menu {
    position: relative;
    display: inline-block;
    padding: 16px 48px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #000000;
    background: linear-gradient(135deg, #009246 0%, #009246 33%, #FFFFFF 33%, #FFFFFF 66%, #CE2B37 66%, #CE2B37 100%);
    text-decoration: none;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.btn-menu:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,146,70,0.35);
}

.btn-menu:active {
    transform: translateY(-1px);
}

/* Overlay so the text is readable over the tricolor bg */
.btn-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.12);
    pointer-events: none;
}

.btn-menu-text {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
    font-style: normal;
}

/* ---------- Scroll indicator ---------- */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---------- CTA Button - Commander ---------- */
.btn-order {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.btn-order:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
}

/* ---------- Section base ---------- */
section {
    padding: 60px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #009246;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
}
.section-divider span {
    height: 3px;
    border-radius: 2px;
}
.section-divider span:nth-child(1) { width: 32px; background: #009246; }
.section-divider span:nth-child(2) { width: 32px; background: #FFFFFF; }
.section-divider span:nth-child(3) { width: 32px; background: #CE2B37; }

/* ---------- About / Story Section ---------- */
.about-section {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}


.about-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.about-flag {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 280px;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.about-flag-stripe {
    flex: 1;
}
.about-flag-stripe:nth-child(1) { background: #009246; }
.about-flag-stripe:nth-child(2) { background: #FFFFFF; }
.about-flag-stripe:nth-child(3) { background: #CE2B37; }

/* ---------- Order Section ---------- */
.order-section {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}


.order-description {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 32px;
}

.order-description strong {
    color: #D4AF37;
}

.order-cutoff {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(206,43,55,0.6);
    border-left: 4px solid #CE2B37;
    background: rgba(206,43,55,0.15);
    border-radius: 0 4px 4px 0;
}

.order-cutoff-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #CE2B37;
}

.order-cutoff-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.order-cutoff-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
}

.order-cutoff-time {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #CE2B37;
    font-weight: 700;
}

.delivery-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(212,175,55,0.5);
    border-left: 4px solid #D4AF37;
    background: rgba(212,175,55,0.08);
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.delivery-notice strong {
    color: #D4AF37;
}

.delivery-notice-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #D4AF37;
    opacity: 0.9;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-actions-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 8px;
}

.btn-whatsapp,
.btn-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp {
    background: #25D366;
    color: #000;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-phone {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.5);
    color: #D4AF37;
}

.btn-phone:hover {
    background: rgba(212,175,55,0.1);
    color: #D4AF37;
    transform: translateY(-2px);
}

.btn-whatsapp svg,
.btn-phone svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: currentColor;
}

/* ---------- Hours Section ---------- */
.hours-section {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}


.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    overflow: hidden;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover {
    background: rgba(255,255,255,0.03);
}

.hours-row--closed {
    opacity: 0.75;
}

.hours-day {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
}

.hours-time {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    color: #D4AF37;
}

.hours-closed {
    color: #FF7070;
    font-style: italic;
}

.hours-note {
    display: flex;
    align-items: flex-start;
}

.hours-note-inner {
    padding: 28px 32px;
    border: 1px solid rgba(0,146,70,0.4);
    border-left: 4px solid #009246;
    background: rgba(0,146,70,0.12);
    border-radius: 0 4px 4px 0;
}

.hours-note-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
    color: #009246;
}

.hours-note-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.hours-note-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.hours-note-inner p:last-child {
    margin-bottom: 0;
}

.hours-note-inner strong {
    color: #D4AF37;
}

/* ---------- Contact Section ---------- */
.contact-section {
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}


.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 2px;
    color: #D4AF37;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-info-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

.contact-info-value a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: #D4AF37;
}

/* ---------- Social Links ---------- */
.social-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
    background: rgba(255,255,255,0.02);
}

.social-link:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.05);
    color: #fff;
}

.social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-link--instagram svg { fill: #E1306C; }
.social-link--facebook  svg { fill: #1877F2; }

.social-link:hover.social-link--instagram { border-color: rgba(225,48,108,0.4); }
.social-link:hover.social-link--facebook  { border-color: rgba(24,119,242,0.4); }

.social-link-handle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-left: auto;
}

/* ---------- Map / Address Teaser ---------- */
.map-teaser {
    margin-top: 32px;
    padding: 28px 32px;
    border: 1px solid rgba(0,146,70,0.4);
    border-left: 4px solid #009246;
    background: rgba(0,146,70,0.12);
    border-radius: 0 4px 4px 0;
}

.map-teaser-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #009246;
    margin-bottom: 8px;
}

.map-teaser-address {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 24px;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: inline-block;
}

.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #D4AF37;
}

.footer-tricolor {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.footer-tricolor span {
    height: 2px;
    width: 40px;
    border-radius: 1px;
}

.footer-tricolor span:nth-child(1) { background: #009246; }
.footer-tricolor span:nth-child(2) { background: #FFFFFF; }
.footer-tricolor span:nth-child(3) { background: #CE2B37; }

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
}

/* =====================================================
   HAMBURGER BUTTON
   ===================================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   RESPONSIVE — 768px (tablette / mobile large)
   ===================================================== */
@media (max-width: 768px) {

    /* --- Navigation hamburger --- */
    .nav-toggle {
        display: flex;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.97);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 16px 0 24px;
    }

    #main-nav.nav-open {
        display: block;
    }

    .header-nav {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .header-nav a {
        display: block;
        padding: 14px 32px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .header-nav li:last-child a {
        border-bottom: none;
    }

    /* --- Grilles → colonne unique --- */
    .about-grid,
    .order-grid,
    .hours-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* --- Drapeau centré sur mobile --- */
    .about-visual {
        order: -1;
    }

    .about-flag {
        max-width: 100%;
        height: 120px;
    }

    /* --- Boutons pleine largeur --- */
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }

    .btn-menu,
    .btn-order {
        width: 100%;
        text-align: center;
    }

    .btn-whatsapp,
    .btn-phone {
        justify-content: center;
    }
}

/* =====================================================
   RESPONSIVE — 480px (mobile petit)
   ===================================================== */
@media (max-width: 480px) {

    .header-inner {
        padding: 14px 20px;
    }

    section {
        padding: 40px 16px;
    }

    .hero {
        padding: 100px 16px 64px;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .btn-menu,
    .btn-order {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hours-row {
        padding: 12px 16px;
    }

    .hours-note-inner {
        padding: 20px 20px;
    }

    .map-teaser {
        padding: 20px 20px;
    }

    .footer-nav {
        gap: 16px;
    }

    .footer-nav a {
        font-size: 0.72rem;
    }

    .contact-info-list {
        gap: 20px;
    }

    .social-link-handle {
        display: none;
    }
}
