
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;  
    color: #555; 
}

header {
    background-color: #f7b6d2; 
    color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid #f3a1c7; 
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header nav {
    margin-top: 10px;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

header nav ul li a:hover {
    text-decoration: underline;
    color: #f3a1c7;  
}


main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: black; 
    font-size: 24px;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#hero {
    background-image: url('assets/womenempo.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



.hero-content h2 {
    font-size: 3rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.5rem;
}


.cta-btn {
    background-color: #ff8ec7;
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: #f7b6d2;
}
#features {
    text-align: center;
    padding: 50px 20px;
}

.features-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    flex: 1 1 30%;
    min-width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature img {
    max-width: 100%;
    border-radius: 8px;
}

.feature:hover {
    transform: translateY(-10px); 
}

.feature h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}
#carousel {
    text-align: center;
    padding: 40px;
}

.carousel-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slide {
    display: inline-block;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    border-radius: 10px;
}





footer {
    background-color: #f3a1c7;  
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 1.1rem;
    margin: 10px 0;
    font-weight: normal;
}

footer .social-links {
    margin-top: 15px;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-links a:hover {
    color: #ff8ec7; 
    transform: scale(1.2); 
}


@media screen and (max-width: 768px) {
    footer .social-links {
        margin-top: 10px;
    }

    footer .social-links a {
        font-size: 1.3rem;
        margin: 0 10px;
    }
}

#carousel {
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

#carousel h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff8ec7; /* Pastel pink */
    border-bottom: 2px solid #f3a1c7;
    padding-bottom: 10px;
}


.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto; 
    overflow: hidden; 
    display: flex;
    align-items: center; 
    justify-content: center;
}


.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 10px;
}


.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


@media screen and (max-width: 768px) {
    .carousel-container {
        max-width: 90%;
    }

    .carousel-buttons button {
        padding: 8px 16px;
        font-size: 1.3rem;
    }

    #carousel h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .carousel-container {
        max-width: 100%;
    }

    .carousel-buttons button {
        padding: 6px 12px;
        font-size: 1.2rem;
    }

    #carousel h2 {
        font-size: 1.2rem;
    }
}
#cta {
    background-color: #ff8ec7;
    color:white;
    text-align: center;
    padding: 40px 20px;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#cta .cta-btn {
    background-color: #f3a1c7;
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}

#cta .cta-btn:hover {
    background-color: #f7b6d2;
}

.side-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000; 
}

.side-button button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.side-button button:hover {
    background-color: #45a049;
}
