/* Hero Section Dynamic Styles - Generated by Agave Admin */
/* This section is automatically generated. */

.hero-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(149, 209, 204, 0.3), rgba(225, 255, 255, 0.3)) !important;
}

.hero-section .hero-title {
    color: #ffffff !important;
    text-shadow: none !important;
}

.hero-section .hero-subtitle,
.hero-section .hero-subtitle2,
.hero-section .hero-subtitle3 {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0.5rem;
}

.hero-section .hero-subtitle {
    color: #893434 !important;
}

.hero-section .hero-subtitle2 {
    color: #457abf !important;
}

.hero-section .hero-subtitle3 {
    color: #793d8a !important;
}

.hero-subtitle-container {
    position: relative;
    min-height: 1.5em;
}

.hero-subtitle-rotating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-subtitle-rotating.active {
    opacity: 1;
}

<script>
document.addEventListener('DOMContentLoaded', function() {
    const subtitles = document.querySelectorAll('.hero-subtitle-rotating');
    if (subtitles.length > 1) {
        let currentIndex = 0;
        subtitles[0].classList.add('active');
        
        setInterval(function() {
            subtitles[currentIndex].classList.remove('active');
            currentIndex = (currentIndex + 1) % subtitles.length;
            subtitles[currentIndex].classList.add('active');
        }, 5000);
    } else if (subtitles.length === 1) {
        subtitles[0].classList.add('active');
    }
});
</script>

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-button-card {
    position: relative;
    min-height: 120px;
    min-width: 200px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.hero-button-card:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
}

.hero-button-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-button-card .button-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-button-card .button-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hero-button-card .button-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-button-primary {
    background-image: url('/images/hero_buttons/primary_button_1753771324.webp');
}

.hero-button-secondary {
    background-image: url('/images/hero_buttons/secondary_button_1753775258.webp');
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .hero-button-card {
        width: 100%;
    }
}

/* Generated: 2025-10-04 15:52:31 */
