/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    background-color: #e9f5ec; /* Light green background */
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #044d29; /* Dark green background */
    padding: 10px 20px;
    color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px; /* Adjust logo size */
    max-height: 100px;
    width: auto;
}

/* Hamburger Button Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Navigation Menu */
.main-nav {
    flex: 1; /* Allows the nav to take up space between the logos */
    display: flex;
    justify-content: center; /* Center the navigation items */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.main-nav a:hover {
    background-color: #056d39; /* Slightly darker green for hover */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Responsive Header Layout */
@media (max-width: 768px) {
    .main-header {
        flex-direction: row; /* Maintain hamburger and logo order */
        justify-content: space-between; /* Space items on opposite sides */
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .logo-container {
        margin-left: auto; /* Push logo to the right */
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #044d29;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust for header height */
        left: 0;
        z-index: 1000;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav.active {
        display: flex;
    }
}

/* Footer Styles */
footer {
    background-color: #044d29; /* Match header background */
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #c7f9cc;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Content Section */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #044d29;
    font-weight: bold;
}

p {
    margin-bottom: 20px;
}

/* Button Styles */
.button {
    display: inline-block;
    background-color: #56ab2f; /* Vibrant green */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: #44a04e; /* Darker green for hover */
}

/* Form Styles */
form {
    background-color: #e9f5ec;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    background-color: #56ab2f;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

form button:hover {
    background-color: #44a04e;
}
       .social-links {
            margin-top: 20px;
        }

        .social-links a {
            margin: 0 10px;
            text-decoration: none;
            color: #fff;
        }

        .social-links a img {
            width: 32px;
            height: 32px;
            vertical-align: middle;
        }
/* Slider Section */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%; /* Full-width for the container */
    height: auto; /* Height adapts to the image */
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Full-width for the slider */
}

.slider-item {
    flex: 0 0 100%; /* Each slide takes full width */
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Allow height to adapt to content */
}

.slider-item img {
    width: 100%; /* Scale the width to fit the container */
    height: auto; /* Maintain aspect ratio */
}

/* Optional: Constrain the height of the slider on large screens */
.slider-container img {
    max-height: 800px; /* Limit the maximum height for very large screens */
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .slider-container img {
        max-height: 400px; /* Reduce height for smaller screens */
    }
}

/* Ensure no margin or padding in slider container and images */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    margin: 0; /* Remove any unwanted margin */
    padding: 0; /* Remove any unwanted padding */
}

.slider-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0; /* Ensure no extra margin */
    padding: 0; /* Ensure no extra padding */
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block; /* Ensures the image is treated as a block-level element */
    margin: 0; /* Remove any default margins from the image */
    padding: 0; /* Remove any default padding from the image */
}
.slider-item {
    display: flex;
    align-items: center; /* Center-align images vertically */
    justify-content: center; /* Center-align images horizontally */
    height: 100%; /* Ensure container height matches the slider height */
}

.slider-item img {
    max-height: 100%; /* Prevent images from exceeding the slider height */
}

/* Gallery Section */
.gallery-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-section h2 {
    color: #044d29;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-section p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-items: center;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images scale nicely */
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1); /* Smooth zoom-in effect on hover */
}


/* Activities Section */
.activities-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.activities-section h2 {
    color: #044d29; /* Dark green */
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.activities-section .intro-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-items: center;
    align-items: start;
}

.activity-item {
    background-color: #e9f5ec;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.activity-item:hover {
    transform: scale(1.05); /* Subtle zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.activity-item img {
    width: 100%; /* Fully responsive images */
    height: 200px; /* Consistent image height */
    object-fit: cover; /* Ensures the image scales properly */
    display: block;
}

.activity-item h3 {
    color: #044d29; /* Dark green for activity titles */
    margin: 15px;
    font-size: 1.5rem;
}

.activity-item p {
    color: #555;
    font-size: 1rem;
    margin: 0 15px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .activities-section h2 {
        font-size: 1.8rem;
    }

    .activities-section .intro-text {
        font-size: 1rem;
    }

    .activity-item img {
        height: 150px; /* Adjust image height for smaller screens */
    }
}


/* Packages Section */
.packages-section {
    padding: 40px 20px;
    background-color: #e9f5ec;
    text-align: center;
}

.packages-section h2 {
    color: #044d29; /* Dark green */
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.packages-section .intro-text {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-items: center;
    align-items: start;
}

.package-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.package-item:hover {
    transform: scale(1.05); /* Subtle zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.package-item img {
    width: 100%; /* Fully responsive images */
    height: 200px; /* Consistent image height */
    object-fit: cover; /* Ensures the image scales properly */
    display: block;
}

.package-item h3 {
    color: #ffffff; /* Dark green for package titles */
    margin: 15px;
    font-size: 1.5rem;
}

 
.package-item .price {
    color: #e6a206; /* Highlight the price in red */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-section h2 {
        font-size: 1.8rem;
    }

    .packages-section .intro-text {
        font-size: 1rem;
    }

    .package-item img {
        height: 150px; /* Adjust image height for smaller screens */
    }
}
/* Contact Section */
.contact-section {
    padding: 40px 20px;
    background-color: #e9f5ec;
    text-align: center;
}

.contact-section h2 {
    color: #044d29;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-section a {
    color: #044d29;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Map Styling */
.map-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

form input, 
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #044d29;
    box-shadow: 0 0 5px rgba(4, 77, 41, 0.5);
}

form button {
    background-color: #044d29;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

form button:hover {
    background-color: #056d39;
}

/* Responsive Design */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    form input, 
    form textarea {
        font-size: 1rem;
    }
}
.slider-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item img {
    width: 100%;
    display: block;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent background */
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover,
button.next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* darker background on hover */
}

/* CSS for Flip Effect */
.packages-grid {
    display: flex;
    gap: 30px; /* Increased gap between package items */
    justify-content: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.package-item {
    width: 350px; /* Consistent width */
    height: 630px; /* Consistent height */
    perspective: 1000px; /* Creates the 3D space for the flip */
    margin-bottom: 30px; /* Adds space below for wrapping */
}

.package-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d; /* Ensures the 3D effect */
    transition: transform 0.6s ease;
}

.package-item:hover .package-inner {
    transform: rotateY(180deg); /* Flips the item */
}

.package-front, .package-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden; /* Hides the back face when not flipped */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Ensures even spacing for content */
    text-align: center;
/*    padding: 20px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-sizing: border-box; /* Includes padding in height calculation */
}

