/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: transparent;
    color: #000;
    padding: 10px 0;
}

.container0, .container{
    width: 80%;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Staatliches', Arial, sans-serif; /* Apply the Staatliches font */
}

.container{
    color:#000000
}

.logo {
    
    padding: 5px;
 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
   
    height: 50%;
  
    display: flex;
    align-items: center;
}

.logo .elephant {
    width: 55px;
    height: auto;
    margin-left: 5px;
}
.small-text {
    font-size: 20px; /* Change the size as needed */
    padding: 5px;
  }

nav {
    margin-left: auto;
}

nav ul.desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul.desktop-menu li {
    margin-left: 20px;
}

nav ul.desktop-menu li a {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
}

.mobile-menu-toggle {
    display: flex; /* Display flex to arrange bars horizontally */
    background-color: transparent;
  
    cursor: pointer;
    padding: 10px; /* Adjust padding as needed */
    position: absolute;
    right: -20px; /* Adjust the right position */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
}

.mobile-menu-toggle .bar {
    display: none; /* Inline-block to keep elements in a line */
    width: 25px; /* Width of each bar */
    height: 3px; /* Height of each bar */
    background-color: #000; /* Color of each bar */
    margin-right: 5px; /* Spacing between bars */
}

.mobile-menu-toggle .bar:last-child {
    margin-right: 0; /* Remove margin from the last bar */
}




.mobile-menu {
    display: none; /* Hide the mobile menu initially */
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background-color: #f4f4f4;
    position: absolute;
    top: 60px; /* Adjust as needed */
    right: 0;
    width: 200px;
 
    z-index: 10; /* Ensure the menu appears above other content */
}

.mobile-menu li {
    text-align: center;
    margin-bottom: 10px;
}

.mobile-menu li a {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

/* Media query for mobile */
@media screen and (max-width: 480px) {
    .desktop-menu {
        display: block; /* Hide the desktop menu on small screens */
        opacity: 0;
    }
    
    .container0 {
        display: flex; /* Use flexbox for better alignment control */
        justify-content: flex-start; /* Adjust alignment for smaller screens */
        width: 100%; /* Ensure container uses full width of the screen */
        padding: 0 10px; /* Add some padding to prevent overflow */
    }
    
    .mobile-menu-toggle {
        display: flex; /* Show the mobile menu toggle button on small screens */
        justify-content: center;
        align-items: center;
        background: #ccc;
        height: 35px; /* Maintain button size for better usability */
        width: 35px; /* Ensure toggle size is fixed */
        cursor: pointer;
        position: relative;
        z-index: 100; /* Ensure the toggle button is above other content */
    }
    
    .mobile-menu-toggle .bar {
        display: inline-block; /* Inline-block to keep elements in a line */
        width: 25px; /* Width of each bar */
        height: 15px; /* Height of each bar */
        background-color: #000; /* Color of each bar */
        margin-right: 5px; /* Spacing between bars */
    }
    
    .mobile-menu {
        display: none; /* Hide the mobile menu on small screens initially */
        position: absolute;
        top: 60px; /* Adjust as needed */
        right: 10px; /* Make sure it's within the viewport */
        width: 100%; /* Set width to 100% to avoid overflow */
        max-width: 200px; /* Limit max width */
        background-color: #f4f4f4;
        z-index: 10; /* Ensure the menu appears above other content */
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition for visibility */
        opacity: 0;
        transform: translateY(-10px); /* Start slightly above to slide down */
    }
    
    .mobile-menu.active {
        display: block; /* Show the mobile menu when active */
        opacity: 1;
        transform: translateY(0); /* Slide down to its position */
    }
    
    .mobile-menu li {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .mobile-menu li a {
        display: block;
        padding: 10px;
        color: #000;
        text-decoration: none;
    }


   
    .hero {
        padding: 10px; /* Adjust padding for smaller screens */
        text-align: center; /* Ensure text is centered */
    }
      
    .hero h2 {
        font-size: 1.5rem; /* Adjust font size for mobile */
         margin: 0; /* Remove any default margins */
    }


}




































/* Additional CSS */
header h1 {
    margin: 0;
    display: flex;
    align-items: center;
    background-color: #6b8e23; /* Swamp green background */
    padding: 10px; /* Add some padding for spacing */

    font-family: 'Staatliches', Arial, sans-serif; /* Apply the Staatliches font */
}

header h1 .elephant {
    width: 30px;
    height: auto;
    margin: 0 10px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    position: relative;
}

nav ul li a:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc; /* Gray background color */
    z-index: -1; /* Ensure the background appears behind the text */
}

.hero {
    background: #f4f4f4;
 
    height: 60px;
   
}


.hero button {
position: absolute;
top: 100px;
right: 20px;
}

footer {
    background-color: #6b8e23;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label, form input, form button {
    margin: 5px 0;
}

































/* Desktop styles for map and surrounding boxes */
.map {
    display: block;
    max-width: 100%; /* Adjusts width to the container's width */
    height: auto; /* Keeps the height proportional */
 
}

.map-key-info-container {
    position: relative;

}






.MonthYear-box {
    width: 100px;
    height: 30px;
    font-size: 25px;
   
    font-family: 'Staatliches', Arial, sans-serif;
    position: absolute;
    left: 70px;
    top: -70px;
}

.key-box {
    width: 50px;
    height: 50px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 1075px;
    top: 240px;
    fill: #f4f4f4;
}


.key-box2 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 900px;
    top: 600px;
    fill: #f4f4f4;
    opacity: 0;
}

