/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    overflow-x: hidden;
    font-size: 16px; /* Set a base font size */
}

/* Header (Fixed Navigation) */
header {
    background-color: #333;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Keep it above other elements */
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 5px;
    position: relative;
    width: 100%;
}
/* Header Content */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    width: 100px;
    height: auto;
    position: relative;
    left: 1rem;
}

/* Navigation */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Navigation links */
nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem; /* 16px */
}
nav a:visited {
    color: white !important; /* Force visited links to remain white */
}
nav a:hover {
    background-color: #555;
}

/* Video Section (Fullscreen Background Below Nav) */
.video-section {
    position: fixed;
    top: 100px; /* Push video below the fixed navigation */
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px); /* Reduce height to account for the fixed nav */
    z-index: -1; /* Keep it behind other content */
}

/* Video Background */
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
}

/* Overlay Text */
.overlay-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
  /*  font-weight: bold; */
    text-align: center;
    z-index: 1;
}
.coverlay-text {
    position: absolute;
    top: 15%;
    left: 15%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
/*    font-weight: bold;
    text-align: center;
    z-index: 1; */
}

/* Gallery Container */
.gallery-container {
    position: relative;
    z-index: 1; /* Ensure it's above the video */
    margin-top: calc(100vh - 60px); /* Push gallery below the video */
    background: transparent; /* Keep background transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Gallery Wrapper */
.gallery-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: 80%;
}

/* Gallery Images */
.gallery-images {
    display: flex;
    gap: 2px;
    transition: transform 0.5s ease-in-out;
    justify-content: center;
}

.gallery-images a {
    width: 200px;
    flex-shrink: 0;
}

.gallery-images img {
    display: block;
    width: 100%;
}

/* Scroll Buttons */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 2;
    border-radius: 5px;
}

.left { left: 20px; }
.right { right: 20px; }

/* Hide Overlay */
.hide-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 40px;
    padding: 20px 30px;
    border-radius: 50%;
    cursor: pointer;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}
/* Split Container */
.csplit-container {
    width: 50%; /* Set width to 66% of the screen */
    display: inline-block; /* Allow it to sit next to the gallery section */
    padding-left: 1cm;
    margin-top: 40px;
    flex: 1; /* Allow the credits section to take available space */
}

/* Gallery Section */
.cgallery-section {
    width: 24%; /* Set width to the remaining 34% */
    display: inline-block; /* Allow it to sit next to the split container */
    margin-left: 20px; /* Space between credits and image */
    margin-top: 130px; /* Add some top margin to lower the image */
}
.ad-image {
    width: 300px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
}

/* Adjustments for Bio Container */
.bio-container {
    margin: 20px auto; /* Center the bio container */
    max-width: 800px; /* Set a max width for better readability */
    padding: 20px; /* Add padding for spacing */
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    border-radius: 8px; /* Rounded corners */
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align items to the top */
}

/* Adjustments for Credits Section */
.credits {
    margin: 20px 0; /* Add margin for spacing */
    padding: 10px; /* Add padding for spacing */
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    border-radius: 8px; /* Rounded corners */
}

/* Adjustments for Year and Entry */
.year {
    color: #e9da9c; /* Change color for better visibility */
    font-weight: bold;
    margin-top: 20px;
}

.entry {
    margin-bottom: 15px; /* Increase margin for better spacing */
}

.entry .title {
    font-weight: bold;
}
.entry .details {
    margin-left: 10px;
    color: #777;
}

/* Add responsive styles */
@media (max-width: 600px) {
    .gallery-wrapper {
        width: calc(2 * (200px + 2px)); /* Adjust width for smaller screens */
    }

    .gallery-images img {
        width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .overlay-text h2 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    .overlay-text p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }

    .header-content img {
        width: 80%; /* Make logo responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .scroll-button {
        font-size: 1.5rem; /* Adjust button size for smaller screens */
    }
}

/* Additional styles for index.html */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.overlay-text h2 {
    font-size: 2.5rem;
    color: white;
}

.hide-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Gallery styles */
.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.gallery-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.gallery-images {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 1rem);
    gap: 1rem;
    transition: transform 0.3s ease;
}

.gallery-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.gallery-images img:hover {
    transform: scale(1.05);
}

/* Scroll Buttons */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.scroll-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.scroll-button.left {
    left: 0;
}

.scroll-button.right {
    right: 0;
}

/* CTA Button styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 2