/* Ensure the main element takes full height */
.site-main {  
    display: flex;
    flex-direction: column;
    margin-top: 80px; /* Match logo height */
}

.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: -81px; /* Match logo height */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.15);
    }
}

/* Add overlay to ensure text readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 65, 0.5) 0%, rgba(0, 32, 65, 0.6) 100%);
    z-index: 1;
}

/* Container styles */
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Hero content styles */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    animation: slideInUp 1s ease-out;
}

.hero-title {
    font: bold 65px/1.2 "Playfair Display", serif;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 1.5rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.hero-description {
    font: 18px/1.6 "Montserrat", sans-serif;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 1.25rem 2.5rem;
    font: bold 14px/1 Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-learn-more:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-learn-more i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

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

/* Responsive styles */
@media (max-width: 1023px) {
    .hero-section {
        height: 100vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .btn-learn-more {
        min-width: 200px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-learn-more {
        width: 100%;
        min-width: 0;
    }
}



.hero-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,32,65,0.1) 0%, rgba(0,32,65,0.3) 100%);
    z-index: 1;
}

.hero-video-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
} 