/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; }

/* ── Header ── */
#header { background: transparent; }
#header.scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(4, 120, 87, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10B981;
    border-radius: 1px;
    transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background: #047857;
    color: #fff;
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.35);
}
.btn-primary:hover {
    background: #065F46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.45);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ── Hero ── */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/34387167/pexels-photo-34387167.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,78,59,0.82) 0%, rgba(4,120,87,0.72) 50%, rgba(6,95,70,0.85) 100%);
    z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(217, 249, 157, 0.35);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-24px) scale(1.2); opacity: 0.7; }
}
.hero-content { padding-top: 2rem; padding-bottom: 4rem; }
.hero-scroll { display: block; }

/* ── Feature Cards ── */
.feature-card { border: 1px solid rgba(4,120,87,0.08); }

/* ── Menu Items ── */
.menu-item { border: 1px solid rgba(4,120,87,0.06); }
.menu-item:hover { border-color: rgba(4,120,87,0.15); }

/* ── Gallery ── */
.gallery-item { cursor: default; }
.gallery-item img { transition: transform 0.5s ease; }

/* ── Visit Section ── */
.visit-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 28px 28px;
}

/* ── Contact Form ── */
.input-field {
    border: 1.5px solid #D1FAE5;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #064E3B;
    background: #FDF8F0;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.input-field::placeholder { color: #6EE7B7; }
.input-field:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
    background: #fff;
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Menu ── */
.mobile-link {
    border-bottom: 1px solid #D1FAE5;
    padding-bottom: 0.5rem;
}
.mobile-link:last-child { border-bottom: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-bg { background-position: center center; }
}
