@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;
    height: 24rem; /* h-96 - matches tour page hero height */
}

.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;
}

/* Testimonial Carousel Styles */
.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.testimonial-content {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow {
    background-color: rgba(0, 40, 104, 0.1);
    border: none;
    color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background-color: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.testimonial-arrow svg {
    width: 24px;
    height: 24px;
}
