/* Hero Section */
.hero-section {
    background-image: url('/gainforchrist/images/4.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffcb70; /* Golden accent */
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Filter Section */
.filter-section {
    padding: 20px;
    background: #f8f9fa;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.filter-container input,
.filter-container select,
.filter-container button {
    padding: 10px;
    font-size: 1rem;
}

/* Media Section */
.media-section {
    padding: 20px;
    background: #fff;
}

.media-category {
    margin-bottom: 40px;
}

.media-category h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007bff;
    text-transform: uppercase;
    border-bottom: 2px solid #ddd;
}

.media-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.media-item {
    flex: 1 1 calc(25% - 20px);
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.media-item:hover {
    transform: scale(1.05);
    background: #f1f1f1;
}

.media-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.media-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.media-item a:hover {
    text-decoration: underline;
}

/* Gallery Thumbnails */
.gallery-thumbnail {
    width: 800px;
    height: 80px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumbnail:hover {
    transform: scale(7.1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: auto;
}

.lightbox .close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}
