/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #000;
}

/* SECTION 1: Hero section styles */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../images/paulya-background.png');
    background-size: cover;
    background-position: center;
    background-color: #000000; /* Fallback color if image doesn't load */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;
}

/* No overlay - removed to show natural image colors */

.content-wrapper {
    position: relative;
    max-width: 600px;
}

.logo-container {
    margin-bottom: 0.5rem;
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
}

.subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-top: -1rem;
    letter-spacing: 1px;
}

/* Media queries for hero section */
@media screen and (max-width: 1200px) {
    .logo {
        max-width: 250px;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        align-items: flex-start;
        padding-top: 30%; /* Pushes content down from the top by 30% of screen height */
        justify-content: flex-start; /* Align content to the left */
        padding-left: 15%; /* Add padding from the left edge */
    }

    .content-wrapper {
        /* Center align the content */
        margin: 0;
        text-align: left;
    }
    
    .logo-container {
        /* Center the logo horizontally */
        margin-left: 0;
        margin-right: auto;
    }

    .logo {
        max-width: 200px;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding-top: 25%; /* Less padding for smaller screens */
        padding-left: 10%; /* Less padding from the left edge */
    }

    .logo {
        max-width: 150px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-top: -0.5rem;
    }
}

/* SECTION 2: Project Description Section */
.project-section {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.project-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left side - Performance Image */
.project-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.project-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Shifted upward to show more of the top (head) and less of the bottom */
}

