/* ============================================================
   OASIS OCEAN CLUB — MENU SITE STYLES
   Shared by all pages under menu.oasisoceanclub.com

   FONT SYSTEM (matches main site):
   - Gilda Display (Google): section headings, nav items
   - Imprima (Google)      : all body text, buttons, labels

   COLOR TOKENS (match main site):
   --sand        #E8E3D5   page background
   --sand-dark   #C9BFAD   button background
   --sand-mid    #B8AE9C   button hover
   --brown       #8B7355   button text, accents
   --teal        #4A6FA5   footer, nav
   ============================================================ */

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

body {
    font-family: 'Imprima', Arial, sans-serif;
    background-color: #E8E3D5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   NAV
   ============================================================ */

.menu-nav {
    background-color: #E8E3D5;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #C9BFAD;
}

.menu-nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-nav a {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8B7355;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-nav a:hover {
    color: #4A6FA5;
}

/* Language toggle — slightly muted */
.nav-lang {
    color: #B8AE9C !important;
    font-size: 0.68rem !important;
}

.nav-lang:hover {
    color: #8B7355 !important;
}

/* Logo in nav — links subtly to main site */
.nav-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 1;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.menu-container {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo (landing page only) */
.logo {
    margin-bottom: 40px;
    text-align: center;
}

.logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* Palm icon */
.palm-icon {
    margin-bottom: 50px;
}

.palm-icon img {
    width: 120px;
    height: auto;
}

/* Menu buttons */
.menu-buttons {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-button {
    display: block;
    padding: 18px 30px;
    background-color: #C9BFAD;
    color: #8B7355;
    text-decoration: none;
    text-align: center;
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.menu-button:hover {
    background-color: #B8AE9C;
}

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

footer {
    background-color: #4A6FA5;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

footer p {
    font-size: 13px;
    font-family: 'Imprima', Arial, sans-serif;
}

/* ============================================================
   MENU CONTENT PAGES
   ============================================================ */

.page-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 28px 80px;
}

.section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 20px 0 32px;
    border-bottom: 1px solid #C9BFAD;
    margin-bottom: 48px;
}

.section-nav a {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8B7355;
    text-decoration: none;
    transition: color 0.2s ease;
}

.section-nav a:hover { color: #4A6FA5; }

.menu-section { margin-bottom: 52px; }
.menu-section:target { scroll-margin-top: 24px; }

.menu-section h2 {
    font-family: 'Gilda Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: normal;
    color: #8B7355;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.menu-section h2 .measure {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.72rem;
    color: #C9BFAD;
    letter-spacing: 0.08em;
    font-weight: normal;
}

.section-rule {
    border: none;
    border-top: 1px solid #C9BFAD;
    margin: 8px 0 20px;
}

.menu-section h3 {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: normal;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #B8AE9C;
    margin: 24px 0 8px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 5px 0;
    border-bottom: 1px dotted #E0D9CC;
}

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

.item-name {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.95rem;
    color: #3A2E24;
    line-height: 1.4;
}

.item-price {
    font-family: 'Gilda Display', Georgia, serif;
    font-size: 0.9rem;
    color: #8B7355;
    white-space: nowrap;
    flex-shrink: 0;
}

.item-desc {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.82rem;
    color: #9A8E82;
    line-height: 1.5;
    margin: -2px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px dotted #E0D9CC;
}

.menu-tagline {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.8rem;
    color: #B8AE9C;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    margin-top: 12px;
}

.flavor-grid span {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.9rem;
    color: #3A2E24;
}

.price-note {
    font-family: 'Imprima', Arial, sans-serif;
    font-size: 0.82rem;
    color: #9A8E82;
    margin: 6px 0 12px;
    line-height: 1.6;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .menu-nav {
        padding: 10px 16px;
    }

    .menu-nav-left {
        gap: 16px;
    }

    .menu-container {
        padding: 30px 15px;
    }

    .logo img {
        max-width: 240px;
    }

    .palm-icon img {
        width: 100px;
    }

    .menu-buttons {
        max-width: 100%;
    }

    .menu-button {
        padding: 16px 20px;
        font-size: 13px;
    }
}
