/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Ensure the slide is positioned */
}

.slide-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the slide */
}

.slide-content {
    position: absolute;
    text-align: center;
    max-width: 80%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 5px;
    color: white; /* Ensure text is visible */
}

h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button,
.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active {
    display: inline-block;
    padding: 10px 20px;
    background-color: #C60000;
    color: white !important; /* Using !important to override any conflicting styles */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #A50000; /* Slightly darker red for hover effect */
}

/* Remove the following redundant styles */
/*
.cta .button {
    padding: 10px 20px;
    background-color: #C60000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
*/


main {
    padding: 20px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}