/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1fe453;
    background-color: #f4f4f4;

    
}

header {
    background: #1aa9ab;
    color: #F5F5DC;
    padding: 15px 0;
    position: relative;
}

header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 28px;
    margin-right: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 15px;
    display: block;
    
}

nav ul li a:hover {
    background: #DAA520;
    border-radius: 5px;
    width:fit-content;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.menu-toggle .bar {
    background: #ffffff;
    height: 4px;
    width: 25px;
    margin: 4px 0;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1aa9ab;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: large;
        font-weight: bold;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Weather Widget Styles */
#weather-widget {
    margin: 20px auto;
    text-align: center;
}

.weatherwidget-io {
    display: inline-block;
    font-size: 16px;
}

.weatherwidget-io a {
    color: #000;
    text-decoration: none;
}

.weatherwidget-io a:hover {
    color: #1aa9ab;
}
.leaflet-control-zoom {
    position: absolute;
    bottom: -400px;/* Adjust this value to move up/down */
    left: 10px; /* Adjust this value to move left/right */
    z-index: 1000; /* Ensure it appears above other elements */
}
/* Footer styles */
footer {
    background-color: #1aa9ab; /* Background color of the footer */
    color: #F5F5DC; /* Text color */
    padding: 10px 0; /* Reduced padding for a smaller footer */
    text-align: center; /* Center-align the text */
    position: relative; /* Fix the footer at the bottom */
    bottom: 0; /* Align to the bottom of the viewport */
    left: 0; /* Align to the left edge */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensures footer is above other content */
    font-size: 12px; /* Smaller font size */
}

/* Container within the footer */
footer .container {
    width: 90%; /* Width of the container */
    max-width: 1200px; /* Maximum width */
    margin: auto; /* Center-align the container */
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align items horizontally */
}

/* Footer paragraph */
footer p {
    margin: 0; /* Remove default margin */
    font-size: 12px; /* Smaller font size */
}

/* Footer links styling */
footer .footer-links {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    margin: 5px 0 0; /* Reduced top margin */
    display: flex; /* Flexbox for layout */
    gap: 10px; /* Space between links */
}

/* Footer list items */
footer .footer-links li {
    display:flex; /* Display list items in a line */
}

/* Footer links */
footer .footer-links a {
    color: #F5F5DC; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 12px; 
    display: flex;/* Smaller font size */
}

/* Hover effect for links */
footer .footer-links a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive adjustments for the footer */
@media (max-width: 768px) {
    footer .footer-links {
        flex-direction: column; /* Stack links vertically on small screens */
        gap: 5px; /* Reduced space between links */
    }

    footer .footer-links li {
        margin-bottom: 5px; /* Reduced margin below list items */
    }
}
/* Add a smooth transition effect to the slider */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Subtle shadow for depth */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom space */
}

/* Styling for navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    transition: background-color 0.3s ease;
    z-index: 1000; /* Ensure buttons are above the slider */
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
