/* General Reset */
* {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures elements don't exceed container width */
}


html, body {
    background-image: url("Images/\ bg.jpeg");
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* Navigation Menu */
.Menu {
    height: 100px; /* Adjust height as needed */
    width: 100%; /* Stretch across the viewport */
    background-color: black;
    display: flex; /* Flex layout for alignment */
    justify-content: space-between; /* Space between logo and links */
    align-items: center; /* Center vertically */
    padding: 0 16px; /* Padding for consistent spacing */
}
.dropdown button {
    font-size:25px;
    color:white;
    border:none;
    background-color:black;
    font-weight:600;
    border-bottom: 2px solid rgb(152,135,123);
    padding:20px;
}

.dropdown{

}
.dropdown a {
    display:block;
    text-decoration: none;
    color:black;
    font-family: "Arimo", sans-serif;
    font-size:20px;
    font-weight:400;
    padding:10px;
    line-height: 25px;
}

.dropdown .content {
   font-size:20px;
    position:absolute;
width: 126px;
display: none;
   
}

.dropdown:hover .content{
    display:block;
}

.dropdown:hover button{
    background-color: black;
    color:white;
    font-family: "Arimo", sans-serif;
    font-size:25px;
}

.dropdown a:hover {
    background-color: white;
}
/* Logo Section */
.logo {
    display: flex;
    align-items: center; /* Center logo vertically */
}

.logo img {
    height: 105px; /* Adjust size as needed */
    width: auto; /* Maintain aspect ratio */
}

/* Navigation Links */
.NavItems {
    display: flex; /* Flex layout for links */
    gap: 200px; /* Space between links */
    margin-right:200px;
}

.NavItems a {
    background-color: rgba(0,0,0,0.3);
    padding:20px;
    font-family: "Arimo", sans-serif;
    font-weight:600;
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 25px; /* Adjust font size */
    border-bottom: 2px solid rgb(152,135,123);
}

.NavItems a:hover {
   color:rgb(152,135,123);
    transition:.5s;
}

.Container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Optional: You can control this if needed */
    height:700px;
}