html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    min-height: 100vh;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Header */





/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: url("img/689020575.jpg") center/cover no-repeat;
}


.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.8), white);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 67, 102, 0.3);
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(45deg, #114366, #1a5f7a);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(17, 67, 102, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #1a5f7a, #2c7c95);
    box-shadow: 0 15px 30px rgba(17, 67, 102, 0.2);
    color: white;
}

/* Updated Villa Section - Matching the photo */
.villa-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.villa-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.villa-image-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeInLeft 1s ease-out;
}

.villa-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.villa-image-container:hover .villa-main-image {
    transform: scale(1.05);
}

.villa-content-container {
    padding-left: 2rem;
    animation: fadeInRight 1s ease-out;
}

.villa-brand {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.villa-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.villa-emoji {
    display: inline-block;
    font-size: 2.4rem;
    margin: 0 0.3rem;
    vertical-align: middle;
}

.highlighted-text {
    color: #050505;
    font-weight: 400;
}

.villa-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    font-weight: 400;
}

/* Rooms Section */
.rooms-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.rooms-header {
    text-align: left;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.rooms-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #114366;
    margin-bottom: 1rem;
}

.rooms-header p {
    color: #666;
    font-size: 1.1rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-image-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.room-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.room-image-carousel img:not(:first-child) {
    opacity: 0;
}

.room-card-header-image-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.room-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: #e8f4fd;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-navigation.left {
    left: 10px;
}

.carousel-navigation.right {
    right: 10px;
}

.arrow-button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #343a40;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.arrow-button:hover {
    background: white;
    transform: scale(1.1);
}

.arrow-button i {
    font-size: 1.2rem;
}

/* Gallery Section Styles */
.section-title-group {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-swiper {
    padding-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 5rem 0;
    background-color: #fff;
}

.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #f0f0f0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    font-style: normal;
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #114366;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #114366;
}

.swiper-button-next,
.swiper-button-prev {
    color: #114366;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-image-carousel {
        height: 200px;
    }

    .carousel-navigation.left {
        left: 5px;
    }

    .carousel-navigation.right {
        right: 5px;
    }

    .arrow-button {
        width: 35px;
        height: 35px;
    }
}

/* Restaurant Section */
.restaurant-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.restaurant-content {
    animation: fadeInLeft 1s ease-out;
}

.restaurant-content h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #114366;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.restaurant-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.restaurant-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeInRight 1s ease-out;
}

.restaurant-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-image:hover img {
    transform: scale(1.05);
}

/* Amenities */
.amenities {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 2rem;
    background: white;
}

.amenity {
    text-align: center;
    color: #114366;
    animation: fadeInUp 1s ease-out;
}

.amenity:nth-child(2) { animation-delay: 0.2s; }
.amenity:nth-child(3) { animation-delay: 0.4s; }
.amenity:nth-child(4) { animation-delay: 0.6s; }

