:root {
    --dark: #06111f;
    --dark-2: #0b1930;
    --cyan: #48f7ff;
    --cyan-soft: rgba(72, 247, 255, 0.18);
    --pink: #ff45d3;
    --pink-soft: rgba(255, 69, 211, 0.18);
    --cream: #ffd9c8;
    --white: #f7fbff;
    --muted: #b8c8d6;
    --card: rgba(8, 20, 38, 0.88);
    --border: rgba(72, 247, 255, 0.28);
    --hero-image: url('../../images/Menu-banner.jpg');
}

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

html {
    background-color: var(--card);
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 69, 211, 0.18), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(72, 247, 255, 0.16), transparent 30%),
        linear-gradient(180deg, var(--dark), #03070d 70%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 7, 13, 0.86);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.navbar {
    width: min(1180px, calc(100% - 32px));
    min-height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

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

.logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 16px var(--cyan-soft), 0 0 22px var(--pink-soft);
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(72, 247, 255, 0.7);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.nav-links a {
    position: relative;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    box-shadow: 0 0 10px var(--cyan);
    transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    text-shadow: 0 0 9px var(--cyan);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.instagram-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 69, 211, 0.55);
    border-radius: 50%;
    background: rgba(255, 69, 211, 0.08);
    box-shadow: 0 0 16px var(--pink-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 69, 211, 0.45);
}

.instagram-link svg {
    width: 22px;
    height: 22px;
    fill: var(--pink);
}

.language-select {
    min-height: 42px;
    color: var(--white);
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 14px;
    outline: none;
    font-weight: 700;
    box-shadow: 0 0 12px var(--cyan-soft);
}


.menu-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    place-items: center;
    padding: 100px 20px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 13, 0.95), rgba(3, 7, 13, 0.58), rgba(3, 7, 13, 0.95)),
        radial-gradient(circle at center, rgba(72, 247, 255, 0.14), transparent 46%);
}

.menu-hero-content {
    position: relative;
    width: min(900px, 100%);
    padding: 46px;
    text-align: center;
    background: rgba(3, 7, 13, 0.62);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 0 34px rgba(72, 247, 255, 0.15), 0 0 46px rgba(255, 69, 211, 0.10);
    backdrop-filter: blur(6px);
}

.eyebrow {
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(72, 247, 255, 0.8);
}

.menu-hero-content h1 {
    margin-top: 18px;
    font-size: clamp(2.3rem, 6vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.48), 0 0 32px rgba(255, 69, 211, 0.52);
}

.menu-hero-content p:not(.eyebrow) {
    width: min(680px, 100%);
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.7;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 30px;
    padding: 0 24px;
    border-radius: 999px;
    color: #03101a;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    box-shadow: 0 0 22px rgba(72, 247, 255, 0.35), 0 0 22px rgba(255, 69, 211, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.category-control {
    position: sticky;
    top: 86px;
    z-index: 40;
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding: 16px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(3, 7, 13, 0.84);
    box-shadow: 0 0 30px rgba(72, 247, 255, 0.10);
    backdrop-filter: blur(14px);
    scrollbar-width: thin;
}

.category-button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
    border: 1px solid rgba(72, 247, 255, 0.20);
    border-radius: 999px;
    background: rgba(8, 20, 38, 0.74);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-button:hover,
.category-button.active {
    color: #03101a;
    border-color: transparent;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    transform: translateY(-1px);
}

.menu-board {
    width: min(1180px, calc(100% - 32px));
    margin: 42px auto 0;
}

.menu-section {
    scroll-margin-top: 170px;
    margin-bottom: 38px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--card);
    box-shadow: 0 0 30px rgba(72, 247, 255, 0.08);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading span {
    width: 7px;
    height: 36px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(72, 247, 255, 0.82);
}

.category-image {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 0 16px var(--cyan-soft);
}


.category-image:not([src]),
.category-image[src=""] {
    display: none;
}

.section-heading h2 {
    color: var(--cream);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sub-category {
    margin-top: 22px;
}

.sub-category>h3,
.spirit-card h3 {
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 9px rgba(72, 247, 255, 0.42);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

/* ─── CARD LAYOUT: name top-left · description middle · price bottom · image right ─── */
.menu-card {
    min-height: 74px;
    padding: 18px 18px 18px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(3, 7, 13, 0.42);
    box-shadow: inset 0 0 34px rgba(72, 247, 255, 0.035);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 69, 211, 0.50);
    box-shadow: 0 0 24px rgba(255, 69, 211, 0.12), inset 0 0 34px rgba(72, 247, 255, 0.06);
}

/* ── content area (left) ── */
.menu-card-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

/* ── name + price inline (no description) ── */
.menu-card:not(.with-note) .menu-card-content h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 700;
}

