@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600&display=swap');

:root {
    --primary: #BF0A30;
    --secondary: #002868;
    --accent: #F2A900;
}

body {
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/SanJacintoPainting.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

.btn-primary {
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #9e0828;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #001a4d;
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
}

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

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

.active-nav::after {
    width: 100%;
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hamburger Animation */
.hamburger-line {
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Ensure mobile menu appears above other content */
.mobile-menu {
    z-index: 40;
}
