html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
        }

.logo {
    display: flex;
    margin: 30px auto 60px 38px;
}
.logo img {
    width: 100%;
    max-width: 700px;
    height: auto;
opacity: 1;
}

.logo img:hover {
opacity: 0.5;
}
.contact-text {
    margin-left: 300px;
margin-right: 300px;
    font-size: 32px;
    font-family: 'Bebas Neue', sans-serif;
text-align: justify;
}

.contact-text a {
    text-decoration: none;
    color: black;
}
.contact-text a:hover {
    opacity: 0.5;
}

.fixed-image-contact {
    position: absolute;
    top: 30px;
    right: 65px;
    z-index: 0;
}

.fixed-image-contact img {
    width: auto;
    height: 60px;
    opacity: 1;
}

.fixed-image-contact img:hover {
    opacity: 0.5;
}

.fixed-image-shop {
	visibility: hidden;
    position: absolute;
    top: 30px;
    right: 265px;
    z-index: 0;
}

.fixed-image-shop img {
    width: auto;
    height: 60px;
    opacity: 1;
}

.fixed-image-shop img:hover {
    opacity: 0.5;
}

.photo-grid {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
	margin-left: 60px;
    justify-content: center;
    align-items: center;
}

.photo-grid a {
    display: flex;
    margin: 5px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.photo-grid a img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures image fills container */
    max-height: 100vh; /* Prevents Chrome from shrinking images */
}

.image-container {
    border: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
    margin: 1%;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Keeps images from shrinking weirdly */
}

.image-container:hover {
    transform: scale(1.02);
}

.image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 60px;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    max-width: 100%;
    text-align: center;
}

.image-container:hover .image-title {
    opacity: 1;
}

.shopmenu {
    padding: 10px; /* Optional: padding inside each item */
    text-align: right; /* Optional: center content inside each item */
	font-size: 26px;
    font-family: 'Bebas Neue', sans-serif;
margin-right: 85px;
}

.shopmenu a {
    text-decoration: none;
    color: black;
}

.shopmenu a:hover {
    text-decoration: none;
    opacity: 0.5;
}

.shopframe-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Create 5 equal-width columns */
    grid-gap: 20px; /* Adjust the space between items */
    padding: 20px; /* Optional: add padding around the container */
}

.shopframe {
    border: 0	px solid #ccc; /* Optional: add border for each item */
    padding: 10px; /* Optional: padding inside each item */
    text-align: center; /* Optional: center content inside each item */
}

.shopframe img {
    max-width: 100%; /* Make images responsive */
    height: auto;
}

.infotext {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.stickers {
    margin-top: 10px;
}

.footer p {
margin-left: 80px;
    font-size: 14px;
    font-family: 'Bebas Neue', sans-serif;
}

/* Lightbox container */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* High z-index to ensure it's above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    overflow: auto;
    text-align: center;
}

/* The lightbox image */
.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    margin: 5% auto;
    display: block;
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001; /* Ensure the close button is above the image */
}

/* Mobile devices */
@media (max-width: 768px) {
  
.logo {
display: block;
    margin: 10px auto 20px 0px;
} 
 .logo img {
    width: auto;
    height: 30px;
opacity: 1;
}

.photo-grid {
display:block;
margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .image-container {
        width: 90%;
        height: auto;
        margin: 10px auto;
    }
    
    .photo-grid a {
        width: 100%;
        margin: 0 auto;
    }

    .image-title {
        font-size: 24px;
        opacity: 1;
        width: 90%;
    }

    .fixed-image-shop {
        display: block;
margin-top:15px;
left:20px;
	margin-bottom:30px;
    }
    .fixed-image-shop img {
        height: 30px; /* Smaller for mobile */
    }
 .fixed-image-contact {
        display: block;
margin-top:15px;
left:100px;
	margin-bottom:30px;
    }
    .fixed-image-contact img {
        height: 30px; /* Smaller for mobile */
    }
    .prev, .next {
        width: 30%;
        font-size: 12px;
    }

    .footer p {
        text-align: center;
    }

	.shopmenu {
    padding: 10px; /* Optional: padding inside each item */
    text-align: left; /* Optional: center content inside each item */
	font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
margin-top: 6vh;
margin-left:6vw;
	}
.shopframe-container {
    width:90vw;
 display: grid;
    grid-template-columns: repeat(2, 1fr); /* Create 2 equal-width columns */
    grid-gap: 20px; /* Adjust the space between items */
    padding: 20px; /* Optional: add padding around the container */
}
.infotext {
    display: block;
    font-size: 10px;
    margin-top: 10px;
}
.stickers {
    margin-top: 5px;
width: 80%
}
.contact-text {
    margin-left: 10vw;;
width: 80vw;
    font-size: 24px;
    font-family: 'Bebas Neue', sans-serif;
text-align: justify;
}
}


