/* General Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #000;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: linear-gradient(90deg, #111, #222);
    color: #f5c518;
    padding: 20px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #f5c518;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: white;
}

/* Sections */
section {
    padding: 40px;
    margin: 20px auto;
    max-width: 900px;
    animation: fadeIn 1s ease-in-out;
}

/* Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-top: 20px;
}

.gallery-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.gallery-image:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.lightbox-close:hover {
    color: #f5c518;
}

/* Footer */
footer {
    background-color: #111;
    padding: 15px;
    font-size: 14px;
    color: #777;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
