  :root {
        --forest-green: #2d5a27;
        --spring-green: #4a7c59;
        --leaf-green: #8cb369;
        --water-blue: #4d9de0;
        --sky-blue: #a1c6ea;
        --earth-brown: #8b5a2b;
        --sand: #e6ccb2;
        --sunset: #e76f51;
        --deep-blue: #264653;
        --light-blue: #8ecae6;
        --resort-primary: #2d5a27;
        --resort-accent: #4a7c59;
        --white: #fff;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f5f9f8;
        margin: 0;
        padding: 0;
        color: #333;
        /*overflow-x: hidden;*/
    }

    /* Nature-inspired elements */
    .leaf-pattern {
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d5a27' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .water-pattern {
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234d9de0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* Navbar */
    .navbar {
        background-color: rgba(45, 90, 39, 0.95);
        padding: 1rem 0;
        transition: all 0.4s ease;
    }

    .navbar.sticky {
        background-color: rgba(45, 90, 39, 0.98);
        backdrop-filter: blur(6px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .navbar-brand {
        font-weight: 600;
        font-size: 1.6rem;
        color: var(--sand);
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        margin-left: 15px;
        font-weight: 500;
        transition: 0.3s;
        position: relative;
    }

    

    .navbar-nav .nav-link:hover {
        color: var(--sand) !important;
    }
    
    .navbar .navbar-nav .nav-link.active {
        color: var(--sand) !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--sand);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
    
    .navbar .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .btn-resort {
        background-color: var(--white);
        color: var(--resort-primary);
        border-radius: 30px;
        padding: 0.5rem 1.5rem;
        transition: background-color 0.3s;
        border: none;
    }

    .btn-resort:hover {
        background-color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(rgba(38, 70, 83, 0.6), rgba(0, 0, 0, 0.5)),
            url('../photo/g1.jpg') center/cover no-repeat;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 2rem;
        position: relative;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, #f5f9f8, transparent);
    }

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        margin-bottom: 1.5rem;
    }

    .hero-section p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .btn {
        margin: 0.3rem;
        border-radius: 30px;
        padding: 10px 25px;
        transition: 0.3s;
    }

    .btn-outline-light {
        border-radius: 30px;
        padding: 10px 25px;
        transition: 0.3s;
    }

    .btn-outline-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }

    /* About Section */
    #about {
        background-color: #ffffff;
        padding: 5rem 0;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
        color: var(--resort-accent);
        font-weight: 600;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background: linear-gradient(to right, var(--resort-primary), var(--leaf-green));
        bottom: -10px;
        left: 25%;
        border-radius: 3px;
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-box {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        padding: 2rem;
        max-width: 250px;
        transition: transform 0.3s;
        text-align: center;
        border-top: 4px solid var(--resort-primary);
    }

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        font-size: 2.8rem;
        color: var(--resort-primary);
        margin-bottom: 1rem;
    }

    .feature-title {
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    /* Nature elements */
    .nature-badge {
        background-color: var(--leaf-green);
        color: white;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 2.3rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

        .features-grid {
            flex-direction: column;
            align-items: center;
        }

        .navbar-nav .nav-link {
            margin-left: 0;
            padding: 10px 0;
        }

        .section-title::after {
            width: 70%;
            left: 15%;
        }
    }

    @media (max-width: 576px) {
          .navbar.sticky {
    right: 0;
  }
        .hero-section h1 {
            font-size: 2rem;
        }

        .btn-resort, .btn-outline-light {
            display: block;
            width: 100%;
            margin-bottom: 10px;
        }

        .hero-section .btn {
            margin-right: 0 !important;
        }
        
    }
