body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    /*background: linear-gradient(to bottom, #1d503a 20%, #050e0a 45%);*/
    background-color: black;
    
}
nav {
    width: 50%; /* Narrower width */
    height: 28px;
    margin: 20px auto;
    padding: 15px; /* Reduced padding */
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed; /* Keep navbar fixed */
    top: 15px; /* Adjust position */
    left: 50%;
    transform: translateX(-50%); /* Center navbar horizontally */
    z-index: 1; /* Keep navbar on top */
}
.hidden {
    top: -130px; /*nav bar dissapears */
    opacity: 0; /* Fades out */
    pointer-events: none; /* Prevents interaction when hidden */
}

nav a {
    text-decoration: none;
    color: #faf5ee;
    font-size: 14px; /* Smaller font */
    font-weight: 300; /* Thin font weight */
    transition: color 0.3s;
    text-transform: uppercase;
}
nav a:hover {
    color: #faf5ee; /* Light green for hover */
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8); /* White glow effect */
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 150px; /* Space between icons */
}

.footer-icons img {
    width: 25px; /* Icon size */
    height: 25px;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-icons img:hover {
    transform: scale(1.2); /* Enlarge icon on hover */
    filter: drop-shadow(0 0 20px white); /* White glow effect */

}

/* thumbnails*/
.thumbnail {
    margin-top: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap; /* Ensure items wrap if the screen is too small */
}
    .thumbnail-item {
    position: relative;
    width: 300px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}
.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.thumbnail-item:hover .overlay {
    opacity: 1;
}
.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
}
.text {
    text-align: center;
    color: #faf5ee;
    font-size: 16px;
    margin-bottom: 20px;
}
.thumbnail-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}



.footer {
    padding-top: 250px;
    background-color: black; 
    
    text-align: center;
    position: relative;
}

.footer-text {
    font-size: 24px;
    color: #faf5ee;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
.footer-text-2{
    font-size: 14px;
    color: #faf5ee;;
    margin-bottom: 10px;
    text-transform: none;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 150px; /* Space between icons */
}

.footer-icons img {
    width: 25px; /* Icon size */
    height: 25px;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-icons img:hover {
    transform: scale(1.2); /* Enlarge icon on hover */
    filter: drop-shadow(0 0 20px white); /* White glow effect */

}

.footer-icons-2 {
    display: flex;
    justify-content: center;
    gap: 90px; /* Space between icons */
}

.footer-icons-2 img {
    width: 25px; /* Icon size */
    height: 25px;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-icons-2 img:hover {
    transform: scale(1.2); /* Enlarge icon on hover */
}
.footer-text-2 a {
    color: #faf5ee;
    text-decoration: none; /* Optional: Removes underline */
}
