/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: #076f03; /* Dark green background */
    color: white; /* White text color */
    padding: 20px 0; /* Padding for spacing */
    text-align: center; /* Center-align text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.logo {
    display: flex;
    justify-content: center; /* Center logo horizontally */
    width: 150px;
    left: 0;
    object-fit: contain;
}

header h1 {
    font-size: 2.5em; /* Larger font size for the main title */
    margin: 0; /* Remove default margin */
    font-weight: bold; /* Make title bold */
}

header nav {
    margin-top: 10px; /* Space between title and navigation */
}

nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 10px 0; /* Margin for spacing */
}

nav ul li {
    display: inline; /* Display items inline */
    margin: 0 15px; /* Space between navigation items */
}

nav ul li a {
    color: white; /* White text for links */
    text-decoration: none; /* Remove underline */
    font-weight: 600; /* Slightly bolder text */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

nav ul li a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #ffcc00; /* Change color on hover */
}

/* Activities Section */
#activities {
    padding: 20px;
    background: white; /* White background for activities */
    text-align: center; /* Center text in this section */
}

.attractions-container {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping to the next line */
    justify-content: center; /* Center cards horizontally */
    gap: 20px; /* Space between cards */
    margin-top: 20px; /* Top margin for spacing */
}

/* Individual Attraction Cards */
.attraction {
    position: relative; /* Set relative positioning */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white for contrast */
    border-radius: 8px;
    padding: 15px;
    width: 300px; /* Fixed width for attraction cards */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s; /* Animation on hover */
    z-index: 1; /* Ensure cards appear above video */
}

.attraction:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.attraction img {
    width: 100%;
    border-radius: 8px;
}

.attraction h3 {
    margin: 10px 0; /* Margin for heading */
}

.video-container {
    position: fixed; /* Use fixed to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Full viewport height */
    overflow: hidden; /* Prevent overflow issues */
    z-index: 0; /* Send video behind other content */
}

.video-index {
    min-width: 100%; /* Ensures video covers full width */
    min-height: 100%; /* Ensures video covers full height */
    object-fit: cover; /* Ensure video covers the container */
}

/* Responsive Design */
@media (max-width: 768px) {
    .attractions-container {
        flex-direction: column; /* Stack cards on smaller screens */
        align-items: center; /* Center cards */
    }

    .attraction {
        width: 90%; /* Adjust width for smaller screens */
    }
}

/* Footer */
.footer {
    background-color: #0c4c1c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer Logo */
.footer-logo {
    width: 150px; /* Set a fixed width for the logo */
    margin: 0 auto; /* Center the logo */
    text-align: center;
}

.footer-logo img {
    width: 100%; /* Make the logo responsive */
    height: auto;
    object-fit: contain;
}

/* Footer Contact */
.footer-contact {
    width: 35%;
}

.footer-contact h4 {
    margin-bottom: 10px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact li i {
    margin-right: 10px;
    font-style: normal;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
    width: 35%;
    text-align: right;
    margin-bottom: 0;
}

/* Responsive Footer Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        width: 100px; /* Adjust logo size for smaller screens */
        margin-bottom: 20px;
    }
    .footer-contact {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .footer-logo {
        max-width: 100px; /* Limit the width */
    }
    .footer-contact,
    .footer-logo,
    .footer-copyright {
        text-align: center; /* Center text for all footer sections */
    }
}
