/* 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;
}

.blur-background {
    filter: blur(8px);
}

/* Horizontal container for image holders */
.horizontal-container {
    display: flex;
    justify-content: space-around; /* Space evenly around each image */
    gap: 10px;
    padding-top: 120px;
    width: 95vw; /* Set width to 90% of the viewport */
    margin: 0 auto; /* Center container on the page */
}

/* Image holder styling */
.image-holder {
    display: block;
    width: 300px;
    height: 450px;
    overflow: hidden;
    border: 4px solid #7B7C58;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-holder:hover {
    transform: scale(1.05);
}

/* Download text styling */
.download-text {
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
    display: block;
    margin-bottom: 0px;
    text-align: center;
    background-color: #7B7C58;
    text-decoration: none; /* Removes underline */
    padding: 5px; /* Optional: Adds padding for better readability */
}


/* 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;
}