/* Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

/* Body */
body {
    font-family: 'Almarai', sans-serif;
    background-image: radial-gradient(rgb(250, 164, 189), rgb(245, 100, 169));
    color: rgb(83, 59, 77);
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vh 5vw;
    background-color: #533b4d;
    color: #fae3c6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    width: 5vw;
    height: auto;
    border-radius: 50%;
    margin-left: 1vw;
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1vw;
}

/* Navigation */
nav {
    display: flex;
    gap: 2vw;
}

nav a {
    text-decoration: none;
    color: #fae3c6;
    font-weight: bold;
    font-family: 'Cairo', sans-serif;
    padding: 1vh 1.5vw;
    border-radius: 1.5vw;
}

nav a:hover {
    background-color: #fae3c6;
    color: #533b4d;
}

/* Buttons */
button {
    background-color: #ffffff;
    color: rgb(83, 59, 77);
    box-shadow: 0 0.2vh 0.5vw rgba(0,0,0,0.1);
    border: none;
    border-radius: 1.5vw;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    padding: 1vh 2vw;
    font-size: 1.2rem;
}

button:hover {
    transform: scale(1.05);
    background-color: rgba(250, 227, 198, 0.7);
    color: white;
    box-shadow: 0 0.4vh 1vw rgba(0,0,0,0.2);
}

/* Carousel */ 
.carousel-container {
    position: relative; 
    max-width: 40vw;
    margin: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
} 

.carousel-slides { 
    display: flex; 
    overflow: hidden; 
    width: 30vw; 
    height: 30vw; 
    border-radius: 50%; 
} 

.slide, .slide2 { 
    min-width: 100%; 
    transition: transform 0.5s ease-in-out; 
    object-fit: cover; 
    border-radius: 50%; 
} 

.carousel-button { 
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
    border: none; 
    padding: 1vh; 
    cursor: pointer; 
    font-size: 2vw; 
    border-radius: 50%; 
    z-index: 1; 
} 

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

/* Paragraphs */
p {
    text-align: center;
    font-size: 2.5vw;
    color: rgb(83, 59, 77);
    margin: 3vh 2vw;
}

/* Sections */
section {
    background-color: rgba(250, 227, 198, 0.7);
    padding: 2vh 2vw;
    margin: 2vh 2vw;
    border-radius: 1vw;
    text-align: center;
    opacity: 0.5;
}

/* Footer */
footer {
    background-color: rgb(83, 59, 77);
    color: rgb(250, 227, 198);
    padding: 2vh 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 15vh;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 2vh 5vw;
    }

    .logo {
        flex-direction: row;
        margin-bottom: 2vh;
    }

    header h1 {
        font-size: 4vw;
    }

    header img {
        width: 10vw;
        height: auto;
    }

    nav {
        flex-direction: column;
        gap: 2vh;
        align-items: center;
    }

    p {
        font-size: 3.5vw;
        margin: 2vh 2vw;
    }

    .carousel-container {
        max-width: 80vw;
    }

    .carousel-slides {
        width: 70vw;
        height: 70vw;
    }

    .slide,
    .slide2 {
        height: 70vw;
    }

    .carousel-button {
        font-size: 5vw;
        padding: 2vh;
    }
}