.package-front {
    background-color: #f9f9f9;
    color: #333; /* Default text color for the front */
}

.package-back {
    background-color: #044d29; /* Dark green */
    color: white; /* White text color for the back */
    transform: rotateY(180deg); /* Positions the back face for the flip */
}

.package-front img {
    max-width: 100%; /* Adjusted for proper spacing */
    height: auto;
    border-radius: 10px;
  /*  margin-bottom: 10px; */
}

.package-front h3, .package-back h3 {
    margin: 10px 0;
    font-size: 1.4em;
    font-weight: bold;
}

.package-front p, .package-back p {
    margin: 8px 0;
    line-height: 1.6; /* Better readability */
    font-size: 1em;
}

.price {
    font-size: 1.2em;
    font-weight: bold;
    color: #d35400; /* Highlighted price */
}
ul {
    text-align: left;
    list-style-type: disc; /* Optional: makes sure bullet points are shown */
    margin-left: 20px; /* Adjusts indentation if needed */
}
/* Activities Section */
.activities-section {
    padding: 40px 20px;
    background-color: #e9f5ec;
    text-align: center;
}

.activities-section h2 {
    color: #044d29; /* Dark green */
    font-size: 2rem;
    margin-bottom: 20px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.activity-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.activity-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.activity-media img,
.activity-media iframe {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-details {
    padding: 15px;
}

.activity-details h3 {
    color: #044d29;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.activity-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.activity-details .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e6a206; /* Highlight prices in red */
}

/* Floating WhatsApp Button Container */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Adjust distance from the bottom */
    right: 15px; /* Adjust distance from the right */
    display: flex;
    flex-direction: column; /* Stack the icon and text */
    align-items: center; /* Center the text and icon */
    z-index: 1000;
}

/* WhatsApp Icon */
.whatsapp-float a img {
    width: 60px; /* Icon size */
    height: 60px;
    border-radius: 50%; /* Circular icon */
    background-color: #25d366; /* WhatsApp green */
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects */
.whatsapp-float a img:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Text Styling */
.whatsapp-float .whatsapp-text {
    margin-top: 5px; /* Space between icon and text */
    font-size: 14px;
    font-weight: bold;
    color: #25d366; /* WhatsApp green */
    text-align: center;
}
.success-message {
    color: green;
    font-weight: bold;
    margin: 20px 0;
}

.error-message {
    color: red;
    font-weight: bold;
    margin: 20px 0;
}
/* Floating Google Maps Button - Left Side */
.google-maps-float-left {
    position: fixed;
    bottom: 20px; /* Adjust distance from the bottom */
    left: 15px; /* Adjust distance from the left */
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center; /* Center-align text and icon */
    z-index: 1000;
    text-decoration: none;
}

.google-maps-float-left img {
    width: 60px; /* Icon size */
    height: 60px;
    border-radius: 50%; /* Circular button */
    background-color: #ffffff; /* Google Maps white */
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-maps-float-left img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.google-maps-float-left .google-text {
    margin-top: 5px; /* Space between icon and text */
    font-size: 14px;
    font-weight: bold;
    color: #4285F4; /* Google Maps blue */
    text-align: center;
}
.success-message {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
}

.error-message {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
}
/* Align reCAPTCHA properly */
.g-recaptcha {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    margin: 20px 0; /* Add spacing above and below */
    align-items: center; /* Center vertically if needed */
}
