/* css/styles.css */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    font-size: 1em;
    margin: 10px 0;
    color: #34495e;
}

.cta-button {
    background-color: #03ba61;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #029a4d;
}

.cta {
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        width: 100%;
        max-width: none;
    }
    h1 {
        font-size: 1.5em;
    }
    p {
        font-size: 0.9em;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}