/* SMSH Band — Custom Styles */

/* ── Hero Gradient ── */
.hero-gradient {
    background: linear-gradient(
        135deg,
        #0d1f18 0%,
        #1B4332 25%,
        #2a5c35 50%,
        #1B4332 75%,
        #0d1f18 100%
    );
}

.hero-overlay {
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(212, 168, 67, 0.08) 0%,
        transparent 60%
    ),
    radial-gradient(
        ellipse at 70% 50%,
        rgba(212, 168, 67, 0.05) 0%,
        transparent 60%
    );
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal[data-reveal-delay="100"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="200"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="300"] { transition-delay: 0.3s; }

/* Default state for reduced-motion or no-JS: always visible */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.visible {
        opacity: 1;
        transform: none;
    }
}

/* ── Navbar ── */
#navbar {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08), 0 4px 20px rgba(27, 67, 50, 0.06);
}

/* ── Smooth Scroll ── */
html {
    scroll-behavior: smooth;
}

/* ── Selection ── */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: #1B4332;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FAF8F2;
}
::-webkit-scrollbar-thumb {
    background: #b8d4bc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8abb92;
}

/* ── Mobile Menu ── */
.mobile-link {
    opacity: 1;
}

/* ── Form Select ── */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B4332' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* ── Focus Visible ── */
:focus-visible {
    outline: 2px solid #D4A843;
    outline-offset: 2px;
}

/* ── Print ── */
@media print {
    #navbar, .animate-bounce, #mobile-menu { display: none; }
    body { color: #000; background: #fff; }
    .hero-gradient, .hero-overlay { display: none; }
}
