/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-800: #0f2744;
    --navy-900: #091a2e;
    --gold-400: #f0c040;
    --gold-500: #e8a820;
    --gold-600: #d4900a;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700 900;
    src: local('Playfair Display'), local('PlayfairDisplay'), url(https://fonts.gstatic.com/s/playfairdisplay/v30/nuFiD-cmPoVRlqIeCFSQ7fjA.woff2) format('woff2');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--navy-900);
    color: #fff;
    overflow-x: hidden;
}

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

/* ========== GEOMETRIC SHAPES ========== */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.08) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: float-slow 20s ease-in-out infinite;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.05) 0%, transparent 70%);
    bottom: 5%;
    left: -5%;
    animation: float-slow 15s ease-in-out infinite reverse;
}

.geo-tri {
    position: absolute;
    pointer-events: none;
}

.geo-tri-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(240, 192, 64, 0.06);
    top: 25%;
    left: 8%;
    transform: rotate(-15deg);
    animation: spin-slow 25s linear infinite;
}

.geo-diamond {
    position: absolute;
    pointer-events: none;
}

.geo-diamond-1 {
    width: 80px;
    height: 80px;
    background: rgba(240, 192, 64, 0.05);
    top: 40%;
    right: 10%;
    transform: rotate(45deg);
    animation: float-slow 12s ease-in-out infinite;
}

.geo-stripe {
    position: absolute;
    pointer-events: none;
}

.geo-stripe-1 {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.15), transparent);
    top: 35%;
    left: -5%;
    transform: rotate(-20deg);
    animation: slide-stripe 18s ease-in-out infinite;
}

.geo-stripe-2 {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.1), transparent);
    bottom: 30%;
    right: -3%;
    transform: rotate(15deg);
    animation: slide-stripe 22s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes spin-slow {
    from { transform: rotate(-15deg); }
    to { transform: rotate(345deg); }
}

@keyframes slide-stripe {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ========== HERO ANIMATIONS ========== */
.hero-eyebrow {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-ctas {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========== BUTTONS ========== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    color: var(--navy-800);
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.25);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.4);
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 28px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    transform: translateY(-2px);
}

/* ========== SECTION TITLES ========== */
.section-eyebrow {
    display: block;
}

.section-title {
    color: #fff;
}

.section-subtitle {
    line-height: 1.7;
}

/* ========== NAV LINKS ========== */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-400);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-400) !important;
}

/* ========== HIGHLIGHTS ========== */
.highlight-item {
    opacity: 0;
    transform: translateY(20px);
}

.highlight-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

/* ========== MENU CARDS ========== */
.menu-card {
    opacity: 0;
    transform: translateY(30px);
}

.menu-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* ========== VISIT CARDS ========== */
.visit-card {
    opacity: 0;
    transform: translateY(30px);
}

.visit-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* ========== GALLERY SCROLL ========== */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

/* ========== FORM INPUTS ========== */
.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-field:focus {
    border-color: var(--gold-400);
    background: rgba(240, 192, 64, 0.05);
    box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
}

.input-field option {
    background: var(--navy-800);
    color: #fff;
}

/* ========== MOBILE MENU ========== */
.mobile-link {
    position: relative;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .geo-circle-1 {
        width: 300px;
        height: 300px;
    }

    .geo-circle-2 {
        width: 200px;
        height: 200px;
    }

    .geo-tri-1 {
        display: none;
    }

    .geo-diamond-1 {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 4rem;
    }
}
