* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
 
    font-weight: 100;
}

body {
    font-family: Arial, sans-serif;
}

/* Full-screen container */
.carousel-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Flex container to hold all images */
.carousel-slide {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Images take full height/width of the viewport */
.carousel-slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensures the image scales to cover the container while maintaining aspect ratio */
}

/* Black overlay to darken the carousel */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Adds a black shade */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* Center content (logo and coming soon text) */
.center-content {
    text-align: center;
    color: #fff;
}

.center-content .logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.center-content h1 {
 
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Font weight for the "Your Private Escape Awaits with" part */
.thin-text {
    font-weight: 400;
}

/* Font weight for the "My Private Stay" part */
.bold-text {
    font-weight: 600;
}

/* Social icons style */
.social-icons {
    margin-top: 40px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

/* Prev and next buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

/* Hide the buttons */
.prev {
    left: 20px;
    display: none;
}

.next {
    right: 20px;
    display: none;
}
@media (max-width: 768px) {
    .center-content .logo {
        width: 66px !important; /* 2/3 of 100px */
    }

    .center-content h1 {
        font-size: 15px !important; /* 2/3 of 3rem */
    }

    .social-icons img {
        width: 20px !important; /* 2/3 of 30px */
        height: 20px !important; /* 2/3 of 30px */
    }
}