@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Outfit:wght@400;600;700&family=Gilda+Display&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --brand-teal: #003839;
    --brand-teal-dark: #002b2c;
    --brand-gold: #ad8a4e;
    --brand-gold-dim: #8e703f;
    --brand-gold-light: #c9a463;
    --brand-white: #ffffff;
    --brand-beige: #f5f5dc;
    --brand-glass: rgba(0, 43, 44, 0.9);
    --brand-glass-border: rgba(173, 138, 78, 0.4);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--brand-teal-dark);
    color: var(--brand-beige);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Base Grainy Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/black-paper.png');
    pointer-events: none;
    z-index: 100;
    opacity: 0.15;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Background Shadow Layer */
.leaf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(0, 56, 57, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(rgba(0, 43, 44, 0.8), rgba(0, 43, 44, 0.8)),
                url('./assets/hero-image.png') no-repeat center center/cover;
    border-bottom: 3px solid var(--brand-gold);
}

.brand-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: luxuryFloat 4s ease-in-out infinite;
}

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand-logo {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(173, 138, 78, 0.5));
}

.brand-name {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.6));
}

.hero p {
    font-family: 'Gilda Display', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--brand-gold-light);
    margin-bottom: 3rem;
}

/* Sub-Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

/* Search & Filter Bar */
.controls-container {
    max-width: 1100px;
    margin: -3rem auto 4rem;
    padding: 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: var(--brand-glass);
    border: 1px solid var(--brand-glass-border);
    backdrop-filter: blur(20px);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.search-box {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 20;
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-glass);
    border: 1px solid var(--brand-glass-border);
    backdrop-filter: blur(30px);
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
    display: none; /* Hidden by default */
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-top: none;
}

.suggestion-item {
    padding: 1rem 1.5rem;
    color: var(--brand-beige);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(173, 138, 78, 0.1);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover, .suggestion-item.active {
    background: var(--brand-gold);
    color: var(--brand-teal-dark);
    font-weight: 600;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--brand-glass-border);
    padding: 1rem 1.5rem;
    border-radius: 2px;
    color: var(--brand-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 1px;
}

.search-input:focus {
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(173, 138, 78, 0.2);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--brand-beige);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    opacity: 0.6;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    opacity: 1;
    color: var(--brand-gold);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--brand-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.filter-btn.active::after {
    width: 100%;
}

/* Category Filter specific hide logic */
.menu-section.hidden {
    display: none;
}

.item-row.hidden {
    display: none;
}

/* No Results message */
#no-results {
    text-align: center;
    padding: 4rem;
    font-family: 'Gilda Display', serif;
    font-size: 1.2rem;
    color: var(--brand-gold-dim);
    display: none;
}

/* Menu Container adjustment */
.menu-container {
    max-width: 1100px;
    margin: 4rem auto; /* Reduced margin since controls are above */
    padding: 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}

/* Category Grid */
.menu-section {
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.menu-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

/* Premium Card Design with Marble Texture */
.menu-card {
    background: linear-gradient(rgba(0, 43, 44, 0.8), rgba(0, 43, 44, 0.8)),
                url('./assets/emerald-marble.png') center center/cover;
    border: 1px solid var(--brand-glass-border);
    backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(173, 138, 78, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.menu-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--brand-gold);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

/* Item Typography */
.item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem; /* Ensures a minimum gap of approx 32px between name and price */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}

/* Solid Gold Separator replacing dots */
.item-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(173, 138, 78, 0.4), transparent);
}

.item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-gold-light);
    letter-spacing: 1px;
}

/* Special Highlighting */
.featured-item {
    color: var(--brand-gold);
    font-weight: 700;
    border-bottom: 1px solid var(--brand-gold-dim) !important;
}

/* Package Styling - Premium Card Upgrade */
.package-highlight {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('./assets/emerald-marble.png') center center/cover !important;
    border: 2px solid var(--brand-gold) !important;
}

.package-list {
    list-style: none;
    margin-top: 1.5rem;
}

.package-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
    color: var(--brand-beige);
}

.package-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--brand-gold);
    font-size: 0.8rem;
}

/* Footer Section */
.footer {
    background: #001f20;
    padding: 6rem 2rem;
    text-align: center;
    border-top: 2px solid var(--brand-gold-dim);
}

.phone-link {
    display: inline-block;
    background: var(--brand-gold);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 3rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.phone-link:hover {
    background: transparent;
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}

/* Responsiveness */
@media (max-width: 768px) {
    .brand-name { width: 220px; }
    .hero p { font-size: 0.8rem; letter-spacing: 4px; }
    .item-name { font-size: 1rem; }
}
