/* 
  Custom Styles for Ohana's Lounge
  Primary: #0F3D3E (Forest Green)
  Accent: #A5D6A7 (Soft Green)
  Background: #F4F1EA (Off-white)
*/

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

body {
    /* Fallback */
    font-family: 'Outfit', sans-serif;
}

.font-headline {
    font-family: 'Fraunces', serif;
}

.font-body {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F4F1EA;
}
::-webkit-scrollbar-thumb {
    background: #0F3D3E;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1A5C5D;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Glassmorphism on Scroll */
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-color: #0F3D3E;
    box-shadow: 0 0 0 4px rgba(15, 61, 62, 0.1);
}

/* Success Message */
#form-status {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}
#form-status.success {
    display: block;
    background-color: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #C8E6C9;
}
#form-status.error {
    display: block;
    background-color: #FFEBEE;
    color: #B71C1C;
    border: 1px solid #FFCDD2;
}
