/* Full-screen background and body styling */
body, html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #C4B1A2;
    overflow: hidden;
    font-family: 'Mulish', sans-serif;
}

/* Logo styling */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #7B7C58;
    z-index: 1000;
}

/* Navigation button styling */
.nav-button {
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #7B7C58;
    padding: 10px 20px;
    border: 2px solid #7B7C58;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 1000;
}

.nav-button:hover {
    background-color: #7B7C58;
    color: #FFFFFF;
}

/* Menu container styling */
.menu-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(123, 124, 88, 0.9);
    padding: 90px 30px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    z-index: 1000;
    display: none;
    color: #ffffff;
}

.menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-container li {
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.5s ease;
    text-align: center;
}

.menu-container li:hover {
    color: #C4B1A2;
}

.menu-container a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-container a:hover {
    color: #C4B1A2;
}

/* Background blur when menu is active */
.blur-background {
    filter: blur(8px);
}

/* Vertical alignment for both image holders */
.vertical-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Space between the two image holders */
    margin: 80px auto;
}

/* Individual image holder styling */
.image-holder {
    width: 360px;
    height: 230px;
    position: relative;
    overflow: hidden;
    border: 4px solid #7B7C58;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Primary image styling with fade-in effect */
.image-holder img:first-of-type {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.5px);
    border-radius: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Overlay image styling with fade-in effect */
.overlay-image {
    position: absolute;
    width: 60%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.8s ease-out forwards;
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Description text styling */
.description {
    position: absolute;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
    padding: 10px;
    display: none; /* Initially hidden */
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 520px;
    border-radius: 10px;
    backdrop-filter: blur(8px); /* Applies blur to the background when visible */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
}

/* Footer styling */
footer {
    width: 100%;
    padding: 5px 0;
    text-align: center;
    background-color: #7B7C58;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    font-size: 0.5rem;
}

footer p {
    margin: 2px 0;
}

footer a {
    color: #C4B1A2;
    text-decoration: underline;
}

footer a:hover {
    color: #FFFFFF;
}