/* ============================================
   MOBILE MENU — Shared across all pages
   ============================================ */

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--platinum, #E5E4E2);
    cursor: pointer;
    z-index: 5001;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    color: var(--gold-accent, #C9A962);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    z-index: 5000;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    opacity: 0;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-overlay a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--platinum, #E5E4E2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav-overlay.active a {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered animation for links */
.mobile-nav-overlay.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-overlay.active a:nth-child(6) { transition-delay: 0.6s; }
.mobile-nav-overlay.active a:nth-child(7) { transition-delay: 0.7s; }

.mobile-nav-overlay a:hover {
    color: var(--gold-accent, #C9A962);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* ============================================
   COOKIE BANNER — Shared across all pages
   ============================================ */

.cookie-banner-shared {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    border-top: 1px solid rgba(201, 169, 98, 0.3);
    font-size: 0.85rem;
    color: #E5E4E2;
    flex-wrap: wrap;
}

.cookie-banner-shared a {
    color: #C9A962;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-shared button {
    background: #C9A962;
    color: #1a1a1a;
    border: none;
    padding: 8px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cookie-banner-shared button:hover {
    opacity: 0.85;
}

.cookie-banner-shared .cookie-btn-decline {
    background: transparent;
    color: #E5E4E2;
    border: 1px solid rgba(229, 228, 226, 0.4);
}

.cookie-banner-shared .cookie-btn-decline:hover {
    border-color: #E5E4E2;
}
