/* Custom Styles for McVeytown Original Italian Pizza */

:root {
    --navy: #1e3a5f;
    --navy-hover: #152a45;
    --gold: #d4af37;
    --gold-hover: #b8962e;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

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

/* Custom Colors */
.text-navy {
    color: var(--navy);
}

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

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

.bg-navy-hover {
    background-color: var(--navy-hover);
}

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

.bg-gold-hover {
    background-color: var(--gold-hover);
}

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

/* Navbar Styles */
#navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(30, 58, 95, 0.95);
}

#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* Form Styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-playfair.text-5xl {
        font-size: 2.5rem;
    }
}