.amenity-icon {
    width: 60px;
    height: 60px;
    background: rgba(17, 67, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.amenity:hover .amenity-icon {
    background: rgba(17, 67, 102, 0.2);
    transform: scale(1.1);
}

.amenity h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.amenity p {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #666;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .villa-container,
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .villa-content-container {
        padding-left: 0;
        text-align: center;
    }

    .villa-title {
        font-size: 2.2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .restaurant-content h2 {
        font-size: 2rem;
    }
}

/* Floating elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


.inline-image {
    border-radius: 2rem !important; /* Override Bootstrap's rounded-3 with more rounded corners */
    width: 6rem;
    height: 4rem;
    object-fit: cover;
    margin: 0 0.5rem; /* Add some spacing around the image */
    vertical-align: middle; /* Better alignment with text */
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important; /* Enhanced shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Optional hover effect */
.inline-image:hover {
    transform: scale(1.05);
}

/* If you want even more rounded corners like a pill shape */
.inline-image-pill {
    border-radius: 3rem !important; /* Very rounded corners */
    width: 6rem;
    height: 4rem;
    object-fit: cover;
    margin: 0 0.5rem;
    vertical-align: middle;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}
/* Specific styling for the lighter text within the main heading */
.light-text {
    color: #a0a0a0; /* Lighter grey color */
}
/* Custom font sizes to match original design closer if Bootstrap defaults aren't precise */
.display-6-custom {
    font-size: 3.5rem; /* Approx. 5xl */
}

/* Typewriter Animation */
#typewriter {
    border-right: 2px solid white;
    animation: blink 1s infinite;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: white;
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: white; }
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    background-color: white;
    animation: blink 1s infinite;
}

/* Animation classes for scroll effects */
.fadeinleft {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fadeinright {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fadeindown {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease-out;
}

/* Active states for animations */
.active-left {
    opacity: 1;
    transform: translateX(0);
}

.active-right {
    opacity: 1;
    transform: translateX(0);
}

.active {
    opacity: 1;
    transform: translateY(0);
}

.active-down {
    opacity: 1;
    transform: translateY(0);
}



.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    z-index: 999; /* Try a very high z-index to be absolutely sure it's on top */
    background: transparent !important; /* Force transparency */
    backdrop-filter: none !important; /* Force no backdrop filter */
    -webkit-backdrop-filter: none !important; /* For Safari */
    border: none !important; /* Force no border */
}


/* 2. The flex container for alignment (no changes needed here) */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 3. The Logo (no changes needed here) */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* 4. The individual navigation buttons (with the glass effect - no changes needed here) */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin: 0 8px; /* Spacing between buttons */
}

.nav-menu li a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;

    /* The "glass" effect is applied HERE, to each button */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;

    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 5. The Date Badge (also with its own glass effect - no changes needed here) */
.date-badge {
    display: flex;
    align-items: center;
    padding: 4px 5px 4px 15px;
    color: #fff;

    /* The "glass" effect is applied HERE */
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}

.date-text {
    font-size: 0.9rem;
    margin-right: 10px;
}

.icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper i {
    color: #333;
    font-size: 15px;
}



.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    z-index: 999; /* Very high z-index to ensure it's on top */
    background: transparent !important; /* Force transparency */
    backdrop-filter: none !important; /* Force no backdrop filter */
    -webkit-backdrop-filter: none !important; /* For Safari */
    border: none !important; /* Force no border */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin: 0 8px;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.date-badge {
    display: flex;
    align-items: center;
    padding: 4px 5px 4px 15px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
}

.date-text {
    font-size: 0.9rem;
    margin-right: 10px;
}

.icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper i {
    color: #333;
    font-size: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Allows content and arrow to stack vertically */
    align-items: center;
    justify-content: center; /* Centers main content vertically */
    position: relative;
    padding: 2rem;
    background: url("img/689020575.jpg") center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.8), white);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 67, 102, 0.3);
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
    margin-bottom: 80px; /* Space for the scroll indicator box */
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Updated CTA button for "Explore more" */
.cta-button {
    background: white; /* White background as per image */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5); /* Lighter border */
    color: #114366; /* Dark text color */
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #f0f0f0; /* Slightly off-white on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* More prominent shadow on hover */
    color: #114366;
}

/* New style for the white box containing the bouncing arrow */
.scroll-indicator-box {
    background: white;
    padding: 0; /* Remove padding to ensure the arrow is centered */
    border-radius: 15px; /* Rounded corners for the box */
    display: flex; /* Changed to flex for better centering */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.5s both; /* Appear with a fade */
    position: absolute !important; /* Position relative to hero */
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 150px; /* Position it at the bottom of the hero section, adjusted from screenshot */
    z-index: 10 !important; /* Make sure it's above everything */
    width: 80px !important; /* Fixed width to ensure proper centering */
    height: 80px !important; /* Fixed height to ensure proper centering */
    margin-left: 0 !important; /* Reset any margin that might affect centering */
    margin-right: 0 !important; /* Reset any margin that might affect centering */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.bouncing-arrow {
    font-size: 1.5rem; /* Larger arrow */
    color: #114366; /* Dark blue color for the arrow */
    text-decoration: none;
    display: flex; /* Changed to flex for better centering */
    align-items: center;
    justify-content: center;
    width: 100%; /* Take full width of parent */
    height: 100%; /* Take full height of parent */
    animation: bounce 2s infinite; /* Apply bounce animation */
}

.bouncing-arrow i {
    display: block; /* Ensure the icon is a block element */
    text-align: center; /* Center the icon */
    margin: 0 auto; /* Center horizontally */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}





/* NEW Section for large image below rooms */
.rooms-bottom-image {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px; /* Fixed height for the image section */
    margin: 5rem auto; /* Space above and below */
    overflow: hidden;
    border-radius: 20px; /* Rounded corners for the entire image container */
}

.rooms-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Remove extra space below image */
}

