/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

/* Grundlegende Stile */
body {
	font-family: "Bai Jamjuree", sans-serif;
	margin: 0;
	padding: 0;
}

/* Styling für das Hamburger-Menü */
.hamburger-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: white;
            padding: 10px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Website-Logo und Name */
        .site-branding {
            display: flex;
            align-items: center;
        }

        .site-branding img {
            height: 40px; /* Höhe des Logos anpassen */
            margin-right: 10px;
        }

        .site-branding span {
            font-size: 24px;
            font-weight: bold;
        }

/* Styling für das Hamburger-Icon */
.hamburger-menu .icon {
	font-size: 30px;
	cursor: pointer;
}

.menu-items {
	display: none;
	flex-direction: column;
	padding-top: 10px;
	background-color: #333;
}

.menu-items a {
	padding: 10px;
	text-decoration: none;
	color: white;
	display: block;
	text-align: left;
}

.menu-items a:hover {
background-color: #575757;
}

/* Für mobile Geräte: Menü auf 100% Breite anzeigen */
@media (max-width: 768px) {
	.menu-items {
		width: 100%;
	}

	.menu-items a {
		text-align: center;
	}
}

/* Wenn das Menü geöffnet ist */
.menu-items.open {
	display: flex;
}

/* Platz für den fixierten Header schaffen */
main {
	margin-top: 60px; /* Höhe des Menüs berücksichtigen */
	background-color: #000;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
}

.image-container {
	width: 300px;
	height: 300px;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.image-container img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
}

#modal-content {
	margin: 1% auto;
	display: block;
	width: auto;
	max-height: 95vh;
	object-fit: contain;
}