/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a; /* Dark, elegant background */
    color: #f5f5f5; /* Light text for contrast */
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 2rem 0;
    background-color: #2c2c2c;
    border-bottom: 2px solid #d4a373; /* Gold accent */
}

.logo-container {
    margin-bottom: 1rem;
}

.naledi-logo {
    max-width: 150px; /* Adjust based on your logo size */
    height: auto;
    display: block;
    margin: 0 auto 0.5rem;
}

.recognition {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #d4a373;
    margin-bottom: 1rem;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #d4a373; /* Gold for sophistication */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    text-align: center;
}

.home-btn {
    display: inline-block;
    background-color: #d4a373;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.home-btn:hover {
    background-color: #e6b98a;
}

.gallery, .video-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3); /* Gold shadow */
}

img {
    width: 100%;
    aspect-ratio: 1/1; /* Square aspect ratio for consistency */
    object-fit: cover; /* Crops to fit, no stretching */
    display: block;
    border-radius: 8px;
}

video {
    width: 100%;
    max-height: 300px;
    border: 2px solid #d4a373; /* Gold border to distinguish videos */
    border-radius: 8px;
    display: block;
}

.download-btn {
    display: block;
    text-align: center;
    background-color: #d4a373;
    color: #1a1a1a;
    padding: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
    margin-top: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #e6b98a;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d4a373;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#back-to-top:hover {
    background-color: #e6b98a;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .naledi-logo {
        max-width: 120px;
    }
}