/* =====================================================
   COQ-O-BEC  —  Dark Restaurant Hero
   ===================================================== */

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

a[href^="tel"] {
    color: #ffffff !important;
    text-decoration: none !important;
}

:root {
    --gold:  #FFFFFF;
    --red:   #FFFFFF;
    --bg:    #000000;
    --cream: #f5f0e8;
    --nav-h: 80px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ======================================================
   NAVBAR
   ====================================================== */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.5rem;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.30) 100%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 6, 2, 0.95);
    border-bottom-color: rgba(168, 120, 64, 0.18);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    border-radius: 8px;
    display: block;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    list-style: none;
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Contact button variant */
.nav-contact {
    padding: 0.45rem 1.3rem;
    border: 1px solid rgba(168, 120, 64, 0.5);
    color: var(--gold) !important;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.nav-contact:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

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

/* ======================================================
   HERO SECTION
   ====================================================== */

.hero {
    background: #000000;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 420px;
    width: 90%;
    height: auto;
    display: block;
    border: none;
    padding: 0;
    image-rendering: auto;
}

.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-block;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
    background: #FFFFFF;
    color: #000000;
}

/* ======================================================
   RESPONSIVE — TABLET
   ====================================================== */

@media (max-width: 1024px) {
    .navbar { padding: 0 2.5rem; }
    .nav-links { gap: 2rem; }
}

/* ======================================================
   RESPONSIVE — MOBILE
   ====================================================== */

@media (max-width: 768px) {

    .navbar {
        padding: 0 1.5rem;
    }

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

    /* Mobile menu drawer */
    .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(6, 4, 1, 0.97);
        border-bottom: 1px solid rgba(168, 120, 64, 0.18);
        padding: 1rem 0 1.5rem;
        display: none;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 0.78rem;
    }

    .nav-contact {
        margin: 0.5rem 2.5rem 0;
        display: block;
        padding: 0.7rem 1.5rem;
    }

    .nav-toggle { display: flex; }


}


/* ======================================================
   NAV RIGHT GROUP + LANGUAGE SWITCHER
   ====================================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    background: transparent;
    border: 1px solid rgba(168, 120, 64, 0.45);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}

.lang-switcher:hover {
    background: var(--gold);
    color: var(--bg);
}

/* Bengali font fallback */
:lang(bn) {
    font-family: 'Noto Sans Bengali', 'Montserrat', sans-serif;
}

:lang(bn) .about-text,
:lang(bn) .dish-desc,
:lang(bn) .curry-desc,
:lang(bn) .plat-desc {
    font-family: 'Noto Sans Bengali', sans-serif;
    font-style: normal;
}

/* ======================================================
   SHARED LAYOUT
   ====================================================== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
    margin-bottom: 0.7rem;
}

.section-heading.light { color: #ffffff; }

.gold-rule {
    width: 56px;
    height: 1px;
    background: var(--gold);
    opacity: 0.65;
    margin: 0 auto 2.5rem;
}

/* ======================================================
   INFO BAR
   ====================================================== */

.info-bar {
    background: #111111;
    border-top:    1px solid rgba(168, 120, 64, 0.10);
    border-bottom: 1px solid rgba(168, 120, 64, 0.10);
    padding: 0.8rem 1rem;
}

.info-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.7);
    letter-spacing: 0.03em;
}

.info-icon { font-size: 0.9rem; line-height: 1; }

.info-sep {
    color: rgba(168, 120, 64, 0.35);
    user-select: none;
}

/* ======================================================
   ABOUT SECTION
   ====================================================== */

.section-about {
    background: #000000;
    padding: 5rem 0;
}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.78);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

/* ======================================================
   MENU POULET SECTION
   ====================================================== */

.section-poulet {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background-image: url('../image/hero-poulet.webp');
    background-size: cover;
    background-position: center;
}

.section-poulet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.section-poulet .section-bg,
.section-poulet .section-overlay {
    display: none;
}

.section-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.35s ease;
}

.outline-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.outline-btn:hover { color: var(--bg); }
.outline-btn:hover::before { transform: translateX(0); }

/* ======================================================
   CUISINE INDIENNE SECTION
   ====================================================== */

.section-indien {
    background: #000000;
    background-image: url('../image/hero-indien-1.webp');
    background-size: cover;
    background-position: center;
    padding-bottom: 20px;
    position: relative;
}

.section-indien::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.section-indien > * {
    position: relative;
    z-index: 1;
}

.section-indien-header {
    padding-top: 20px;
}

.halal-badge {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 0.6rem;
}

/* Subsections */
.subsection {
    margin-top: 20px;
}

.subsection-last {
    padding-bottom: 1rem;
}

