/* Custom Styles for Two Brothers Italian American */

:root {
    --color-forest-900: #022c22;
    --color-forest-800: #064e3b;
    --color-luxury-gold: #D4AF37;
    --color-luxury-cream: #FDFBF7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-forest-900);
    color: var(--color-luxury-cream);
}

/* Typography */
h1, h2, h3, h4, .font-display {
    font-family: 'Cinzel', serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-luxury-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b59020;
}

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

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(2, 44, 34, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Input Focus Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-luxury-gold);
}

/* Mobile Menu Animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
    max-height: 400px;
}

/* Image Hover Zoom */
img {
    transition: transform 0.5s ease;
}

.group:hover img {
    transform: scale(1.05);
}

/* Section Spacing */
section {
    position: relative;
}

/* Button Hover Effects */
button, a {
    transition: all 0.3s ease;
}

/* Form Styles */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .font-display {
        font-size: 1.5rem;
    }
}