.rooms-bottom-image::before,
.rooms-bottom-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px; /* Height of the fade effect */
    z-index: 1;
}

.rooms-bottom-image::before {
    top: 0;
    /* Gradient from white to transparent (top fade) */
    background: linear-gradient(to bottom, white, transparent);
}

.rooms-bottom-image::after {
    bottom: 0;
    /* Gradient from transparent to white (bottom fade) */
    background: linear-gradient(to top, white, transparent);
}



.view-all-rooms {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap; /* Prevent wrapping */
}

.view-all-rooms i {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.view-all-rooms:hover i {
    transform: translateX(5px);
}

/* Styles for the "Vila Jiota" header badge */
.villa-jiota-badge {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.villa-jiota-badge:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Slightly larger shadow on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}
.villa-jiota-badge {
    padding: 15px;

}



/* Update the existing .villa-jiota-badge parent container */
.mb-5.d-flex.align-items-center.fadeinleft {
    justify-content: flex-start; /* This moves the badge to the left */
}

/* Alternative: You can also add this class directly to the header element */
.badge-left {
    justify-content: flex-start !important;
}



.room-card-image-style {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: 350px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.room-card-header-image-style {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.room-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.room-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    color: #666;
}

.room-image-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.room-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-navigation.left {
    left: 20px;
}

.carousel-navigation.right {
    right: 20px;
}

.arrow-button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #343a40;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.arrow-button:hover {
    background: white;
    transform: scale(1.1);
}

.arrow-button i {
    font-size: 1.2rem;
}

.room-details-image-style {
    text-align: left;
}

.room-title-image-style {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.room-description-image-style {
    font-size: 1em;
    color: #777;
    line-height: 1.5;
}

.site-footer{
    background-color: #114366;
    color: white;
    padding: 20px;
    text-align: center;
}


.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.rooms-header > div {
    text-align: left;
}

/* Optional: Make the h2 stand out and align left */
.left-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

/* Ensure View All Rooms link is aligned right */
.view-all-rooms {
    white-space: nowrap;
    margin-left: 2rem;
}


.amenities {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;           /* Space between amenities */
    flex-wrap: wrap;       /* Responsive wrapping */
    padding: 3rem 0;
    text-align: center;    /* Center h3 and icon inside each amenity */
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    margin: 1rem 0;
}




/* Mobile Navigation Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.hamburger.active {
    background-color: rgba(77, 76, 76, 0.2);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(17, 67, 102, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: 0.5s ease;
        z-index: 999;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        color: #fff;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* Footer Fixes */
    footer {
        background: #114366;
        color: #fff;
        padding: 3rem 0;
        margin-top: 0;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        position: relative;
        z-index: 1;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #fff;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Mobile Calendar Styles */
    .mobile-date-badge {
        display: none;
        width: 100%;
        margin-top: 2rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
    }

    .mobile-date-badge.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .mobile-date-text {
        color: #fff;
        font-size: 1.1rem;
        text-align: center;
    }

    .mobile-lang-switcher {
        position: absolute;
        bottom: 150px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        backdrop-filter: blur(5px);
        transition: transform 0.3s ease;
    }

    .mobile-lang-switcher:hover {
        transform: translateX(-50%) scale(1.1);
    }

    .mobile-lang-switcher img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .date-badge {
        display: none;
    }

    /* Mobile Layout Adjustments */
    .villa-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .villa-content-container {
        padding-left: 0;
    }

    .villa-title {
        font-size: 2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .amenities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .container, .container-fluid {
        padding: 0 1rem;
    }

    /* Improve touch targets */
    .nav-menu li a,
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }

    /* Add overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        overflow: hidden;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-container {
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        max-width: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .container, .container-fluid {
        padding: 0 0.75rem;
    }
}

testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    text-align: center;
}

.rating {
    color: #114366;
    margin-bottom: 1rem;
}

.rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #2c3e50;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: #34495e;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 0.5rem;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    /* Ensure the bouncy arrow is centered on mobile */
    .scroll-indicator-box {
        background: white;
        padding: 0; /* Remove padding to ensure the arrow is centered */
        border-radius: 15px; /* Rounded corners for the box */
        display: flex; /* Changed to flex for better centering */
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: absolute !important; /* Position relative to hero */
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 30px; /* Position it at the bottom of the hero section */
        z-index: 10 !important; /* Make sure it's above everything */
        width: 40px !important; /* Fixed width to ensure proper centering */
        height: 40px !important; /* Fixed height to ensure proper centering */
        margin-left: 0 !important; /* Reset any margin that might affect centering */
        margin-right: 0 !important; /* Reset any margin that might affect centering */
        overflow: hidden; /* Ensure content doesn't overflow */
    }
}

/* Language Switcher Styles */
.lang-switcher {
    cursor: pointer;
    padding: 3px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}







.scroll-container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 80%;
    height: auto;
    z-index: 1;
}

.text-track {
    position: absolute;
    width: 200%;
    overflow: hidden;
    white-space: nowrap;
    font-size: 4vw;
    font-weight: bold;
    pointer-events: none;
}

.top-text {
    top: 9%;
}

.bottom-text {
    bottom: 9%;
}

.text-loop {
    display: inline-block;
    animation: none;
    will-change: transform;
    color: #114366;
}

.scrolling-text-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.scrolling-text span {
    font-size: clamp(2rem, 7vw, 7rem);
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
}



.map-fullscreen {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.contact {
    padding: 0;
}












/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a, #2c3e50);
  position: relative;
  overflow: hidden;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}


.footer-description {
  color: #b3b3b3;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ffffff;
  color: #2c3e50;
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-contact-info li {
  color: #b3b3b3;
}

.footer-contact-info i {
  color: #ffffff;
  font-size: 1.1rem;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
  color: #b3b3b3;
}

.newsletter-form .btn {
  background: #ffffff;
  color: #2c3e50;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background: #2c3e50;
  color: #ffffff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: #b3b3b3;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-heading {
    margin-top: 2rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links, .footer-contact-info {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
}

.mobile-menu ul li a:hover {
    color: #34495e;
}

.mobile-menu .date-badge {
    margin-top: 40px;
    text-align: center;
}

.mobile-menu .date-text {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
}

.mobile-menu .lang-switcher {
    margin-top: 15px;
}

.mobile-menu .lang-switcher img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.mobile-menu .lang-switcher img:hover {
    transform: scale(1.1);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #2c3e50;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
    }
}


/* General styles for the rooms grid (for desktop and larger screens) */
.rooms-grid {
    display: grid; /* Assuming you're using grid for desktop layout */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Example for responsive grid columns */
    gap: 30px; /* Space between cards on desktop */
    justify-content: center; /* Center grid items if there's extra space horizontally */
    align-items: start; /* Align items to the start of their grid area vertically */
    /* Add other desktop specific styles you have here */
  }
  
  /* Styles for individual room cards */
  .room-card-image-style {
    /* Ensure the card itself can shrink and grow */
    width: 100%; /* Take full width of its grid cell */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Example shadow */
    border-radius: 8px;
    overflow: hidden; /* For images inside */
    /* Other desktop styles for the card */
  }
/* ==================================================================== */
@media (max-width: 768px) { /* Targeting screens up to 768px wide (typical for tablets and phones) */

    .rooms-grid {
      display: flex; /* Switch to flexbox for mobile */
      flex-direction: column; /* Stack cards vertically */
      align-items: center; /* CENTER horizontally */
      justify-content: center; /* Center vertically if needed, but align-items is key for horizontal centering here */
      gap: 30px; /* Maintain consistent gap or adjust for mobile */
      padding: 0 15px; /* Add some padding to the sides on mobile */
    }
  
    .room-card-image-style {
      width: 90%; /* Make cards take 90% of the screen width for better readability */
      max-width: 400px; /* Optional: Prevent cards from becoming too wide on larger phones/small tablets */
      margin: 0 auto; /* This helps center the card if for some reason flexbox align-items isn't fully working due to other properties. It also works independently. */
    }
  
    /* You might also want to adjust text sizes or padding within the cards for mobile */
    .room-title-image-style {
      font-size: 1.2em; /* Example: slightly smaller title on mobile */
    }
  
    .room-description-image-style {
      font-size: 0.9em; /* Example: slightly smaller description on mobile */
    }
  }
  
  /* Optional: Even smaller screens, like old phones */
  @media (max-width: 480px) {
    .rooms-grid {
      gap: 20px; /* Slightly less gap for very small screens */
    }
    .room-card-image-style {
      width: 95%; /* Make cards take up more width on very small screens */
    }
  }

@media (max-width: 768px) {
  .text-track {
    display: none;
  }
  
  .scroll-container {
    margin: 0;
    padding: 0;
  }
  
  .rooms-bottom-image {
    margin: 0;
    padding: 0;
  }
}