.subsection-banner {
    position: relative;
    width: 100%;
    height: 180px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-img.img-b {
    z-index: 0;
}

.banner-img.img-a {
    z-index: 1;
    animation: banner-crossfade 6s ease-in-out infinite;
}

@keyframes banner-crossfade {
    0%, 45%  { opacity: 1; }
    50%, 95% { opacity: 0; }
    100%     { opacity: 1; }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 2;
}

.subsection-title {
    position: sticky;
    top: 70px;
    background: #000000;
    z-index: 10;
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid #ffffff20;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
}

.subsection-note {
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(168, 120, 64, 0.75);
    text-align: center;
    margin: 1.5rem 0 0.25rem;
    letter-spacing: 0.03em;
}

/* ======================================================
   DISH CARDS
   ====================================================== */

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 2rem 0 2.5rem;
}

.dish-card {
    background: #1a1a1a;
    border: 1px solid rgba(168, 120, 64, 0.25);
    border-radius: 8px;
    padding: 1.2rem 1.35rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.dish-card:hover {
    border-color: rgba(168, 120, 64, 0.6);
    transform: translateY(-2px);
}

.dish-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
}

.dish-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.3;
}

.dish-price {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

.dish-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.5;
}

/* ======================================================
   PLAT CARDS (photo grid — cuisine indienne)
   ====================================================== */

.plat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
    padding-bottom: 2.5rem;
}

.plat-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 0.5px solid #333;
}

.plat-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.plat-info {
    padding: 14px;
}

.plat-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.plat-desc {
    color: #888;
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.5;
}

.plat-price {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .plat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================================================
   CURRY TABLE
   ====================================================== */

.curry-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid rgba(168, 120, 64, 0.18);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}

.curry-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    min-width: 600px;
}

.curry-table thead tr {
    background: rgba(168, 120, 64, 0.10);
    border-bottom: 1px solid rgba(168, 120, 64, 0.25);
}

.curry-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.curry-table th:nth-child(n+3) { text-align: center; }

.curry-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.curry-table tbody tr:last-child { border-bottom: none; }

.curry-table tbody tr:hover { background: rgba(168, 120, 64, 0.05); }

.curry-name {
    padding: 1rem;
    font-weight: 600;
    color: var(--cream);
    white-space: nowrap;
    vertical-align: top;
}

.curry-desc {
    padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.45;
    min-width: 180px;
    vertical-align: top;
}

.curry-price {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    vertical-align: top;
}

/* ======================================================
   FOOTER
   ====================================================== */

.site-footer {
    background: #050505;
    border-top: 1px solid rgba(168, 120, 64, 0.12);
    padding: 3.5rem 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    border-radius: 8px;
    display: block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: rgba(245, 240, 232, 0.55);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-halal {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(245, 240, 232, 0.25);
    letter-spacing: 0.06em;
}

/* ======================================================
   RESPONSIVE — TABLET (new sections)
   ====================================================== */

@media (max-width: 1024px) {
    .dish-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   RESPONSIVE — MOBILE (new sections)
   ====================================================== */

@media (max-width: 768px) {

    /* Nav right group */
    .nav-right { gap: 0.6rem; }
    .lang-switcher { font-size: 0.6rem; padding: 0.3rem 0.65rem; }

    /* Info bar stacks */
    .info-bar-inner {
        flex-direction: column;
        gap: 0.55rem;
        text-align: center;
    }
    .info-sep { display: none; }

    /* Parallax off on mobile */
    .section-poulet .section-bg { background-attachment: scroll; }

    /* Single-column dishes */
    .dish-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0 2rem;
    }

    /* Subsection spacing */
    .subsection { margin-top: 20px; }

    /* Curry table cells */
    .curry-table th,
    .curry-name,
    .curry-desc,
    .curry-price { padding: 0.7rem 0.6rem; font-size: 0.75rem; }

    .curry-desc { min-width: 140px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section-about { padding: 3.5rem 0; }
    .section-indien-header { padding-top: 20px; }
    .section-poulet { padding: 5rem 0; }
}

/* ======================================================
   INFO BAR — Tabler icon sizing
   ====================================================== */

.info-icon,
.footer-icon {
    font-size: 1rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.75;
    flex-shrink: 0;
}

/* ======================================================
   DELIVERY BANNER
   ====================================================== */

.delivery-banner {
    background: #111111;
    border-left: 3px solid var(--gold);
    padding: 0.85rem 2rem;
    text-align: center;
}

.delivery-line1 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}

.delivery-line2 {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.55);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .delivery-banner {
        padding: 0.75rem 1.25rem;
        border-left: none;
        border-top: 3px solid var(--gold);
    }
    .delivery-line1 { font-size: 0.8rem; }
    .delivery-line2 { font-size: 0.68rem; }
}

/* ======================================================
   COMMANDER — FIXED BUTTON
   ====================================================== */

.commander-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 12px 20px;
    background: #1a1a1a;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.commander-btn i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.commander-btn:hover {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 4px 28px rgba(168, 120, 64, 0.35);
}

@media (max-width: 480px) {
    .commander-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 10px 14px;
        font-size: 0.68rem;
    }
    .commander-btn i { font-size: 1rem; }
}
