/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #F2E29F;
    color: #002C59;
    overflow-x: hidden;
}

.container {
    perspective: 1px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    scroll-behavior: smooth;
}

.hero {
    position: relative;
    background: linear-gradient(to bottom, #FFD700, #FF0000);
    height: 94vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #F2E29F;
    text-align: center;
font-size: 2rem;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
}

.features {
    position: relative; 
    height: 100vh;
    margin-top: -5vh; /* Add a narrow yellow strip */
    z-index: 1;
}

.feature-image {
    width: 100%;
    height: auto;
    position: relative; /* Changed from fixed to relative */
    top: 0;
}

.image-gallery.static-gallery {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #121212;
    padding: 20px;
    padding-top: 15vh;  
}

.image-gallery.static-gallery img {
    border-radius: 25px;
    width: calc(25% - 20px);
    height: auto;   
}

.swiper-container {
    display: none; /* Hide swiper container by default */
}

.swiper-slide img {
    border-radius: 25px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the images */
    margin-top: 0;
}

.swiper-pagination-bullet {
    background: #FFFFFF; /* Make the bullets white */
}

.swiper-pagination-bullet-active {
    background: #002C59; /* Keep the active bullet blue */
}

.cta {
    background: #002C59;
    color: #F2E29F;
    text-align: center;
    padding: 50px;
    position: relative; 
    z-index: 2;
    margin-top: 5vh; /* Space below the feature image */
}

.cta-button {
    display: inline-block;
    padding: 10px 20px; 
    background: #F2E29F;
    color: #002C59; 
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e6d290;
}
/* Additional styling for the Deck Swiper */
.deck-swiper {
    width: 100%;
    height: 100vh;
}

.deck-swiper .swiper-slide img {
    display: block;
    width: 90%; /* Slightly smaller width for better fit */
    height: auto;
    margin: 0 auto; /* Center the images */
}

.deck-swiper .swiper-button-next,
.deck-swiper .swiper-button-prev {
    color: #007bff; /* Bright blue color for the arrows */
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .features {
        height: auto;
        margin-top: 0;
	margin-bottom: 0;
    }

    .feature-image {
        top: 0;
	margin-bottom: 0;
    }

    .image-gallery.static-gallery {
        display: none; /* Hide static gallery on mobile */
    }

    .swiper-container {
        display: block; /* Show swiper container on mobile */
	background-color: #121212;
        width: 100%;
        height: 75vh; /* Adjust height for mobile */
        position: relative;
	margin-top: 0;
	padding-top: 7vh;
    }

    .swiper-slide img {
	width:60%;
        height: auto;
	margin-top: 0;
    }

    .swiper-pagination {
        bottom: 10px; /* Adjust position if needed */
        position: absolute;
        width: 100%;
        text-align: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 50%; /* Center vertically */
        transform: translateY(-50%);
        position: absolute;
    }

    .cta {
        padding: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        margin-top: 15px;
    }
}
