/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Hero Gradient ── */
.hero-gradient {
    background: 
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(13, 27, 42, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(212, 168, 67, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(13, 27, 42, 0.7) 0%, transparent 60%),
        linear-gradient(160deg, #091420 0%, #0d1b2a 35%, #162a42 65%, #0d1b2a 100%);
}

/* ── Hero Orbs ── */
.hero-orb-1 {
    background: radial-gradient(circle, rgba(212, 168, 67, 0.5) 0%, transparent 70%);
}
.hero-orb-2 {
    background: radial-gradient(circle, rgba(100, 140, 200, 0.4) 0%, transparent 70%);
}

/* ── Navigation ── */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #e6c475;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Menu ── */
#mobile-menu.open { opacity: 1; pointer-events: all; }

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4a843;
}

/* ── Section Titles ── */
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #0d1b2a;
}

/* ── Section Body ── */
.section-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
}

/* ── Hero Content Animations ── */
.hero-badge {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}
.hero-headline {
    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;
}
.hero-scroll-indicator {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.2s;
}

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

/* ── Hero Buttons ── */
.hero-btn-primary {
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}
.hero-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.35);
}

/* ── Scroll Reveal ── */
.reveal-up, .reveal-left, .reveal-right, .reveal-divider {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-divider { transform: scaleX(0); transition: opacity 0.7s ease, transform 0.7s ease; }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.reveal-divider.visible {
    opacity: 1;
    transform: scaleX(1);
}

/* ── Gallery ── */
.gallery-img-wrap {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}
.gallery-img-wrap:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* ── Visit Orbs ── */
.visit-orb-1 {
    background: radial-gradient(circle, rgba(212, 168, 67, 0.4) 0%, transparent 70%);
}
.visit-orb-2 {
    background: radial-gradient(circle, rgba(100, 140, 200, 0.3) 0%, transparent 70%);
}

/* ── Menu List Hover ── */
#menu ul li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0;
}
#menu ul li:last-child { border-bottom: none; }
#menu ul li:hover { padding-left: 8px; transition: padding-left 0.25s ease; }
#menu ul li > div:first-child { transition: transform 0.25s ease; }

/* ── Contact Form Focus ── */
#contact-form input:focus,
#contact-form textarea:focus {
    background: rgba(255,255,255,0.08);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    #navbar nav { padding: 1rem 1.5rem; }
    .hero-content { padding: 0 1rem; }
    .hero-headline { font-size: clamp(2.5rem, 12vw, 4rem); }
    #about, #menu, #gallery, #visit { padding-top: 4rem; padding-bottom: 4rem; }
    .grid-cols-2 { gap: 0.75rem; }
    .auto-rows-[200px] { auto-rows: 160px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .auto-rows-[200px] { auto-rows: 180px; }
}
