body {
              font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;

        }

                /* Navigation */
        #barnav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: linear-gradient(135deg, rgba(25, 25, 112, 0.98), rgba(101, 67, 33, 0.98)); /* Dark blue to brown */
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        #barnav.scrolled {
            padding: 8px 0;
            background: linear-gradient(135deg, rgba(25, 25, 112, 0.95), rgba(101, 67, 33, 0.95)); /* Dark blue to brown */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        
        .navbar-brand {
            font-size: 1.6rem !important;
            font-weight: 700 !important;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
            color: #40E0D0 !important; /* Turquoise */
        }

        .navbar-brand i {
            color: #40E0D0; /* Turquoise */
            margin-right: 8px;
            font-size: 1.4rem;
        }

        
        .navbar-nav .nav-link {
            position: relative;
            font-weight: 600 !important;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(135, 206, 250, 0.15); /* Light blue background */
            color: #40E0D0 !important; /* Turquoise */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #40E0D0, #87CEEB); /* Turquoise to light blue */
            transform: translateX(-50%);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .navbar-nav .nav-link:hover::before {
            width: 80%;
        }

        /* Mobile toggle button */
        .navbar-toggler {
            border: none !important;
            padding: 6px 10px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(64, 224, 208, 0.25); /* Turquoise */
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

        /* Mobile menu styling */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: linear-gradient(135deg, rgba(25, 25, 112, 0.98), rgba(101, 67, 33, 0.98)); /* Dark blue to brown */
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(20px);
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
            
            .navbar-nav .nav-link::before {
                display: none;
            }
        }



        /* Header with background image */
        header {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(25, 25, 112, 0.6), rgba(101, 67, 33, 0.6)), /* Dark blue to brown overlay */
                        url('https://a0.muscache.com/im/pictures/miso/Hosting-1239886053054393795/original/8fe9d6f9-8186-4347-b6c7-39acbcab2cf0.jpeg?im_w=1200');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        header h3 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        header p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

                /* Welcome section */
        #welcome {
            background-color: #191970; /* Dark blue */
            color: white;
            padding: 60px 0;
            text-align: center;
            overflow: hidden;
        }

        #welcome .container {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        #welcome .container.animate {
            opacity: 1;
            transform: translateY(0);
        }

        #welcome p {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }



        
        /* Room image section */
        .room-section {
            padding: 60px 0;
            background-color: #F5F5DC; /* Cream/beige */
        }

        .room-section img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* About section */
        #about {
            padding: 60px 0;
            background-color: white;
        }

        #textt p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #654321; /* Brown text */
            margin-bottom: 2rem;
        }

        #picture img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

@media (max-width: 575px) {
    #textt {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #picture {
        margin-top: 15px;
        width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (max-width: 767px) {
    #textt {
        margin-bottom: 18px;
    }

    #picture {
        margin-top: 18px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
    #textt {
        margin-bottom: 22px;
    }

    #picture {
        margin-top: 22px;
    }
}



        /* Accommodation gallery */
        #accomodationgallery {
            background-color: #F5F5DC; 
            padding: 60px 0;
            text-align: center;
            color: black
        }

        .gallery-item {
            margin-bottom: 30px;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .gallery-item h5 {
            color: black;
            font-weight: bold;
        }

       /* Team section */
        #team {
            padding: 60px 0;
            background-color: #F5F5DC; /* Cream/beige */
        }

        #team h1 {
            text-align: center;
            margin-bottom: 50px;
            color: #191970; /* Dark blue */
            font-weight: bold;
        }

        .team-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-left: 4px solid #40E0D0; /* Turquoise accent */
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(64, 224, 208, 0.2); /* Turquoise shadow */
        }

        .team-card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }




        /* accomodation header */
