/* Top Bar */
.top-bar {
    position: fixed;
    width: 100%;
    max-width: 2003px;
    margin: auto;
    background: rgba(255, 255, 255, 0.80);
    z-index: 1000;
}

.top-bar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.80);
    filter: blur(20px);
    z-index: -1;
    top: 0;
    left: 0;
}

.top-bar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.80);
    z-index: 100;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
    height: 15vw;
}

.nav-item, .logo-text {
    color: #AD8616;
    font-family: 'SeoulHangang CBL', sans-serif;
    font-weight: 600;
    font-size: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EBE3DA;
    z-index: -1;
    filter: blur(20px);
    opacity: 0; /* Initially invisible */
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.nav-item:hover {
    height: 15vw;
}

.nav-item:hover::before {
    opacity: 0.7; /* Visible on hover */
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 8px;
    font-size: 1.5vw;
    flex-grow: 0; /* Prevents the logo from stretching */
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-logo img {
    width: auto;
    height: 10vw;
}



/* Banner */
.banner-container {
    position: relative;
    width: 100%;
    height: 25vw;
    padding-bottom: 50%; /* This percentage controls the aspect ratio */
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.banner-text {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to center the text block */
    text-align: center;
    color: #AD8616;
    width: 60%; /* Width of the text block */
    max-width: 450px; /* Maximum width */
}

.banner-text h1 {
    font-size: 3vw; /* Responsive font size */
    font-family: 'SeoulHangang CBL', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.banner-text p {
    font-size: 1.5vw;
    font-family: 'SeoulHangang CBL', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    word-wrap: break-word;
}

@keyframes slideOutLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.slide-out-left {
    animation: slideOutLeft 0.5s forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s forwards;
}



/* Services */
.services-section {
    position: relative;
    text-align: center;
    padding: 3vw; /* Use viewport units for responsive padding */
    background-color: #fff; /* Assuming a white background */
}

.services-title {
    font-size: 3vw; /* Responsive font size */
    color: #AD8616; /* Gold color */
    margin-bottom: 1vw; /* Responsive spacing */
}

.services-flow-container {
    position: relative;
    display: flex;
    justify-content: space-around; /* Adjust as necessary for your layout */
}

.service-item {
    position: relative;
    z-index: 1; /* Ensure it's above the flow line */
    width: 20vw; /* Responsive width based on viewport width */
    text-align: center; /* Center the text within each service item */
}

.service-image {
    width: 15vw; /* Responsive width */
    height: auto;
    border-radius: 50%; /* Circular images */
    border: 0.2vw solid #AD8616; /* Responsive border width */
    padding: 1vw; /* Responsive padding */
    background-color: #fff;
    box-sizing: border-box;
}

.service-description h3 {
    font-size: 1.5vw; /* Responsive font size */
    color: #AD8616; /* Gold color */
    margin: 1vw 0; /* Responsive spacing */
}

.service-description-list {
    list-style: none; /* Remove default list bullets */
    padding-left: 0; /* Remove default padding */
    color: #AD8616;
    font-size: 1.2vw; /* Responsive font size */
    font-family: 'SeoulHangang', sans-serif;
    font-weight: 400;
    line-height: 2vw; /* Relative line height */
    word-wrap: break-word;
}

.service-description-list li {
    background: url('bullet-icon/love-bullet.png') no-repeat left center;
    padding-left: 2vw; /* Responsive padding */
    background-size: 1.5vw 1.5vw; /* Responsive background size */
    margin-bottom: 1.5vw; /* Responsive spacing */
    text-align: left; /* Align text to the left */
}

.service-text {
    color: #AD8616;
    font-size: 1.5vw; /* Responsive font size */
    font-family: 'SeoulHangang CBL', sans-serif;
    font-weight: 400;
    line-height: 1.5em; /* Relative line height */
    word-wrap: break-word;
}

.service-text h3 {
    font-size: 2vw; /* Responsive font size */
    color: #AD8616; /* Gold color */
    margin: 1vw 0; /* Responsive spacing */
}

/* Add media queries for better control over text sizes on smaller screens */
@media (max-width: 600px) {
    .services-title, .service-description h3, .service-text {
        font-size: 4vw; /* Slightly larger font size on small screens */
    }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .service-description-list li {
        padding-left: 4vw; /* Larger padding for visibility */
        background-size: 1.5vw 1.5vw; /* Increase background size */
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .service-description-list li {
        padding-left: 6vw; /* Even larger padding for very small screens */
        background-size: 1vw 1vw; /* Further increase in background size */
    }
}

[data-aos] {
    transition-duration: 2s !important;
}



/* Why Choose us */
.why-choose-us-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBE3DA;
    padding: 5vw;
}

.right-column, .left-column {
    flex: 1;
}

.left-column {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
}

.right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title, .section-description {
    font-family: 'SeoulHangang CBL', sans-serif;
    text-align: center;
    width: 80%;
    margin: 0 auto; /* Center align */
}

.section-title {
    font-size: 3vw; /* Responsive font size */
    color: #AD8616; /* Gold color */
    margin-bottom: 1vw; /* Responsive spacing */
}

.section-description {
    font-size: 1.5vw; /* Responsive font size */
    color: #AD8616; /* Gold color */
    margin: 1vw 0; /* Responsive spacing */
    line-height: 3vw;
    word-wrap: break-word;
}

.stat-item {
    width: 13vw;
    height: 13vw;
    background: white;
    padding: 2vw;
    text-align: center;
}

.stat-item h3 {
    font-size: 3vw; /* Responsive font size */
    color: #000000; /* Black color */
    margin: 1vw 0; /* Responsive spacing */
}

.stat-item p {
    font-size: 1.8vw; /* Responsive font size */
    color: #000000; /* Black color */
    margin: 1vw 0; /* Responsive spacing */
}



/* Room Type Section */
.room-types-section {
    display: flex;
    padding: 20px;
    align-items: center; /* Align items to the center vertically */
    justify-content: space-between; /* Distribute space between left and right main parts */
    position: relative; /* Needed for absolute positioning of background images */
    overflow: hidden; /* Hide images that slide out of the container */
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    z-index: -1; /* Place the image behind the content */
    opacity: 0.3;
    transition: background-image 1s ease; /* Smooth transition for the background change */
}

.left-main-part {
    padding-left: 10vw;
    display: flex;
    flex-direction: row; /* Arrange children horizontally */
    align-items: center; /* Align children vertically */
    flex-basis: 50%; /* Half of the horizontal space */
}

.image-part {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align images to the start */
    margin-right: 20px; /* Space between images and text */
}

.image-part img {
    width: 13vw; /* Fixed width for images */
    height: 10vw; /* Fixed height for images */
    object-fit: cover;
    margin-bottom: 10px; /* Spacing between images */
}

.text-part {
    flex: 5;
    text-align: left;
    padding-left: 5vw;
}

.room-title, .room-description {
    color: #AD8616;
    font-family: 'SeoulHangang CBL', sans-serif;
    word-wrap: break-word;
}

.room-title {
    font-size: 3vw; /* Responsive font size */
    margin-bottom: 1vw; /* Responsive spacing */
}

.room-description {
    font-size: 1.5vw; /* Responsive font size */
    margin: 1vw 0; /* Responsive spacing */
    font-family: Inter;
    line-height: 3vw;
}

.right-main-part {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 50%; /* Half of the horizontal space */
}

.learn-more {
    font-family: 'SeoulHangang CBL', sans-serif;
    color: white;
    background: #AD8616;
    padding: 1vw 2.5vw;
    font-size: 2vw;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .room-types-section {
        flex-direction: row; /* Stack elements vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .left-main-part, .right-main-part {
        width: 50%; /* Full width for smaller screens */
        flex-basis: auto; /* Reset the flex-basis */
    }

    .image-part, .text-part {
        align-items: flex-start; /* Align image and text to the start */
        width: 100%; /* Full width for each part */
    }

    .left-main-part {
        flex-direction: row;
    }

    .right-main-part {
        align-items: center;
        display: flex;
        justify-content: center; /* Align the button to the right */
        padding-top: 20vw; /* Add some space above the button */
    }
}



/* Footer */
.footer-container {
    position: relative;
    height: 7vw;
    background: #AD8616;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: white;
    font-size: 1.5vw;
    font-family: SeoulHangang;
    font-weight: 400;
    word-wrap: break-word;
}

.social-icons {
    display: flex;
    align-items: center;
    padding-left: 10vw;
}

.pressable-image {
    width: 5vw;
    height: 5vw;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    margin-left: 1vw;
    background-size: contain; /* Adjust to fit the icon within the div */
    background-repeat: no-repeat; /* Prevent repeating of the background image */
    background-position: center; /* Center the background image */
}

.facebook-icon {
    background-image: url('social-icon/facebook.png');
}

.instagram-icon {
    background-image: url('social-icon/instagram.png');
}

.whatsapp-icon {
    background-image: url('social-icon/whatsapp.png');
}

.twitter-icon {
    background-image: url('social-icon/messenger.png');
}

.pressable-image:hover {
    transform: scale(1.1);
}

.pressable-image:hover img {
    transform: scale(1.1);
}