/*
By Silverzip Corporation Limted
*/
:root {
    --primary: #f8931f;
    --secondary: #54cbf5;
    --accent: #a3c634;
    --dark: #292F36;
    --light: #F7FDFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* .great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
} */

.hideme {
    display: none;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Adjust this value to control space between logo and text */
}

.site-logo {
    height: 50px;
    /* Adjust this to change logo size */
    width: auto;
    margin: 0;
}

.logo {
    font-size: 1.5rem;
    /* Slightly reduced from 1.8rem */
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    /* Prevents text from wrapping */
}

h2 {
    color: #fa770e !important;
    border-bottom: 1px solid #c5e2ec;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 5px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}



.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.book-now-btn {
background: #ff8900;
    background: -webkit-linear-gradient(90deg, #ff8900 0%, #f15a25 100%);
    background: linear-gradient(90deg, #ff8900 0%, #f15a25 100%);

    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: .9rem;
}

.book-now-btn:hover {
    background-color: #f15a25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    /* height: 100vh; */
    height: calc(100vh - 115px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 115px;
    /* Reduced from 80px to bring video up */
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    background: #ccec65;
        background: -webkit-linear-gradient(90deg, #ccec65 0%, #bddf52 100%);
        background: linear-gradient(90deg, #ccec65 0%, #bddf52 100%);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: #59aa32;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 230, 109, 0.3);
}

/* Activities Section */
.section {
    padding: 80px 0;
}

.top-section {
    padding-top: 160px;
}

.bottom-content {
    margin-bottom: 20px !important;
}

.bg-light {
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: #5b5b5b;
    max-width: 700px;
    margin: 0 auto;
}

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

.activity-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.activity-img {
    height: 200px;
    overflow: hidden;
}

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

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

.activity-content {
    padding: 20px 20px 30px;
}



.activity-content p {
    color: #5b5b5b;
    margin-bottom: 35px;
}

.view-more-btn {
    display: inline-block;
background: #6ac5ec;
    background: -webkit-linear-gradient(90deg, #6ac5ec 0%, #29aae3 100%);
    background: linear-gradient(90deg, #6ac5ec 0%, #29aae3 100%);
    color: white;
    padding: 8px 20px;
    margin-top:10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

/* .view-more-btn:hover {
    background: #29aae3;
} */

.view-more-btn:hover {
    background-color: #29aae3;
    box-shadow: 0 5px 15px rgba(98, 195, 255, 0.3);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Rooms Section */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.amenity-item {
    display: flex;
    align-items: center;
}

.amenity-item i {
    color: var(--primary);
    margin-right: 10px;
}

.shuttle-section {
    background-color: white;
    padding: 40px 0 40px;
}

/* Airport Shuttle */
.shuttle-banner {
    background-color: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}



/* Footer */
footer {
    background: #0ea5e6;
        background: -webkit-linear-gradient(90deg, #0ea5e6 0%, #0c87bb 100%);
        background: linear-gradient(90deg, #0ea5e6 0%, #0c87bb 100%);

        
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}



.footer-column p,
.footer-column a {
    color: #c9e2ec;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #b4df2a;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    color: var(--light);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #c9e2ec;
    font-size: 0.9rem;
}

/* Page Specific Styles */
/* Rooms Page */
.rooms-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Forces exactly 2 columns */
    gap: 40px;
}







.room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Makes all cards in row equal height */
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.room-slide {
    width: 100%;
    flex-shrink: 0;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: white;
}

.room-details {
    padding: 30px 30px 40px;
}



.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0 30px;
}

.room-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #5b5b5b;
}




/* Simple Layout */
.simple-content-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.simple-content-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.simple-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.simple-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.simple-content-layout.reversed {
    direction: rtl;
    /* Flips the order */
}

.simple-content-layout.reversed>* {
    direction: ltr;
    /* Keeps content direction correct */
}



/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}



.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.simple-content h3 {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 2rem;
}

.room-details h3,
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent);
}


.shuttle-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-content p {
    margin-bottom: 15px;
}

/* Responsive Styles */



/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Reversed About Section */
.about-container.reversed {
    grid-template-columns: 1fr 1fr;
}

.about-container.reversed .about-content {
    order: 1;
}

.about-container.reversed .about-img {
    order: 2;
}



.about-img {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {

    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 15px;
}

/* Rooms Amenities Layout */
.rooms-amenities-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.rooms-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.rooms-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






.site-logo {
    height: 60px;
    /* Adjust as needed */
    width: auto;
    margin: 0;
    /* Adjust spacing as needed */
}

.logo-link {
    display: inline-block;
    /* Ensures proper spacing around the logo */
}



.copyright a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: var(--accent);
}


.section-booking-policy {
    margin-top: 40px;
    font-size: .9rem;
    color: #5b5b5b;
}


@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .activity-page-item {
        grid-template-columns: 1fr;
    }

    .activity-page-item:nth-child(even) .activity-page-img,
    .activity-page-item:nth-child(even) .activity-page-content {
        order: initial;
    }

    .contact-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }

    .nav-links .book-now-btn {
        display: none;
        /* Hide book now button on mobile */
    }


}


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

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero {
        /*  height: calc(100vh - 115px); */
        margin-top: 85px;
    }

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

    .hero p {
        font-size: 1rem;
    }

    nav {
        padding: 5px 0;
    }

    .section {
        padding-bottom: 60px;
    }



    .about-container.reversed {
        grid-template-columns: 1fr;
    }

    .about-container.reversed .about-content,
    .about-container.reversed .about-img {
        order: initial;
    }


    .about-container,
    .rooms-amenities-container {
        grid-template-columns: 1fr;
    }

    .about-img,
    .rooms-image {
        height: 300px;
    }

    .site-logo {
        height: 50px;
        /* Smaller size on mobile */
        margin-left: 10px;
    }

    .logo-container {
        gap: 8px;
    }

    .site-logo {
        height: 40px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        margin-top: 77px;
    }

    .rooms-container {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .simple-content-layout {
        grid-template-columns: 1fr;
    }

    .simple-content-image {
        height: 300px;
    }
}


@media (max-width: 576px) {
    .section {
        padding-bottom: 40px 0;
    }

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

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

    .hero-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }


}


/* Reversed About Section */
.about-container.reversed {
    direction: rtl;
    /* This flips the order */
}

.about-container.reversed>* {
    direction: ltr;
    /* Keeps content direction correct */
}


.home-rooms-section, .shuttle-section {
background: #eef8fd;
    background: -webkit-linear-gradient(90deg, #eef8fd 0%, #dff2f9 100%);
    background: linear-gradient(90deg, #eef8fd 0%, #dff2f9 100%);

/* background: #f5f9fa;
    background: -webkit-radial-gradient(circle, #f5f9fa 0%, #cfe6f6 100%);
    background: radial-gradient(circle, #f5f9fa 0%, #cfe6f6 100%); */
}

/* .home-rooms-section h2{
    color:#fff;
}

.home-rooms-section i{
    color: #fff;
} */

.top-footer-bar {
    height: 5px;
    background: #f25d22;
        background: -webkit-linear-gradient(90deg, #f25d22 0%, #a3c634 50%, #53cbf4 100%);
        background: linear-gradient(90deg, #f25d22 0%, #a3c634 50%, #53cbf4 100%);
    width: 100%;

}