/* ========== BASE VARIABLES ========== */
:root {
    --text-width: 700px;
    /* Uniform width for text blocks */
    --section-spacing: 60px;
    --element-spacing: 30px;
    --small-spacing: 15px;
    --page-padding: 5%;
}

/* ========== BASE STYLES ========== */
body {
    background-color: black;
    color: white;
    font-family: var(--body-font), var(--fallback-fonts);
    margin: 0;
    padding: 0 0 100px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* ========== NAVIGATION ========== */
.top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: white;
    color: black;
    padding: 15px 30px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Enhanced logo styling with hover effects */
.logo {
    font-family: var(--header-font), var(--fallback-fonts);
    color: black;
    text-decoration: none;
    font-size: var(--font-size-logo);
    font-weight: var(--font-weight-bold);
    transition: color 0.3s, transform 0.3s;
    position: relative;
    display: inline-block;
}

.logo:hover {
    color: #00bfff;
    transform: scale(1.05);
    /* Makes it slightly bigger */
}

/* Underline animation for logo */
.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #00bfff;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
    /* Expand on hover */
}

/* Navigation links container */
.nav-links {
    display: flex;
    gap: 30px;
}

/* Enhanced nav links with hover effects */
.nav-link {
    font-family: var(--body-font), var(--fallback-fonts);
    color: black;
    text-decoration: none;
    font-size: var(--font-size-nav);
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: #00bfff;
}

/* Underline animation for nav links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #00bfff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    /* Expand on hover */
}

/* ========== HERO SECTION ========== */
.hero {
    margin-bottom: var(--section-spacing);
    padding: 0 var(--page-padding);
}

.hero h1 {
    font-family: var(--header-font), var(--fallback-fonts);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: #fff;
}

.hero h2 {
    font-family: var(--header-font), var(--fallback-fonts);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-large);
    margin-bottom: 30px;
    width: 65%;
    /* THIS IS THE LINE TO CHANGE */
    color: #ccc;
}

.hero h3 {
    font-family: var(--header-font), var(--fallback-fonts);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-large);
    margin-bottom: 30px;
    width: 98%;
    /* This will now work! */
    color: #ccc;
}

/* ========== MAIN CONTENT SECTIONS ========== */
.section {
    margin-bottom: var(--section-spacing);
    padding: 0 var(--page-padding);
}

.section h2 {
    font-family: var(--header-font), var(--fallback-fonts);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    border-bottom: 2px solid #00bfff;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #fff;
}

.section p {
    font-family: var(--body-font), var(--fallback-fonts);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    margin-bottom: 20px;
    max-width: var(--text-width);
    color: #eee;
}

.section ul {
    font-family: var(--body-font), var(--fallback-fonts);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    margin-bottom: 20px;
    padding-left: 20px;
    max-width: var(--text-width);
}

.section li {
    margin-bottom: 8px;
}

/* Full-width content */
.full-width {
    max-width: 100% !important;
    width: 100%;
}

.section .full-width p,
p.full-width {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
}