/* Right side - Description with Background Image */
.project-description {
    width: 50%;
    height: 100%;
    position: relative;
    background-image: url('../images/paulya-abstract.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add a darkening overlay to ensure text readability */
.project-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.description-wrapper {
    position: relative;
    z-index: 2;
    padding: 3rem;
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 70%;
}

.description-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.highlight {
    font-weight: 500;
}

.project-description p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.second-paragraph {
    margin-top: 3rem;
}

.logo-container-footer {
    align-self: flex-end;
    margin-top: 2rem;
    text-align: right;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .description-wrapper {
        padding: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .project-description p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 960px) {
    .project-container {
        flex-direction: column;
    }
    
    .project-image,
    .project-description {
        width: 100%;
        height: 50vh;
    }
    
    .description-wrapper {
        max-width: 90%;
        min-height: 0;
        padding: 1.5rem;
    }
    
    .logo-container-footer {
        margin-top: 1.5rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .project-description p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .second-paragraph {
        margin-top: 1.5rem;
    }
}

/* SECTION 3: Video Gallery Section - Fixed Background */
.video-section {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    /* Make sure the path is correct - try multiple approaches */
    background-image: url('../images/paulya-abstract.png'); /* Try relative path */
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
}

/* Darker overlay to ensure content visibility */
.video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(26,0,16,0.8));
    z-index: 1;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.video-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.video-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Video Gallery Layout - Matches PDF exactly with more spacing */
.video-gallery {
    display: flex;
    gap: 6rem; /* Increased gap between columns */
}

/* Left column - large video (now bigger) */
.video-left {
    flex: 0 0 55%; /* Increased from 45% to 55% to make it larger */
}

/* Right column - two stacked videos (now smaller) */
.video-right {
    flex: 0 0 35%; /* Decreased from 45% to 35% */
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Gap between stacked videos */
}

.video-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    background-color: rgba(30, 30, 30, 0.8);
    margin-bottom: 1rem; /* Space between thumbnail and description */
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-link:hover .play-button {
    opacity: 1;
}

.video-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .video-gallery {
        flex-direction: column;
        gap: 3rem;
    }
    
    .video-left, 
    .video-right {
        flex: 0 0 100%;
    }
    
    .video-right {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-section {
        padding: 3rem 0;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-logo {
        max-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .video-logo {
        max-width: 150px;
    }
    
    .video-section {
        padding: 2rem 0;
    }
}

/* SECTION 4: Second Video Gallery Section */
.video-section2 {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image: url('../images/paulya-abstract.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
}

/* Darker overlay to ensure content visibility */
.video-section2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(26,0,16,0.8));
    z-index: 1;
}

.video-section2 .video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.video-section2 .video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.video-section2 .video-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.video-section2 .video-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Video Gallery Layout for Section 4 */
.video-gallery2 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Top row with two videos side by side */
.video-top-row {
    display: flex;
    gap: 6rem;
    width: 100%;
}

.video-top-row .video-item {
    flex: 1;
}

/* Bottom row with centered video */
.video-bottom-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-bottom-row .video-item {
    width: 60%;
    max-width: 700px;
}

/* Video item styling */
.video-section2 .video-item {
    display: flex;
    flex-direction: column;
}

.video-section2 .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    background-color: rgba(30, 30, 30, 0.8);
    margin-bottom: 1rem;
}

.video-section2 .video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.video-section2 .thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section2 .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-section2 .video-link:hover .play-button {
    opacity: 1;
}

.video-section2 .video-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .video-top-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .video-bottom-row .video-item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .video-section2 .video-title {
        font-size: 1.8rem;
    }
    
    .video-section2 {
        padding: 3rem 0;
    }
    
    .video-section2 .video-container {
        padding: 0 1rem;
    }
    
    .video-section2 .video-logo {
        max-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .video-section2 .video-title {
        font-size: 1.5rem;
    }
    
    .video-section2 .video-description {
        font-size: 0.9rem;
    }
    
    .video-section2 .video-logo {
        max-width: 150px;
    }
    
    .video-section2 {
        padding: 2rem 0;
    }
}

/* SECTION 5: Third Video Gallery Section */
.video-section3 {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image: url('../images/paulya-abstract.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
}

/* Darker overlay to ensure content visibility */
.video-section3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(26,0,16,0.8));
    z-index: 1;
}

.video-section3 .video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.video-section3 .video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.video-section3 .video-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.video-section3 .video-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Video Gallery Layout for Section 5 */
.video-gallery3 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Top row with two videos side by side with same spacing as previous sections */
.video-section3 .video-top-row {
    display: flex;
    gap: 6rem; /* Matching spacing from previous sections */
    width: 100%;
}

.video-section3 .video-top-row .video-item {
    flex: 1;
}

/* Bottom row with centered video */
.video-section3 .video-bottom-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-section3 .video-bottom-row .video-item {
    width: 60%;
    max-width: 700px;
}

/* Video item styling */
.video-section3 .video-item {
    display: flex;
    flex-direction: column;
}

.video-section3 .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    background-color: rgba(30, 30, 30, 0.8);
    margin-bottom: 1rem;
}

.video-section3 .video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.video-section3 .thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section3 .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-section3 .video-link:hover .play-button {
    opacity: 1;
}

.video-section3 .video-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .video-section3 .video-top-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .video-section3 .video-bottom-row .video-item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .video-section3 .video-title {
        font-size: 1.8rem;
    }
    
    .video-section3 {
        padding: 3rem 0;
    }
    
    .video-section3 .video-container {
        padding: 0 1rem;
    }
    
    .video-section3 .video-logo {
        max-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .video-section3 .video-title {
        font-size: 1.5rem;
    }
    
    .video-section3 .video-description {
        font-size: 0.9rem;
    }
    
    .video-section3 .video-logo {
        max-width: 150px;
    }
    
    .video-section3 {
        padding: 2rem 0;
    }
}

/* Photo Gallery Section - Final Section */
.photo-section {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url('../images/paulya-collage.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding-top: 5rem; /* Space from the top */
}

.photo-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

.photo-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .top-centered-content {
        padding-top: 4rem; /* Slightly less padding for tablets */
    }
    
    .photo-logo {
        max-width: 200px;
    }
    
    .photo-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .top-centered-content {
        padding-top: 3rem; /* Even less padding for mobile */
    }
    
    .photo-logo {
        max-width: 170px;
    }
    
    .photo-title {
        font-size: 1.8rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: #000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f00;
}

.social-icon {
    margin-right: 0.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-section {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* SECTION 0: Band Performance Video Section */
.video-section0 {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image: url('images/paulya-abstract.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
}

/* Darker overlay to ensure content visibility */
.video-section0::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(26,0,16,0.8));
    z-index: 1;
}

.video-section0 .video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.video-section0 .video-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.video-section0 .video-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.video-section0 .video-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Video Gallery Layout - Left video larger than right column */
.video-gallery0 {
    display: flex;
    gap: 6rem; /* Matching spacing from other sections */
}

/* Left side - large video */
.video-section0 .video-left {
    flex: 0 0 55%; /* Larger than the right column */
}

/* Right side - two stacked videos */
.video-section0 .video-right {
    flex: 0 0 35%; /* Smaller than the left column */
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Gap between stacked videos */
}

/* Video item styling */
.video-section0 .video-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.video-section0 .video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    background-color: rgba(30, 30, 30, 0.8);
    margin-bottom: 1rem;
}

.video-section0 .video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.video-section0 .thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section0 .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-section0 .video-link:hover .play-button {
    opacity: 1;
}

.video-section0 .video-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .video-gallery0 {
        flex-direction: column;
        gap: 3rem;
    }
    
    .video-section0 .video-left, 
    .video-section0 .video-right {
        flex: 0 0 100%;
    }
    
    .video-section0 .video-right {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .video-section0 .video-title {
        font-size: 1.8rem;
    }
    
    .video-section0 {
        padding: 3rem 0;
    }
    
    .video-section0 .video-container {
        padding: 0 1rem;
    }
    
    .video-section0 .video-logo {
        max-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .video-section0 .video-title {
        font-size: 1.5rem;
    }
    
    .video-section0 .video-description {
        font-size: 0.9rem;
    }
    
    .video-section0 .video-logo {
        max-width: 150px;
    }
    
    .video-section0 {
        padding: 2rem 0;
    }
}



