   :root {
            --primary: #1a4f3a;
            --primary-light: #2d6b4f;
            --accent: #d4a574;
            --accent-light: #e8c49a;
            --dark: #1a2e23;
            --light: #f8f6f2;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f7fafc;
            --gray-200: #edf2f7;
            --gray-300: #e2e8f0;
            --gray-400: #cbd5e0;
            --gray-500: #a0aec0;
            --gray-600: #718096;
            --gray-700: #4a5568;
            --gray-800: #2d3748;
            --gray-900: #1a202c;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
        }

        .containers  {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

         .all {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .logo i {
            font-size: 2rem;
            color: var(--primary);
        }

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

        .main-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            letter-spacing: -0.025em;
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        .year-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: var(--shadow);
        }

        .season-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            background: var(--white);
            border-radius: 12px;
            padding: 0.5rem;
            box-shadow: var(--shadow);
            max-width: 500px;
            margin-left: 445PX;
            /* margin-right: auto; */
        }

        .season-btn {
            flex: 1;
            padding: 0.875rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--gray-600);
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }

        .season-btn.active {
            background: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .season-btn:hover:not(.active) {
            background: var(--gray-100);
            color: var(--primary);
        }

        .season-info {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .season-dates {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--primary);
        }

        .room-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .room-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            height: fit-content;
        }

        .room-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .room-card.single-room .room-header {
            background-image: url('../img/house.JPG');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: scroll;
                box-sizing: border-box; 
        }

        .room-card.double-room .room-header {
  background-image: url('../img/bed.JPG');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: scroll;
                box-sizing: border-box;        }

        .room-card.family-room .room-header {
                background-image: url('../img/camp.JPG');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: scroll;
                box-sizing: border-box;
        }

        .room-card.luxury-room .room-header {
  background-image: url('../img/in.JPG');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: scroll;
                box-sizing: border-box;        }

        .room-header {
            color: var(--white);
            padding: 1.5rem 1rem;
            text-align: center;
            position: relative;
        }

        .room-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .room-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff !important;
        }

        .room-description {
            font-size: 0.8rem;
            opacity: 0.9;
            line-height: 1.4;
            color: #fff !important;
        }

        .room-body {
            padding: 1.5rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .price-row:last-of-type {
            border-bottom: none;
            margin-bottom: 1rem;
        }

        .price-label {
            font-weight: 500;
            color: var(--gray-600);
            font-size: 0.875rem;
        }

        .price-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price-unit {
            font-size: 0.7rem;
            color: var(--gray-500);
            font-weight: 400;
            display: block;
            margin-top: 0.25rem;
        }

        .features-accordion {
            border-top: 1px solid var(--gray-200);
            padding-top: 1rem;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 0.75rem 0;
            font-weight: 600;
            color: var(--gray-700);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        .accordion-header:hover {
            color: var(--primary);
        }

        .accordion-icon {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .accordion-content.active {
            max-height: 300px;
        }

        .accordion-header.active .accordion-icon {
            transform: rotate(180deg);
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            padding-bottom: 0.5rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        .features-list li i {
            color: #10B981;
            font-size: 0.75rem;
        }

        .info-section {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-200);
        }

        .info-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
        }

        .info-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0;
        }

        .info-subtitle {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin: 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .info-column h4 {
            color: var(--primary);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-column h4 i {
            color: var(--accent);
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            padding: 0.5rem;
            background: var(--gray-50);
            border-radius: 6px;
            font-size: 0.875rem;
            color: var(--gray-700);
            line-height: 1.5;
        }

        .info-list li i {
            color: #10B981;
            margin-top: 0.125rem;
            font-size: 0.875rem;
            flex-shrink: 0;
        }

        .info-notice {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
            border-radius: 8px;
            border-left: 4px solid #F59E0B;
        }

        .info-notice p {
            margin: 0;
            font-size: 0.875rem;
            color: var(--gray-800);
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .room-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

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

            .season-selector {
                flex-direction: column;
                gap: 0.25rem;
            }

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

        @media (max-width: 640px) {
            .room-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .room-header {
                padding: 1rem;
            }

            .room-body {
                padding: 1rem;
            }

            .room-name {
                font-size: 1rem;
            }

            .room-description {
                font-size: 0.75rem;
            }

            .price-value {
                font-size: 1rem;
            }

            .price-unit {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 480px) {
            .room-grid {
                gap: 0.75rem;
            }

            .room-header {
                padding: 0.75rem;
            }

            .room-body {
                padding: 0.75rem;
            }

            .room-icon {
                font-size: 1.5rem;
            }

            .room-name {
                font-size: 0.9rem;
            }

            .room-description {
                font-size: 0.7rem;
            }

            .price-value {
                font-size: 0.9rem;
            }

            .price-label {
                font-size: 0.75rem;
            }

            .features-list li {
                font-size: 0.7rem;
            }
        }
       
.all {
    width: 100%;
    max-width: 2200px;
    /* min-height: 100vh; */
    margin: 0;
    padding: 40px 20px;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    box-sizing: border-box;
}

 /* Hero Section */
        .hero {
            height: 90vh;
            min-height: 600px;
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1600x900/?safari,serengeti');
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .hero-content {
            max-width: 700px;
        }
        
        .hero-subtitle {
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .hero-title {
            font-size: 70px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .hero-description {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .button-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--white);
            border: none;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }
        
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--dark);
            transform: translateY(-3px);
        }
        

/* Responsive padding for different screen sizes */
@media (max-width: 768px) {
    .all {
        padding: 20px 15px;
    }
}

@media (min-width: 1200px) {
    .all {
        padding: 60px 40px;
    }
}