html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px; /* Adjust this value to match the navbar height */
}

body {
    color: black;
    background: url('images/darktexture.png') repeat;
    position: relative;
    background-position: top right;
}
section {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    transition: color 0.3s ease-in-out;
    overflow: auto;
    z-index: 1; /* Lower z-index for sections */
}
footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 29, 0, 0.97) !important; /* Green overlay (adjust alpha for transparency) */
    color: white;
    text-align: center;
}
.flag-icon {
    width: 24px;
    height: auto;
    margin-right: 5px;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237, 237, 237, 0.5); 
    /* background: rgba(0, 128, 0, 0.1);  */ /* Green overlay (adjust alpha for transparency) */
    /*background: rgba(237, 237, 237, 0.2);  
    background-color: #003500;*/
    z-index: -1;
}
.navbar{
    background: rgba(0, 29, 0, 0.97) !important; /* Green overlay (adjust alpha for transparency) */
    color: white !important;
    z-index: 1000; /* Make sure navbar stays on top */
}
.nav-link.active {
    text-decoration: underline;
}

.googlemap-iframe-container {
    position: relative;
    width: 100%;
    max-width: 700px !important; /* Set a max width */
    margin: auto; /* Centering */
    padding-top: 56.25%; /* 16:9 Aspect Ratio (adjust as needed) */
}

.googlemap-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .googlemap-iframe-container {
        padding-top: 75%; /* Taller aspect ratio for smaller screens */
    }
}

@media (max-width: 480px) {
    .googlemap-iframe-container {
        padding-top: 100%; /* Almost square aspect ratio for very small screens */
    }
}