/* ========== MEDIA COMPONENTS ========== */
/* Video/Image container */
.video-container {
    width: 100%;
    height: auto;
    margin: 25px 0 40px 0;
    padding: 0 var(--page-padding);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.video-container video,
.featured-video {
    width: 100%;
    max-height: 75vh;
    /* Standardized to 75vh across pages */
    display: block;
    object-fit: cover;
}

.featured-image {
    width: 100%;
    height: 75vh;
    /* Standardized height */
    object-fit: cover;
    display: block;
}

/* For hero images with padding */
.hero-image-container {
    width: 100%;
    height: auto;
    margin: 40px 0;
    padding: 0 var(--page-padding);
    box-sizing: border-box;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    max-height: 75vh;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* For full-width hero images without padding */
.hero-image-full {
    width: 100vw;
    margin-left: calc(-1 * var(--page-padding));
    margin-bottom: 30px;
    height: auto;
    overflow: hidden;
}

.hero-image-full img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    display: block;
}

/* Image caption styling */
.image-caption {
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

/* ========== LAYOUT COMPONENTS ========== */
/* Standard text with side image layout */
.text-with-image {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: space-between;
    width: 100%;
}

.text-with-image p {
    font-family: var(--body-font), var(--fallback-fonts);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    flex: 0 1 60%;
    margin: 0;
    max-width: var(--text-width);
}

.side-image {
    flex: 0 0 auto;
    max-width: 300px;
    margin-left: auto;
}

.side-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Stacked images */
.image-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stacked-image {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Song selection layout */
.text-with-image.song-selection-layout {
    max-width: 100%;
    gap: 50px;
    align-items: center;
}

.text-with-image.song-selection-layout p {
    flex: 0 1 50%;
    max-width: 450px;
}

.text-with-image.song-selection-layout .side-image {
    flex: 0 0 auto;
    max-width: 380px;
    margin-left: auto;
    margin-right: 0;
}

.text-with-image.song-selection-layout .side-image img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: contain;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Poster layout */
.text-with-image.poster-layout {
    gap: 40px;
}

.text-with-image.poster-layout p {
    flex: 0 1 45%;
    padding-right: 10px;
}

.text-with-image.poster-layout .side-image.vertical {
    flex: 0 0 auto;
    max-width: 50%;
    min-width: 350px;
    margin-left: auto;
    margin-right: 0;
}

.side-image.vertical img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Standard and reversed layouts */
.text-with-image.standard-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.text-with-image.standard-layout .text-content {
    flex: 0 1 60%;
    max-width: 700px;
}

.text-with-image.standard-layout .side-image {
    flex: 0 0 auto;
    max-width: 35%;
    margin-left: auto;
}

.text-with-image.reversed-layout {
    flex-direction: row-reverse;
}

.text-with-image.reversed-layout .side-image {
    margin-right: auto;
    margin-left: 0;
}

.text-with-image.reversed-layout .text-content {
    max-width: 550px;
}

.text-with-image.reversed-layout .text-content p {
    max-width: 100%;
}

/* Add this to your CSS */
.section:last-of-type {
    margin-bottom: 10px;
    /* Override the default 60px */
}

/* ========== GRID LAYOUTS ========== */
/* Text with grid images layout */
.text-with-grid-images {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: space-between;
}

.text-content {
    flex: 0 1 45%;
}

.text-content p {
    max-width: none;
}

.text-content h2 {
    margin-top: 0;
}

.image-grid {
    flex: 0 0 auto;
    max-width: 50%;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-row {
    display: flex;
    gap: 15px;
}

.top-row .grid-image {
    flex: 1;
    aspect-ratio: 1/1;
}

.bottom-row .grid-image {
    width: 100%;
    aspect-ratio: 16/9;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 0 var(--page-padding);
    margin-bottom: var(--section-spacing);
}

.gallery-section h2 {
    font-family: var(--header-font), var(--fallback-fonts);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    border-bottom: 2px solid #00bfff;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-image {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* ========== IMAGE SHOWCASE ========== */
.image-showcase {
    margin: 30px 0 var(--section-spacing);
    padding: 0 var(--page-padding);
}

.full-width-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 9999;
    opacity: 1;
    pointer-events: all;
    transition: opacity 2.4s ease;
}

/* ========== SOCIAL LINKS ========== */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 60px auto 20px;
    padding: 15px 0 0;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-intro {
    color: white;
    font-family: var(--body-font), var(--fallback-fonts);
    font-size: var(--font-size-body);
    text-align: center;
    margin: 0 0 15px 0;
    opacity: 0.9;
    font-weight: 300;
}

.social-links-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.social-link {
    color: white;
    text-decoration: none;
    font-family: var(--body-font), var(--fallback-fonts);
    font-size: var(--font-size-social-link);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: #00bfff;
}

.social-link i {
    width: 20px;
    text-align: center;
}

/* ...existing code... */

.social-links {
    margin-bottom: 20px;
    padding-bottom: 0;
}

body {
    margin-bottom: 0;
    padding-bottom: 0;
}



/*

/* ========== TRANSITIONS & ANIMATIONS ========== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.fade-in-animation {
    animation: fadeIn 0.8s ease-in-out forwards;
}

.no-animation {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========== RESPONSIVE STYLES ========== */

/* 1. Large screens (1025px - 1728px) */
@media (min-width: 1025px) and (max-width: 1728px) {

    /* Typography adjustments */
    p,
    .section p,
    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    h1,
    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    h2,
    .hero h2,
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    h3,
    .hero h3 {
        font-size: 1.35rem;
        margin-bottom: 15px;
    }

    /* Image captions */
    .image-caption {
        font-size: 0.8rem;
        margin-top: 8px;
        margin-bottom: 15px;
    }

    /* Layout spacing */
    .section {
        margin-bottom: 45px;
    }

    /* Social links - FIXED */
    .social-links {
        flex-direction: column;
        /* Keep as column */
        margin: 40px auto 20px;
        padding: 15px 0 0;
    }

    .social-intro {
        font-size: 1rem;
        margin-bottom: 15px;
        font-weight: 400;
        /* Increase from 300 */
        opacity: 1;
        /* Full opacity */
    }

    .social-links-container {
        flex-direction: row;
        /* Links side by side */
        gap: 30px;
    }

    .social-link {
        font-size: 0.95rem;
    }

    /* Body spacing */
    body {
        padding-bottom: 30px;
    }
}

/* 2. Medium screens (993px - 1024px) */
@media (min-width: 993px) and (max-width: 1024px) {

    /* Typography */
    p,
    .section p,
    .hero p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    h1,
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    h2,
    .hero h2,
    .section h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    h3,
    .hero h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
        width: calc(100% - 50px);
        max-width: calc(100% - 50px);
    }

    /* Navigation */
    .top-menu {
        padding: 12px 20px !important;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    /* Layout */
    .section {
        margin-bottom: 40px;
        padding: 0 5%;
    }

    /* Video heights */
    .video-container video,
    .featured-video,
    .featured-image,
    .hero-image-container img,
    .hero-image-full img {
        max-height: 70vh;
    }

    /* Social links - FIXED */
    .social-links {
        flex-direction: column;
        /* Keep as column */
        margin: 40px auto 20px;
        padding: 15px 0 0;
    }

    .social-intro {
        font-size: 0.95rem;
        margin-bottom: 12px;
        font-weight: 400;
        opacity: 1;
    }

    .social-links-container {
        flex-direction: row;
        /* Links side by side */
        gap: 25px;
    }

    .social-link {
        font-size: 0.9rem;
    }

    body {
        padding-bottom: 30px;
    }
}

/* 3. Tablet (769px - 992px) - ADDED THIS BREAKPOINT */
@media (min-width: 769px) and (max-width: 992px) {

    /* Typography */
    p,
    .section p,
    .hero p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    h1,
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    h2,
    .hero h2,
    .section h2 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    h3,
    .hero h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        width: 100%;
    }

    /* Navigation */
    .top-menu {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    /* Layout adjustments */
    .section {
        margin-bottom: 35px;
        padding: 0 4%;
    }

    .text-with-image {
        gap: 20px;
    }

    /* Social links - FIXED */
    .social-links {
        flex-direction: column;
        /* Keep as column */
        margin: 35px auto 20px;
        padding: 12px 0 0;
    }

    .social-intro {
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-weight: 400;
        opacity: 1;
    }

    .social-links-container {
        flex-direction: row;
        /* Links side by side */
        gap: 20px;
    }

    .social-link {
        font-size: 0.85rem;
    }

    body {
        padding-bottom: 25px;
    }
}

/* 4. Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {

    /* Typography */
    p,
    .section p,
    .hero p {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 100%;
    }

    h1,
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    h2,
    .hero h2,
    .section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        width: 100%;
    }

    h3,
    .hero h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        width: 100%;
    }

    /* Navigation */
    .top-menu {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    /* Layout adjustments */
    .section {
        margin-bottom: 30px;
        padding: 0 4%;
    }

    /* Change to vertical stacking */
    .text-with-image,
    .text-with-grid-images,
    .text-with-image.standard-layout,
    .text-with-image.reversed-layout,
    .text-with-image.poster-layout,
    .text-with-image.song-selection-layout {
        flex-direction: column;
        gap: 15px;
    }

    .side-image,
    .image-grid,
    .text-with-image.standard-layout .side-image,
    .text-with-image.poster-layout .side-image.vertical {
        max-width: 100%;
        min-width: auto;
        width: 100%;
        margin: 15px 0 0;
    }

    .text-content,
    .text-with-image.standard-layout .text-content,
    .text-with-grid-images .text-content {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Social links - FIXED */
    .social-links {
        flex-direction: column;
        /* Keep as column */
        margin: 30px auto 20px;
        padding: 12px 0 0;
    }

    .social-intro {
        font-size: 0.85rem;
        margin-bottom: 10px;
        font-weight: 400;
        opacity: 1;
    }

    .social-links-container {
        flex-direction: row;
        /* Links side by side */
        gap: 18px;
    }

    .social-link {
        font-size: 0.8rem;
    }

    body {
        padding-bottom: 25px;
    }
}

/* 5. Small Mobile (480px and below) */
@media (max-width: 480px) {

    /* Typography */
    p,
    .section p,
    .hero p {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 100%;
    }

    h1,
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    h2,
    .hero h2,
    .section h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        width: 100%;
    }

    h3,
    .hero h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
        width: 100%;
    }

    /* Navigation */
    .top-menu {
        padding: 8px 12px;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    /* Layout adjustments */
    .section {
        margin-bottom: 25px;
        padding: 0 4%;
    }

    /* Gallery adjustment */
    .gallery {
        grid-template-columns: 1fr;
    }

    /* Video height */
    .video-container video,
    .featured-video,
    .featured-image,
    .hero-image-container img,
    .hero-image-full img {
        max-height: 50vh;
    }

    /* Social links - FIXED */
    .social-links {
        flex-direction: column;
        /* Force vertical stacking */
        margin: 25px auto 15px;
        padding: 10px 0 0;
    }

    .social-intro {
        font-size: 0.8rem;
        margin-bottom: 10px;
        font-weight: 400;
        opacity: 1;
    }

    .social-links-container {
        flex-direction: column;
        /* Stack links vertically on small mobile */
        gap: 15px;
        align-items: center;
    }

    .social-link {
        font-size: 0.8rem;
    }

    body {
        padding-bottom: 20px;
    }
}