:root {
    --primary-color: #7B1E1E;
    --secondary-color: #1F5F3F;
    --accent-yellow: #D4AF37;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f4f4f4;

    --font-primary: 'Helvetica', sans-serif;
    --font-secondary: 'Georgia', serif;
}


html {
    scroll-behavior: smooth;
} 
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--light-bg);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}


header {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;        
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 15px; 
}

body {
    padding-top: 100px; 
}


header.scrolled h1 {
    font-size: 20px; 
}
header.scrolled .slogan {
    font-size: 12px;
}

header h1 {
    margin: 0;
    font-size: 20px;
}

.slogan {
    font-style: italic;
    margin-top: 5px;
    color: var(--accent-yellow);
}


nav ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav ul li a {
    color: var(--white);
    font-weight: bold;
    padding: 5px 0;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-yellow);
}

nav ul li a.active {
    border-bottom: 2px solid var(--accent-yellow);
}


.hero {
    text-align: center;
    padding: 90px 20px;
    color: var(--white);
}

.home-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/face2.jpeg") center/cover no-repeat;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 20px auto;
}
.btn{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
}
.btn:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white);
}

.home-section {
    padding: 70px 20px;
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 20px;
}


.facility-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.facility-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.facility-card h4 {
    margin-top: 15px;
    margin-left: 12px;
    color: var(--primary-color);
}

.facility-card p {
    padding: 0 15px;
    font-size: 14px;
}

.facility-card:hover {
    transform: translateY(-8px);
}


.swimming-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.package-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
    border:1 px solid #7b1e3a;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card h4 {
    color: #7b1e3a;
    margin-bottom: 15px;
}

.package-card ul {
    padding-left: 18px;
}

.package-card ul li {
    margin-bottom: 8px;
}

.price {
    color: #2e7d32;
    font-weight: bold;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: gray;
    margin-bottom: 0;
}

.highlight {
    border: 2px solid #7b1e3a;
}


.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background:  var(--primary-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    vertical-align: bottom;
}

.whatsapp-btn:hover {
    background: var(--secondary-color);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ============================= */
/* EXPERIENCE SLIDESHOW SECTION */
/* ============================= */

.discover-section {
    background: #f9f9f9;
}

.discover-section p {
    max-width: 700px;
    margin: 0 auto;
}

#hotelCarousel {
    max-width: 1000px;
    margin: auto;
}

#hotelCarousel img {
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* Dark overlay for better caption visibility */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

/* Caption Styling */
.carousel-caption {
    bottom: 20%;
}

.carousel-caption h3 {
    font-size: 28px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 16px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #hotelCarousel img {
        height: 300px;
    }

    .carousel-caption h3 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}

.why-choose-us {
    background-color: var(--light-bg);
}

.feature-box {
    padding: 20px;
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h5 {
    font-weight: bold;
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 14px;
    color: var(--black);
}

.about_banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/swimming.jpeg") center 45%/cover no-repeat;
    color: var(--white);
    text-align: center; 
    padding: 60px 20px;
    min-height: 40vh;
    width: 100%;
}

.about_banner h2 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 50px;
}

.about_banner p {
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto; 
}


.about_details {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.about_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.about_row.reverse {
    flex-direction: row-reverse;
}

.about_text {
    flex: 1;
    font-size: 16px;
}

.about_image {
    flex: 1;
}

.about_image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.room{
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact_banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/face2.jpeg") center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.contact_banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 50px;
}

.contact_banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.contact_form {
    background-color: var(--white);
    padding: 30px 20px;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.2);
}

.contact_form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.btn.btn-primary {
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    font-size: 16px;
}
.btn.btn-primary:hover {
    background-color: var(--accent-yellow); 
}


.contact-info_container {
    padding: 60px 20px;
    background: var(--white);
    text-align: center;
}

.contact-info_container h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.contact_info {
    min-width: 220px;
}

.contact_info a {
    color: var(--black);
    font-weight: bold;
}

.contact_info a:hover {
    color: var(--accent-yellow);
}

.contact_info i {
    color: var(--primary-color);
    font-size: 22px;
    margin-right: 8px;
}

.social-icon i {
    color: var(--primary-color);
    font-size: 26px;
    margin: 8px;
    transition: 0.3s ease;
}

.social-icon i:hover {
    color: var(--accent-yellow);
    transform: scale(1.2);
}


footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 25px 10px;
    margin-top: 40px;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    position: absolute;
    right: 20px;
    top: 30px;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    margin: 4px 0;
    transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/*TABLET AND MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        background-color: var(--primary-color);
        margin-top: 15px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    
    .about_row,
    .about_row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about_row {
        margin-bottom: 40px;
    }

    .about_text {
        font-size: 14px;
    }

    
    .contact-row {
        flex-direction: column;
        align-items: center;
    }

    footer {
        font-size: 14px;
    }

    .contact_form {
        width: 90%;
    }
}

/* ROOMS PAGE STYLING */
.room_banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/faceroom.jpeg") center/cover no-repeat;
    color: var(--white);
    text-align: center; 
    padding: 60px 20px;
    min-height: 50vh;
    width: 100%;
}
.room_banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 50px;
}
.room_banner p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.rooms-container {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.room-card {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    max-width: 450px;
    height: 320px;
    object-fit: cover;
}

.room-content {
    flex: 1;
    padding: 30px;
}

.room-content h3 {
    color: #7b1e3a; /* faded maroon */
    margin-bottom: 10px;
}

.price {
    color: #2e7d32; /* green */ 
    font-weight: bold;
    margin-bottom: 15px;
}

.room-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.room-content ul li {
    margin-bottom: 6px;
}


.amenities-section {
    background: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.amenities-section h2 {
    color: #7b1e3a;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.amenity-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 30px;
    color: #2e7d32; /* green */
    margin-bottom: 15px;
}

.amenity-item h4 {
    margin-bottom: 10px;
    color: #7b1e3a;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #7b1e3a;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #2e7d32;
}

/* ROOMS PAGE RESPONSIVE DESIGN */
@media (max-width: 768px) {

    .room-card {
        flex-direction: column;
    }

    .room-card img {
        width: 100%;
        max-width: 100%;
        height: 250px;
    }

    .room-content {
        padding: 20px;
    }

    .amenities-section {
        padding: 40px 15px;
    }
}
