/* Custom Styles for Brick Alley Tavern */

:root {
    --midnight: #0a1628;
    --midnight-dark: #060f1d;
    --gold: #c9a227;
    --gold-light: #d4af37;
    --mint: #4ecdc4;
    --mint-light: #7edcd4;
    --off-white: #f5f5f5;
    --gray: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--midnight);
    color: var(--off-white);
    line-height: 1.6;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

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

/* Custom Colors */
.bg-midnight {
    background-color: var(--midnight);
}

.bg-midnight-dark {
    background-color: var(--midnight-dark);
}

.text-gold {
    color: var(--gold);
}

.text-mint {
    color: var(--mint);
}

/* Navbar Styles */
#navbar {
    background: transparent;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-blur-lg;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--mint);
}

/* Hero Animations */
.hero-subtitle {
    animation: slideUp 0.8s ease-out forwards;
}

.hero-title {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-description {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-link {
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--mint);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

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

/* Form Styles */
input:focus, textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .text-5xl {
        font-size: 2rem;
    }
    
    .text-4xl {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .bg-midnight, .bg-midnight-dark {
        background: white !important;
    }
    
    .text-gold, .text-mint {
        color: black !important;
    }
}
