body {
    margin: 0; 
    background: url("images/temp bg.png");
    background-size: cover;
    font-family: Arial;
    font-size: 12px;
    color: #604325;
}

nav, main, footer, img, h1, ul{
    
    margin: 0;
    padding: 0;
    border: 0;
}

footer{
    text-align: center;
    padding: 5px;
}

img{
    
    max-width: 100%;
    display: block;
    
}

nav ul{
    list-style-type: none;
    margin: 0;
    text-align: center;
}

nav li{
    border-top: 1px solid #e5e9fc;
    display: block;
    font-size: 2em;
}

button {
    padding: 10px 20px;
    background-color: #ff9933;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #ff6600;
}

#welcome-message {
    background-color: #fff3e9;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border: 1px solid #604325;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}


#wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    margin: 0 auto;
    width: 1190px;
    background: #fff3e9;
}

#header {
    position: relative; 
    
}

#footer {
 text-align: center;
 padding: 5px;   
}

#notif{ 
    position: absolute;
    top: 0px;
    right: 0px;
    width: 430px;
    height: 24px;
}

#oops{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px; 
}

#oops img {
    width: 700px;
    height: 500px;
}


#map{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px; 
}

#map img {
    max-width: 100%;
}

nav {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.navlink {
    margin: 2px;
    background-color: transparent;
    border: none;
    
}

.navlink img {
    width: 100px;
    height: 50px;
}

.navlink:hover img {
    opacity: 0.8;
}

.mobile {
    display: none;
}

.btn {
    grid-column: 1 / span 2;
}
    
.social img {
    display: inline-block;
    padding: 4%;
}

fieldset, input {
    margin-bottom: 2%;
}

fieldset legend {
    font-weight: bold;
    font-size: 1.25em;
}

label {
    display: block;
    padding-top: 3%;
}

form #submit {
    margin: 0 auto;
    display: block;
    padding: 3%;
    background-color: #fab834;
    font-size: 1em;
}

.video{
    display: flex;
    justify-content: center;
    align-items: center;  
    height: 100vh;
    background-color: #fff3e9;
    
}

/* Style for the site map container */
#sitemap {
    margin-top: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

#sitemap h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

#sitemap ul {
    list-style-type: none; 
    padding: 0; 
}

#sitemap ul li {
    margin: 8px 0; 
}

#sitemap ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

#sitemap ul li a:hover {
    color: #0056b3; 
    text-decoration: underline;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .navlink img {
        width: 50px;
        height: auto;
    }
}

/*@media screen and (max-width: 768px) {
    #wrapper {
        width: 100%;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
    }
    
    .navlink img {
        width: 80px;
        height: 40px;
    }

    #notif {
        display: none;
    }
    
    #map img {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 769px) {
    nav {
        justify-content: center;
        align-items: center;
    }
    
    .navlink img {
        width: 120px;
        height: 60px;
    }
}*/