/* General Styles */
html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

body {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 50px; /* Adjust for the navigation menu */
}

/* Adjust container to center image and fit screen size */


	
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh; /* Ensure the container takes full viewport height */
    overflow: hidden; /* Hide any overflow to prevent scrollbars */
	
}

.container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure the image scales to fit within its container */
}

/* Navigation Styles */
.nav-container {
    width: 100%;
}

.nav {
    position: absolute;
    top: 50px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    display: none; /* Hidden by default */
    flex-direction: column;
    z-index: 9;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    display: block;
}

.nav a:hover {
    text-decoration: underline;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

/* Main Dropdown Menu (Gallery Overview) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 5px;
    flex-direction: column;
    min-width: 200px;
    z-index: 9;
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown:hover > a {
    color: #ccc;
}

.dropdown-content a {
    margin-bottom: 5px;
    padding-left: 10px;
}

/* Submenu Styles */
.gallery-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 5px;
    min-width: 200px;
    z-index: 10;
}

/* Show submenu on hover over parent dropdown item */
.dropdown .gallery-submenu {
    display: none;
}

.dropdown:hover .gallery-submenu {
    display: flex;
}

/* Specific Dropdowns */
.dropdown-content > .dropdown:hover .gallery-submenu {
    display: flex;
    left: 100%; /* Position submenu next to the parent */
}

/* Burger Menu Styles */
.burger-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: 0.4s;
}

.burger-menu.toggle div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.toggle div:nth-child(2) {
    opacity: 0;
}

.burger-menu.toggle div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
