/* Basic reset and styles */
* {
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('/public/SEASON_11.png') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    color: #fff; /* Text color to ensure readability over the background */
}

header {
    position: relative;
    z-index: 1; /* Ensure header text and nav are above the blur effect */
}

nav {
    position: sticky; /* Makes the nav bar stick to the top of the viewport */
    top: 0; /* Ensures the nav bar sticks to the top */
    width: 100%; /* Ensures the nav bar spans the full width */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for nav */
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adds shadow for better visibility */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    border-radius: 8px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
}

h1 {
    text-align: center;
    margin: 20px 0;
}

#gallery-container {
    position: relative;
}

#gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px); /* Apply blur effect */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background to enhance readability */
    border-radius: 8px;
    padding: 20px;
}

.gallery-item {
    width: 640px;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    text-align: center;
    margin: 20px 0;
}
