/* Global Styles */
.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #AA8C2C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Gradient Text Animation */
.animate-text {
    background-size: 200% auto;
    animation: textFlow 3s linear infinite;
}

@keyframes textFlow {
    to {
        background-position: 200% center;
    }
}

html {
    scroll-behavior: smooth;
}

/* --- Mobile Menu v4: Solid Side Drawer --- */

/* Scroll Lock */
.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Overlay Backdrop (Darkens the rest of the site) */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
}

.menu-backdrop.menu-active {
    opacity: 1;
    visibility: visible;
}

/* The Drawer Itself */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    z-index: 200;

    /* SOLID BACKGROUND - NO TRANSPARENCY */
    background: #0B1120;

    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -15px 0 60px rgba(0, 0, 0, 0.9);

    /* Slide Animation */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    display: flex;
    flex-direction: column;
    padding: 2rem;
}

#mobile-menu-overlay.menu-active {
    transform: translateX(0);
}

/* Close Button (X) inside Drawer */
.drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.close-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    transform: rotate(90deg);
}

/* Navigation Links */
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-item {
    font-family: 'Outfit', sans-serif;
    /* Clean, modern font */
    font-size: 2rem;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    color: #D4AF37;
    border-left-color: #D4AF37;
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.mobile-nav-item span {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-bottom: -5px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Contact Section (Bottom) */
.drawer-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.drawer-contact:hover {
    color: #D4AF37;
}

.drawer-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #D4AF37, #C5A028);
    color: #000;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Hamburger (Only visible when closed) */
#mobile-menu-btn {
    transition: opacity 0.3s;
}

.menu-active #mobile-menu-btn {
    opacity: 0;
    pointer-events: none;
}