#accomodationHeader {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(25, 25, 112, 0.6), rgba(101, 67, 33, 0.6)), /* Dark blue to brown overlay */
                        url('../images/accomodations.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        #accomodationHeader h3 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }



         /* testimonials header */
#testimonialsHeader {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(25, 25, 112, 0.6), rgba(135, 206, 250, 0.6)), /* Dark blue to light blue overlay */
                        url('../images/happy.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        #testimonialsHeader h3 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }



        /* activities header */
#activitiesHeader {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(64, 224, 208, 0.6), rgba(101, 67, 33, 0.6)), /* Turquoise to brown overlay */
                        url('../images/victoriafalls.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        #activitiesHeader h3 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }


                /* Activities section */
        #activities {
            padding: 60px 0;
            background-color: white;
        }

        #activities h1 {
            text-align: center;
            margin-bottom: 50px;
            color: #191970; /* Dark blue */
            font-weight: bold;
        }

        .activity-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid rgba(64, 224, 208, 0.2); /* Turquoise border */
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .activity-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(64, 224, 208, 0.15); /* Turquoise shadow */
        }

        .activity-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #40E0D0, #87CEEB); /* Turquoise to light blue */
        }

        .activity-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .activity-content h4 {
            color: #191970; /* Dark blue */
            font-weight: bold;
            font-size: 1.3rem;
        }

        .activity-type {
            color: #40E0D0; /* Turquoise */
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .activity-content p {
            color: #654321; /* Brown text */
            line-height: 1.6;
        }

       



        /* Footer */
        footer {
            background-color: #191970; /* Dark blue */
            color: white;
            padding: 40px 0;
        }

        /* Button customizations */
        .btn-danger {
            background-color: #40E0D0; /* Turquoise */
            border-color: #40E0D0;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 25px;
        }

        .btn-danger:hover {
            background-color: #20B2AA; /* Darker turquoise */
            border-color: #20B2AA;
        }

        .btn-outline {
            border: 2px solid #191970; /* Dark blue */
            color: #191970;
            background: transparent;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background-color: #191970; /* Dark blue */
            color: white;
        }

        .btn-secondary {
            background-color: #654321; /* Brown */
            border-color: #654321;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 25px;
        }

        .btn-secondary:hover {
            background-color: #8B4513; /* Lighter brown */
            border-color: #8B4513;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            header h3 {
                font-size: 2.5rem;
            }
            
            header p {
                font-size: 1.2rem;
            }
            
            #welcome p {
                font-size: 2rem;
            }
        }



                /* Testimonials section */
        #testimonials {
            padding: 60px 0;
            background: linear-gradient(135deg, #F5F5DC 0%, #E6E6FA 100%); /* Cream to light lavender */
        }

        #testimonials h1 {
            text-align: center;
            margin-bottom: 50px;
            color: #191970; /* Dark blue */
            font-weight: bold;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid rgba(64, 224, 208, 0.2); /* Turquoise border */
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(64, 224, 208, 0.15); /* Turquoise shadow */
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-header img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .testimonial-info h5 {
            margin: 0;
            color: #191970; /* Dark blue */
            font-weight: bold;
            font-size: 1.1rem;
        }

        .guest-location {
            margin: 2px 0 8px 0;
            color: #654321; /* Brown */
            font-size: 0.9rem;
        }

        .rating {
            color: #40E0D0; /* Turquoise */
            font-size: 0.9rem;
        }

        .testimonial-content {
            position: relative;
            padding-left: 20px;
        }

        .quote-icon {
            position: absolute;
            left: 0;
            top: 0;
            color: #40E0D0; /* Turquoise */
            opacity: 0.3;
            font-size: 1.5rem;
        }

        .testimonial-content p {
            color: #654321; /* Brown text */
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .testimonial-date {
            color: #87CEEB; /* Light blue */
            font-size: 0.85rem;
            font-weight: 500;
        }



                /* About content sections */
        .about-section {
            padding: 60px 0;
        }

        .section-title {
            color: #191970; /* Dark blue */
            font-weight: bold;
            margin-bottom: 2rem;
            text-align: center;
        }

        .story-section {
            background-color: white;
        }

        .mission-section {
            background-color: #F5F5DC; /* Cream/beige */
        }

        .values-section {
            background-color: white;
        }

        .location-section {
            background-color: #F5F5DC; /* Cream/beige */
        }

        /* Story content */
        .story-content {
            font-size: 1.1rem;
            color: #654321; /* Brown text */
            text-align: justify;
        }

        .story-image {
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Mission and vision cards */
        .mission-card, .vision-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            height: 100%;
            border-left: 5px solid #40E0D0; /* Turquoise accent */
        }

        .mission-card h3, .vision-card h3 {
            color: #191970; /* Dark blue */
            margin-bottom: 1.5rem;
            font-weight: bold;
        }

        .mission-card .icon, .vision-card .icon {
            font-size: 3rem;
            color: #40E0D0; /* Turquoise */
            margin-bottom: 1rem;
        }

        /* Values grid */
        .value-item {
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
        }

        .value-icon {
            background: linear-gradient(135deg, #191970, #40E0D0); /* Dark blue to turquoise */
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3); /* Turquoise shadow */
        }

        .value-item h4 {
            color: #191970; /* Dark blue */
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Statistics section */
        .stats-section {
            background: linear-gradient(135deg, #191970, #654321); /* Dark blue to brown */
            color: white;
            padding: 60px 0;
            margin: 60px 0;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Google Maps section */
        .map-container {
            height: 450px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .map-info {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            height: 100%;
            border-left: 4px solid #40E0D0; /* Turquoise accent */
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-item i {
            color: #191970; /* Dark blue */
            width: 25px;
            margin-right: 10px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }


        /* misc */

        .error-message, .no-activities {
            text-align: center;
            padding: 3rem;
            color: #654321; /* Brown text */
        }

        .error-message h2, .no-activities h2 {
            color: #40E0D0; /* Turquoise */
            margin-bottom: 1rem;
        }

        .loading-spinner {
            text-align: center;
            padding: 4rem 0;
        }

        .load-more-section {
            text-align: center;
            margin: 2rem 0;
        }

        .load-more-btn {
            background: linear-gradient(135deg, #87CEEB 0%, #40E0D0 100%); /* Light blue to turquoise */
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(64, 224, 208, 0.4); /* Turquoise shadow */
        }

        .load-more-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }