/* Custom styles for Bani Barbershop */

/* Color palette */
:root {
    --midnight-900: #0a0f1a;
    --midnight-800: #111827;
    --midnight-700: #1f2937;
    --mint-400: #6ee7b7;
    --mint-300: #34d399;
    --mint-200: #10b981;
    --mint-100: #d1fae5;
    --mint-50: #ecfdf5;
    --mint-400-rgb: 110, 231, 183;
}

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

body {
    background-color: var(--midnight-900);
    color: #d1fae5;
}

/* Typography */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll effect */
.navbar-scrolled {
    background-color: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(110, 231, 183, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--midnight-900);
}

::-webkit-scrollbar-thumb {
    background: var(--midnight-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mint-400);
}

/* Focus styles */
input:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Mobile menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
