body {
    margin: 0;
    padding: 0;
    background-image: url('https://icelandthroughthelens.com/images/northernlights.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Playfair Display', serif;
    padding: 20px;
}
.menu-container {
    display: flex;
    justify-content: center;
    margin: 0 20px;
}
.menu-bar {
    background-color: #004225;
    border-radius: 10px;
    overflow: hidden;
    display: inline-flex;
}
.menu-bar a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}
.menu-bar a:hover {
    background-color: #ddd;
    color: black;
}
@media (max-width: 768px) {
    .menu-container {
        overflow-x: auto; /* Added for horizontal scrolling */
    }
    
    .menu-bar {
        display: flex; /* Changed from inline-flex to flex */
        white-space: nowrap; /* Added to prevent wrapping */
    }
    
    .menu-bar a {
        padding: 10px 6.5px;  /* Reduced horizontal padding */
        font-size: 0.5rem;  /* Reduced font size */
    }
}
.virtual-gallery-entrance {
    text-align: center;
    margin-top: 20px;
}
.enter-button {
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s;
}
.enter-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}
iframe {
    width: 100%;
    height: 500px;
    border: none;
}
.gallery-container {
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10;
}
.intro-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
}
.intro-section,
.about-section {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
    text-align: center;
}
a {
    color: white;
}
a:hover {
    color: #ccc;
}
.about-image {
    margin-bottom: 20px;
    max-width: 100%;
    height: 200px;
    border-radius: 10px;
}
.image-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjusts spacing between images */
}
.image-link img {
    border-radius: 15px; /* Adjust corner rounding */
}
footer {
    margin-top: auto;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    text-align: center;
    padding: 10px 0;
    font-family: 'Playfair Display', serif;
    color: white;
}
