/* ========== Base & Typography ========== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #060d14;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #060d14;
}
::-webkit-scrollbar-thumb {
    background: #1e3a5f;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}

/* ========== Gold Button ========== */
.gold-btn {
    background: linear-gradient(135deg, #d4a853 0%, #b8860b 100%);
    color: #060d14;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
}
.gold-btn:hover {
    box-shadow: 0 0 35px rgba(212, 168, 83, 0.4), 0 6px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* ========== Navigation ========== */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #5eead4, #0d9488);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

#navbar.scrolled {
    background: rgba(6, 13, 20, 0.9);
    backdrop-blur-xl;
    border-bottom: 1px solid rgba(30, 58, 95, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ========== Mobile Menu ========== */
.mobile-link {
    font-family: 'Playfair Display', serif;
}

/* ========== Floating Cards ========== */
@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(-0.5deg); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.3deg); }
}

.card-float-1 {
    animation: float1 5s ease-in-out infinite;
}
.card-float-2 {
    animation: float2 6s ease-in-out infinite;
}
.card-float-3 {
    animation: float3 4.5s ease-in-out infinite;
}

/* ========== Menu Cards ========== */
.menu-card {
    transition: all 0.4s ease;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(13, 148, 136, 0.1), 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========== Reveal Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== Selection ========== */
::selection {
    background: rgba(13, 148, 136, 0.3);
    color: #fff;
}
