/* ===== NavBar ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

/* Root Variables */
:root {
    --body-color: #E4E9F7;
    --nav-color: #204102;
    --text-color: #FFF;
    --sidebar-bg: #142a00;
    --sidebar-hover: #5b5c00;
}

body {
    background-color: var(--body-color);
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--nav-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* Logo Section */
.logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-img {
    width: 250px;
    height: 90px;
    object-fit: cover;
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex: 1;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 12px;
    padding: 10px;
    gap: 10px; /* Space between icon and text */
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.nav-links li a:hover {
    opacity: 0.8;
}

/* Icon Styling */
.nav-links .icon {
    width: 20px;
    height: 20px;
    transform: translateY(20px); /* Start below the link */
    opacity: 0; /* Initially hidden */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links .icon.active {
    transform: translateY(0); /* Move into view */
    opacity: 1; /* Fully visible */
}

.nav-links .icon.hidden {
    transform: translateY(20px);
    opacity: 0;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.button-book-now {
    font-size: 1rem;
    font-weight: bold;
    color: #2F411E;
    background-color: #FFFBED;
    padding: 8px 50px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.button-book-now::first-letter {
    text-transform: uppercase;
}

.button-book-now:hover {
    background-color: #FFEAAA;
    color: #2F411E;
}

.button-book-now:active {
    background-color: #FFD247;
    color: #2F411E;
}

.button-contact {
    font-size: 1rem;
    font-weight: bold;
    color: #FFFBED;
    background-color: transparent;
    padding: 8px 50px;
    border: 2px solid #FFFBED;
    border-radius: 20px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    text-transform: none;
}

.button-contact::first-letter {
    text-transform: uppercase;
}

.button-contact:hover {
    border-color: #FFEAAA;
    color: #FFEAAA;
}

.button-contact:active {
    border-color: #FFD247;
    color: #FFD247;
}

/* Laptop Screen (min-width: 791px) */
@media (min-width: 791px) {
    .sidebarOpen {
        display: none; /* Hide sidebar toggle */
    }

    .menu {
        display: none; /* Hide sidebar menu */
    }
}

/* Smaller Screens (max-width: 790px) */
@media (max-width: 790px) {
    .nav-links {
        display: none; /* Hide links */
    }

    .nav-buttons {
        display: none; /* Hide buttons */
    }

    .logo-container {
        margin-right: 300px; /* Push logo to the left */
    }

    .nav-bar {
        justify-content: space-between;
    }

    .sidebarOpen {
        display: block;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-style: normal;
    }

    .menu {
        position: fixed;
        height: 100%;
        width: 300px;
        left: -300px;
        top: 0;
        padding: 20px;
        background-color: var(--sidebar-bg);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        z-index: 100;
        transition: all 0.4s ease;
        font-family: "Poppins", sans-serif;
    }

    nav.active .menu {
        left: 0; /* Slide in */
    }

    .menu .logo-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-toggle .siderbarClose {
        font-size: 24px;
        cursor: pointer;
        color: var(--text-color);
    }

    .menu ul {
        padding-top: 30px;
    }

    .menu ul li {
        list-style: none;
        margin-top: 20px;
    }

    .menu ul li a {
        font-size: 17px;
        font-weight: 500;
        color: var(--text-color);
        text-decoration: none;
        padding: 10px 15px;
        display: block;
        border-radius: 5px;
    }

    .menu ul li a:hover {
        background-color: var(--sidebar-hover);
    }
}
/*------------------------------------------------grids-----------------------------------------*/
body {
    background-color: #FFF1C6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
}

.container {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: 2fr 2fr; /* Default: side-by-side layout */
    gap: 10px;
    padding: 10px;
    border-radius: 05px;
    width: 98vw;
    max-width: 1200px;
    height: 410px; /* Default height */
    margin: 0 auto;
    margin-top: 100px;
}

.big-box {
    background-color: #e6e6e6;
    height: 600px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    
}

.small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns for small boxes */
    grid-template-rows: 1fr 1fr; /* 2 rows for small boxes */
    gap: 10px;
}

.small-box {
    background-color: #e6e6e6;
    height: 295px;
}

/* Opposite Corner Radius */
.small-box:first-child {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.small-box:nth-child(2) {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.small-box:nth-child(3) {
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
}

.small-box:nth-child(4) {
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
}

.label {
    font-size: 18px;
    font-weight: bold;
    color: #f5f5dc;
    margin-top: 20px;
}

/* FIX FOR LARGE SCREENS */
@media (min-width: 1024px) {
    .grid {
        width: 100vw; /* Full screen width */
        height: 500px;
    }
    h2 {
        font-size: 40px;
        margin-top: 85px; /* Reduces top space */
    }
}

/* FIX FOR SMALL SCREENS */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr; /* Single column to stack vertically */
        grid-template-rows: auto auto; /* Two rows: big-box, then small-grid */
        height: auto; /* Dynamic height to fit content */
        width: auto; /* Slightly narrower for better mobile fit */
    }

    .big-box {
        border-radius: 15px; /* Consistent radius when stacked */
        min-height: auto; /* Ensure it’s visible */
    }

    .small-grid {
        display: grid; /* Explicitly enforce grid display */
        grid-template-columns: 1fr 1fr; /* Keep 2x2 layout */
        grid-template-rows: 1fr 1fr;
        gap: 10px;
        min-height: auto; /* Ensure it’s visible */
    }

    .small-box {
        border-radius: 15px; /* Uniform radius for simplicity */
        min-height: 90px; /* Ensure each box is visible */
    }

    /* Reset specific corner overrides for simplicity */
    .small-box:first-child,
    .small-box:nth-child(2),
    .small-box:nth-child(3),
    .small-box:nth-child(4) {
        border-radius: 15px;
    }
}
        /*-------------------------------------------bed section----------------------------------*/
        body {
            background-color: #FEF9DC;
            margin: 0;
            padding: 0;
            text-align: center;
        }
        .container {
            width: 80%;
            margin: auto;
            padding: 30px 0;
        }
        h1 {
            font-size:30px;
            color: #204102;
            text-align: left;
            margin-top: 90px;
            font-family: "Poppins", sans-serif;
            font-weight: 800;
            font-style: bold;

        }
        h4 {
            color: #687D55;
            text-align: left;
            margin-top: 15px;
            font-family: "Poppins", sans-serif;
            font-weight: 200;
           font-style: normal;
           font-size: 20px;
        }
        h3 {
            text-align: left;
            font-size: 25px;
            margin-top: 40px;
            font-family: "Poppins", sans-serif;
            font-weight: 800;
           font-style: normal;
        }
        p {
            font-size: 19px;
            color: #333;
            line-height: 1.3;
            margin-bottom: 30px;
            margin-top: 20px;
            text-align: left;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
           font-style: normal;
        }
        .facilities {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            margin: 20px 10px;
            color: #6B581E;
            font-family: "Poppins", sans-serif;
            font-weight: 200;
           font-style: normal;
           font-size: 13px;
        }
        .facility {
            text-align: center;
        }
        .facility img {
            width: 30px;
            height: 30px;
        }
        .facility span {
            display: block;
            font-size: px;
            margin-top: 10px;
        }
        .book-now {
            display: block;
            width: 100%;
            background-color: #5b5c00;
            color: rgb(255, 255, 255);
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            border-radius: 30px;
            margin: 30px auto;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
        }
        
        @media (min-width: 1024px) {
            .facilities {
                gap: 180px;
            }
        } 
        @media (min-width: 480px) {
            .facilities {
                gap: 80px;
            }
        } 
        /*----------------------------------------services---------------------*/
        .houseboat-btn {
            display: inline-block;
            background-color: #5b5c00;
            color: white;
            padding: 10px 40px;
            border-radius: 20px;
            margin-top: 10px;
            text-decoration: none;
            font-size: 14px;
            margin-right: 230px;
        }
        .houseboat-btn:hover{
            color: #fffeb7;
        }
           
        
        @media (min-width: 1024px) {
            .houseboat-btn {
                display: block; /* Makes positioning easier */
                text-align: left; /* Aligns text inside the button */
                margin-left: 0; /* Moves it to the left */
                width: fit-content; /* Reduces the width to fit the text */
                padding: 10px 15px; /* Adjusts padding for a more compact look */
            }
        }
        .houseboat-image-placeholder {
            width: 350px;
            height: 250px;
            background-color: #ccc;
            border-radius: 15px 0 15px 0; /* Rounded on the left side */
            position: absolute;
            right:60px; /* Positions it on the right side of the screen */
            top: 320%;
            transform: translateY(-50%); /* Centers it vertically */
        }
    
        /* Responsive Design: Move Placeholder to Bottom on Small Screens */
@media (max-width: 1024px) {
    .houseboat-section {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center align content */
    }

    .houseboat-image-placeholder {
        position: static; /* Removes absolute positioning */
        transform: none;
        margin-top: 20px; /* Adds spacing above */
        border-radius: 25px 0 55px 0;
        width: 500px;
    }
}
.houseboat-title {
    font-size: 36px; /* Adjust size as needed */
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    color: #285300; /* Change color if needed */
    text-align: center; /* Center align the text */
    margin-bottom: 20px; /* Add space below */
}
/*---------------------------------------cards----------------------------------*/
.section {
    width: 100%;
    margin-bottom: 50px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.card-container {
    display: flex;
    flex-direction: row; /* Ensures row layout */
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap; /* Allows wrapping if necessary */
}

.feature-card, .service-card, .outdoor-card {
    width: 60px;
    height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: width 0.5s ease;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
  font-weight: 500;
  font-style: normal;

}
.feature-card.expanded, 
.service-card.expanded, 
.outdoor-card.expanded {
    width: 250px;
}
.feature-card ul, 
.service-card ul, 
.outdoor-card ul {
    list-style-type: none;
    padding: 20px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.feature-card.expanded ul, 
.service-card.expanded ul, 
.outdoor-card.expanded ul {
    opacity: 1;
}
/* Adjusted Spacing */
.feature-card ul li,
.outdoor-card ul li {
    margin-bottom: 40px;
}
.service-card ul li {
    margin-bottom: 13px;
}
h2 {
    margin: 15px 10px 10px;
    display: none;
    font-size: 20px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.service-card.expanded h2 {
    display: block;
}
.feature-card { background-color: #285300; color: white; }
.service-card { background-color: #7e7741; color: white; }
.outdoor-card { background-color: #2f3e1b; color: white; }

.button-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.feature-card button, 
.service-card button, 
.outdoor-card button {
    writing-mode: vertical-rl;
    width: 60px;
    height: 350px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background-color: #FFFBED;
    color: black;
    transition: all 0.5s ease;
    font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;

}
.service-card button {
    background-color: #809270;
    color: white;
}
.feature-card.expanded button, 
.service-card.expanded button, 
.outdoor-card.expanded button {
    writing-mode: horizontal-tb;
    width: 100%;
    height: 50px;
}
/* Align to the left on larger screens */
@media (min-width: 1024px) { 
    .section {
        justify-content: flex-start; /* Move cards to the left */
        padding-left: 50px; /* Add some left padding for spacing */
    }
}


body {
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    top: auto;
    margin-bottom: 40px;
    color: #5a4709;
    font-size: 2.5em;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.content-row {
    margin-bottom: 30px;
    background: #ffeebcf0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.row-heading {
    color: #8C7427;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
     display: block; /* Add this to override display: none; */
}

.content-list {
    padding-left: 20px;
    font-family: 'Poppins', sans-serif;
}

.content-list li {
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.content-list li:hover {
    color: #879f00;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #285300;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease;
}

.read-more:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-title { font-size: 2em; }
    .row-heading { font-size: 1.5em; }
    .content-row { padding: 15px; }
    body { padding: 10px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.5em; }
    .row-heading { font-size: 1.2em; }
}