.key-box3 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 1100px;
    top: 600px;
    fill: #f4f4f4;
}

.key-box4 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 600px;
    top: 600px;
    fill: #f4f4f4;
}

.key-box5 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 750px;
    top: 600px;
    fill: #f4f4f4;
}

.key-box6 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 350px;
    top: 1500px;
    fill: #f4f4f4;
}

.key-box7 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 550px;
    top: 1100px;
    fill: #f4f4f4;
}

.key-box8 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 1050px;
    top: 1300px;
    fill: #f4f4f4;
}

.key-box9 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 550px;
    top: 1300px;
    fill: #f4f4f4;
}

.key-box10 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 350px;
    top: 1300px;
    fill: #f4f4f4;
}

.key-box11 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 150px;
    top: 1100px;
    fill: #f4f4f4;
}

.key-box12 {
    width: 100px;
    height: 100px;
    padding: 10px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 150px;
    top: 1300px;
    fill: #f4f4f4;
}

.key-boxofficial {
    width: 100px;
    height: 100px;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 30px;
    position: absolute;
    left: 150px;
    top: 150px;
}


.info-boxes-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 30px;
    left: 150px;
}

.info-box1 {
    width: 100%;
    height: auto;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 25px;
    background-color: rgb(237, 0, 0);
    justify-content: center;
    align-items: center;
   
    
    display: block;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-box2 {
    width: 100%;
    height: auto;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 25px;
    background-color: rgb(232, 255, 26);
    
    justify-content: center;
    align-items: center;
    
}
.info-box3 {
    width: 100%;
    height: auto;
    font-family: 'Staatliches', Arial, sans-serif;
    font-size: 25px;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    
}

.larger-text {
    font-size: 25px;
    text-align: center;
}

.smaller-text, .smaller-text2 {
    font-size: 25px;
    text-align: center;
}

/* Mobile styles for map and surrounding boxes */
@media (max-width: 768px) {
    .map {
        width: 100%;
        height: auto;
    }
    
    .MonthYear-box, .key-box, .info-boxes-container {
        position: static;
        
        width: 100%;
        text-align: center;
    
    }
    
    .key-box {
        width: 90%;
        height: auto;
        margin: 10px 0;
   
    }
    
    .info-boxes-container {
        flex-direction: column;
        align-items: center;
    }
    
    .info-box {
        width: 90%;
        height: auto;
        margin: 10px 0;
    }
}














/* Style for CSWS image container */
.csws-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.csws-image {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    height: auto;
    transition: opacity 0.5s ease; /* For smooth transitions */
}

/* Style for the swap button */
#swapCSWSButton {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    
    cursor: pointer;
    transition: background-color 0.3s ease;
    right: 200px;
}

/* Button hover effect */
#swapCSWSButton:hover {
    background-color: #0056b3;
}










/* Style for the image that will appear on hover */
.hover-image {
    position: absolute;
    top: 600px; /* Adjust as needed */
    left: 500px; /* Adjust as needed */
    width: 300px; /* Adjust size */
    height: auto;
    opacity: 0; /* Initially hidden */
    pointer-events: none; /* Prevent interaction when it's hidden */
    transition: opacity 0.5s ease; /* Smooth fade-in and fade-out */
}

/* Optional: Add some hover styles for the MapKey */
#map-key {
    cursor: pointer; /* Shows a pointer on hover */
}

/* Show the hover-image when hovering over the key-box */
.key-box:hover #hover-image {
    opacity: 1; /* Fade in the hover image */
    transition: opacity 0.5s;
}

#mapKey {
    opacity: 1;
    display: block; /* or the appropriate display property */
    transition: opacity 0.3s ease; /* Transition the opacity */
}






/* Style for the image that will appear on hover Benoue */
.hover-benoue-image {
    position: absolute;
    top: 600px; /* Adjust as needed */
    left: 500px; /* Adjust as needed */
    width: 300px; /* Adjust size */
    height: auto;
    opacity: 0; /* Initially hidden */
    pointer-events: none; /* Prevent interaction when it's hidden */
    transition: opacity 0.5s ease; /* Smooth fade-in and fade-out */
}

/* Optional: Add some hover styles for the MapKey */
#Benoue {
    cursor: pointer; /* Shows a pointer on hover */
}

/* Show the hover-image when hovering over the key-box */
.key-box2:hover #hover-benoue-image {
    opacity: 1; /* Fade in the hover image */
    transition: opacity 0.5s;
}

#benoueMapKey {
    opacity: 1;
    display: block; /* or the appropriate display property */
    transition: opacity 0.3s ease; /* Transition the opacity */
}





