@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --navy-dark: #141414;
    /* Lighter black */
    --navy-light: #1e1e1e;
    /* Lighter soft black cards */
    --gold: #ffd700;
    /* Brighter Gold */
    --gold-bright: #ffdf9e;
    --text-white: #ffffff;
    --text-muted: #e2e8f0;
    --border-gold: rgba(238, 187, 77, 0.3);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffdf9e, #ffd700);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--navy-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

.section-head-title {
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* Header */
header {
    height: auto;
    min-height: 220px;
    padding-top: 2rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle, #222222 0%, #141414 100%);
    border-bottom: 1px solid var(--border-gold);
}

.logo-container {
    padding: 1.5rem 3rem;
    border: 1px solid var(--border-gold);
    margin-bottom: 1rem;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(238, 187, 77, 0.15);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    white-space: nowrap;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 5px;
    font-weight: 300;
}

.scroll-hint {
    display: none;
}

/* Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
    overflow-x: auto;
}

.nav-track {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    min-width: max-content;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 80px;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s;
}

.nav-btn span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-btn.active,
.nav-btn:hover {
    color: var(--gold);
    background: rgba(238, 187, 77, 0.1);
}

/* Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.menu-category {
    margin-bottom: 4rem;
    scroll-margin-top: 140px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

.header-content {
    display: flex;
    flex-direction: row;
    /* Icon left of text */
    align-items: center;
    gap: 30px;
    /* Increased from 15px to 30px */
}

.section-head-title {
    font-size: 3rem;
    /* Larger */
    /* Gradient Gold Text */
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback */
    color: var(--gold);
    text-align: left;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-weight: 700;
    /* Bold */
}

.section-icon {
    width: 48px;
    height: 48px;
    fill: var(--gold);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.category-icon {
    color: var(--gold);
    width: 40px;
    height: 40px;
}

.deco-line {
    height: 1px;
    flex: 1;
    max-width: 100px;
    min-width: 20px;
    background: var(--gold);
    opacity: 0.5;
}

/* Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Item Card */
.item-card {
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.item-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transition: all 0.3s;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    transition: all 0.3s;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    background: #252525;
}

.item-info {
    padding: 1.5rem;
}

.item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.item-title {
    font-size: 1.5rem;
    color: #ffffff;
    /* Explicit White */
    font-weight: 700;
    /* Bold */
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.item-price {
    color: #ffffff;
    /* Explicit White */
    font-weight: 700;
    /* Bold */
    font-size: 1.5rem;
    white-space: nowrap;
}

.item-desc {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 8px;
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 1rem;
    border-top: 1px solid var(--border-gold);
    background: #141414;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.6rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .nav-track {
        justify-content: flex-start;
    }

    .category-header {
        flex-direction: column;
        gap: 10px;
    }

    .deco-line {
        width: 30px;
    }

    .item-desc {
        font-size: 0.8rem;
        line-height: 1.3;
        opacity: 0.8;
    }

    .section-head-title {
        font-size: 1.8rem;
        text-align: center;
    }
}