.menu-card:not(.with-note) .menu-card-content h3 span {
    margin-top: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

/* ── name + description + price (with description) ── */
.menu-card.with-note .menu-card-content h3 {
    display: contents;
}

/* the name text node becomes a direct child of .menu-card-content;
   we style it via the h3's inherited font on the parent */
.menu-card.with-note .menu-card-content h3 {
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--white);
}

.menu-card.with-note .menu-card-content h3 .price {
    order: 2;
    margin-top: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.menu-card.with-note .menu-card-content p {
    order: 1;
    margin: 0;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ── card-header (multiple prices, no description) ── */
.menu-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
}

.menu-card .card-header h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 700;
}

.menu-card .card-header .price-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.menu-card .card-header .price-list span {
    display: block;
}

/* ── image (right side, top-aligned with name) ── */
.menu-card-img {
    flex: 0 0 auto;
    width: 74px;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
    margin-left: auto;
    align-self: flex-start;
}

.menu-card-img:not([src]),
.menu-card-img[src=""] {
    display: none;
}

/* ── unavailable / sold-out ── */
.menu-card.unavailable {
    opacity: 0.55;
    position: relative;
    pointer-events: none;
}

.sold-out-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d9534f;
    color: white;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

/* ── spirits list ── */
.spirit-card {
    min-height: 74px;
    padding: 18px 18px 18px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(3, 7, 13, 0.42);
    box-shadow: inset 0 0 34px rgba(72, 247, 255, 0.035);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spirit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 69, 211, 0.50);
    box-shadow: 0 0 24px rgba(255, 69, 211, 0.12), inset 0 0 34px rgba(72, 247, 255, 0.06);
}

.spirit-card h3 {
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.35;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0;
}

.spirit-card h3 span {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

.spirits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ── footer ── */
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 90px auto 0;
    padding: 42px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    border-top: 1px solid var(--border);
}

.footer-column {
    padding: 24px;
    border-radius: 22px;
    background: rgba(8, 20, 38, 0.66);
    border: 1px solid rgba(72, 247, 255, 0.14);
}

.footer-column h3 {
    margin-bottom: 16px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column p,
.footer-column a {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--pink);
    text-shadow: 0 0 8px rgba(255, 69, 211, 0.6);
}

/* ── responsive ── */
@media (max-width: 980px) {

    .menu-grid,
    .menu-grid.compact,
    .spirits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 900px) {
    html {
        background-color: var(--card);
        scroll-padding-top: 255px;
    }

    .navbar {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 0 16px;
    }

    .logo-link,
    .nav-links,
    .nav-actions {
        justify-self: center;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 24px;
        padding: 10px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .nav-actions {
        justify-content: center;
    }

    .category-control {
        top: 176px;
    }

    .menu-section {
        scroll-margin-top: 265px;
    }

    .category-image {
        width: 110px;
        height: 110px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .navbar {
        width: min(100% - 22px, 1180px);
        gap: 12px;
    }

    .nav-links {
        gap: 12px 16px;
        font-size: 0.88rem;
    }

    .category-control {
        top: 166px;
    }

    .brand-name {
        display: none;
    }

    .logo {
        width: 56px;
        height: 56px;
    }

    .menu-hero {
        min-height: 58vh;
        padding: 76px 14px;
    }

    .menu-hero-content {
        padding: 30px 18px;
        border-radius: 22px;
    }

    .category-control {
        width: min(100% - 22px, 1180px);
        padding: 12px;
        border-radius: 20px;
    }

    .menu-board {
        width: min(100% - 22px, 1180px);
    }

    .menu-section {
        padding: 22px 16px;
        border-radius: 24px;
    }

    .section-heading h2 {
        letter-spacing: 0.09em;
    }

    .menu-grid,
    .menu-grid.compact,
    .spirits-list {
        grid-template-columns: 1fr;
    }

    .category-image {
        width: 110px;
        height: 110px;
    }

    .site-footer {
        margin-top: 54px;
        padding-bottom: 28px;
    }
}