/* GLOBAL STYLES */
:root {
    --color-dark: #121212;
    --color-medium-dark: #1f1f1f;
    --color-light: #f4f4f4;
    --color-accent: #ff4500; /* Orange/Röd ton för energi */
    --color-secondary: #00bcd4; /* Cyan/blå för kontrast */
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Oswald', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent);
}

section {
    padding: 6rem 5%;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-accent);
    text-transform: uppercase;
}

/* HEADER AND NAVIGATION */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--color-accent);
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-light);
}

.main-nav a {
    margin-left: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
    color: var(--color-light); /* Menylänk och text vit */
}

.main-nav a:hover {
    color: var(--color-accent);
}

/* KONTROLLER (SPRÅK & HAMBURGER) */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

/* SPRÅK-VÄXLAREN */
.language-switcher {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-light);
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--color-light);
    border-radius: 4px;
    transition: all 0.3s;
}

.language-switcher i {
    margin-right: 0.4rem;
    color: var(--color-secondary);
}

.language-switcher:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
}

.language-switcher:hover i {
    color: var(--color-dark);
}

/* WEBSHOP LÄNK */
.shop-link {
    color: var(--color-secondary) !important;
    border: 2px solid var(--color-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 1rem !important; 
    transition: background-color 0.3s, color 0.3s;
}

.shop-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark) !important;
}


/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero-bg.jpg') no-repeat center center/cover; 
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.75);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-content {
    position: relative; z-index: 10; max-width: 900px; padding: 0 5%;
}
.headline {
    font-family: var(--font-secondary); font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; margin-bottom: 0.5rem; text-transform: uppercase;
}
.accent-text { color: var(--color-accent); }
.subtext { font-size: 1.25rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.85); }

/* CTA BUTTONS */
.cta-group { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-button {
    padding: 1rem 2rem; border-radius: 5px; font-size: 1.1rem; font-weight: 700; cursor: pointer; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.primary-cta {
    background-color: var(--color-accent); color: var(--color-light); border: 2px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}
.primary-cta:hover { background-color: #ff5e1a; transform: translateY(-3px); }
.secondary-cta {
    background-color: transparent; border: 2px solid var(--color-secondary); color: var(--color-secondary);
}
.secondary-cta:hover { background-color: var(--color-secondary); color: var(--color-dark); transform: translateY(-3px); }


/* DEVELOPMENT PROGRAMS SECTION */
.development-section {
    background-color: var(--color-dark); 
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.program-card {
    background-color: var(--color-medium-dark);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 5px solid var(--color-accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.4);
}
.icon-large {
    font-size: 3.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}
.program-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.program-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding-left: 0;
}
.program-list li {
    padding: 0.5rem 0;
    font-weight: 700;
    color: var(--color-light);
    border-bottom: 1px dashed #333;
    display: flex;
    align-items: center;
}
.program-list .fa-check-circle {
    color: var(--color-accent);
    margin-right: 0.8rem;
}
.cta-program-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}
.cta-program-footer p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
}

/* LATEST SIGNINGS SECTION */
.signings-section {
    background-color: var(--color-dark);
}
.signings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.signing-card {
    background-color: var(--color-medium-dark);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.signing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}
.signing-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--color-accent);
}
.signing-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
}
.signing-info h4 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    color: var(--color-light);
    margin-bottom: 0.25rem;
}
.genre-tag {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.signing-date {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
}
.details-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent);
    font-weight: 700;
}
.details-link:hover i {
    margin-left: 0.8rem;
}


/* RELEASES SECTION */
.releases-section { background-color: #1e1e1e; }
.releases-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.release-card {
    background-color: var(--color-dark); padding: 1.5rem; border-radius: 8px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); transition: transform 0.3s;
}
.release-card:hover { transform: scale(1.03); box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3); }
.album-art {
    width: 100%; height: auto; border-radius: 5px; margin-bottom: 1rem; border: 3px solid var(--color-secondary);
}
.artist-name { color: var(--color-secondary); font-weight: 700; margin-bottom: 0.5rem; }
.release-date { font-size: 0.9rem; color: #aaa; margin-bottom: 1rem; }
.listen-link {
    display: block; padding: 0.5rem; background-color: var(--color-accent); border-radius: 3px; font-weight: 700; margin-top: 1rem;
}
.listen-link.pre-save { background-color: #333; border: 1px solid var(--color-light); }


/* BANDS SECTION */
.bands-section { background-color: var(--color-dark); }
.intro-text { text-align: center; margin-bottom: 4rem; font-size: 1.1rem; color: #ccc; }
.band-profile {
    display: flex; align-items: center; gap: 3rem; margin-bottom: 5rem; background-color: var(--color-medium-dark); padding: 2rem; border-radius: 10px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.band-profile.reverse { flex-direction: row-reverse; }
.band-photo {
    width: 40%; min-width: 250px; height: auto; max-width: 100%; border-radius: 5px; border: 4px solid var(--color-accent); object-fit: cover;
}
.band-info { width: 60%; }
.band-name { font-family: var(--font-secondary); font-size: 2.5rem; color: var(--color-accent); margin-bottom: 0.5rem; }
.band-genre { color: var(--color-secondary); font-weight: 700; margin-bottom: 1rem; }
.band-socials a { font-size: 1.8rem; margin-right: 1rem; transition: color 0.3s; }
.band-socials a:hover { color: var(--color-secondary); }
.view-all-cta { display: block; width: 250px; margin: 4rem auto 0; text-align: center; }


/* TEAM SECTION */
.team-section { background-color: var(--color-medium-dark); }
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto 3rem; text-align: center;
}
.team-member-card {
    background-color: var(--color-dark); padding: 1.5rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); transition: transform 0.3s, box-shadow 0.3s;
}
.member-photo {
    width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin-bottom: 1rem; border: 3px solid var(--color-secondary);
}
.member-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; color: var(--color-accent); }


/* CONTACT SECTION */
.contact-section { background-color: #1e1e1e; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto;
}
.contact-form-container h3, .contact-info h3 { font-family: var(--font-secondary); font-size: 2rem; margin-bottom: 1rem; }
.demo-form input, .demo-form textarea {
    width: 100%; padding: 1rem; margin-bottom: 1rem; border: 1px solid #444; background-color: #2a2a2a; color: var(--color-light); border-radius: 5px; font-size: 1rem;
}
.demo-form textarea { resize: vertical; min-height: 100px; }
.info-line { margin: 0.8rem 0; }
.info-line i { color: var(--color-secondary); margin-right: 0.5rem; }


/* FOOTER */
.main-footer {
    background-color: #000; padding: 1.5rem 5%; text-align: center; font-size: 0.9rem; border-top: 2px solid rgba(255, 69, 0, 0.5);
}
.social-links { margin-top: 0.5rem; }
.social-links a { font-size: 1.5rem; margin: 0 0.8rem; opacity: 0.8; }
.social-links a:hover { opacity: 1; color: var(--color-accent); }


/* --- RESPONSIVITET FÖR MELLANSTORA SKÄRMAR (T.EX. STÖRRE PLATTOR) --- */
@media (max-width: 1000px) {
    .band-profile, .band-profile.reverse {
        flex-direction: column; align-items: flex-start; padding: 1.5rem;
    }
    .band-photo {
        width: 100%; min-width: unset; margin-bottom: 1.5rem;
    }
    .band-info {
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr; gap: 2rem;
    }
}

/* --- RESPONSIVITET FÖR MOBILA ENHETER (Max 768px) --- */
@media (max-width: 768px) {
    /* Header & Navigation */
    .main-header {
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
    }
    .menu-toggle {
        display: block; 
    }
    .main-nav {
        position: fixed; top: 0; left: 0; width: 70%; height: 100%;
        background-color: var(--color-medium-dark);
        flex-direction: column; justify-content: center; align-items: flex-start;
        padding: 2rem; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%); 
        transition: transform 0.3s ease-in-out; z-index: 999;
    }
    .main-nav.nav-open {
        transform: translateX(0);
    }
    .main-nav a {
        margin: 1rem 0; font-size: 1.2rem; padding: 0.5rem 0;
        border-bottom: 1px solid #333; width: 100%;
    }
    .main-nav a:last-child {
        border-bottom: none;
    }
    .main-nav a.shop-link { /* Justera shop-länken i utfälld meny */
        background: none; border: none; color: var(--color-secondary) !important;
        padding-left: 0;
    }
    
    .language-switcher { 
        font-size: 0.8rem; 
    }

    /* Generella Sektioner */
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    section { padding: 4rem 5%; }

    /* Hero */
    .headline { font-size: clamp(2rem, 10vw, 3.5rem); }
    .subtext { font-size: 1rem; }
    .cta-group { flex-direction: column; gap: 1rem; }
    .cta-button { width: 100%; }

    /* Gallerier */
    .program-grid, .team-grid, .releases-grid, .signings-grid {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }

    /* Kontakt */
    .contact-form-container, .contact-info { text-align: center; }
}
/* STYLING FÖR DEN SPECIFIKA RELEASE-SIDAN */

/* Generell mindre titel för PR */
.section-title-small {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-light); /* Ljust här istället för accent */
    text-transform: uppercase;
}
.release-page-body {
    padding-top: 0; /* Tar bort extra padding om den ärvts */
}

/* Release Hero */
.release-header {
    max-width: 800px;
    margin: 0 auto;
}
.release-date-tag {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.release-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    line-height: 1;
    margin: 0;
}
.release-subtitle {
    font-family: var(--font-secondary);
    font-size: 3rem;
    margin-bottom: 2rem;
}
.pr-cta-group {
    margin-top: 3rem;
}

/* Info Sektion */
.pr-section {
    padding: 4rem 5%;
    border-bottom: 1px solid #2a2a2a;
}
.pr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.lead-paragraph {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}
.pr-stats h4 {
    font-family: var(--font-secondary);
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.pr-stats ul {
    list-style: none;
    padding: 0;
}
.pr-stats ul li {
    background-color: #2a2a2a;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}
.pr-stats ul li i {
    color: var(--color-secondary);
    margin-right: 0.5rem;
}
.pr-full-bio {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Embed Sektion */
.embed-section {
    text-align: center;
    background-color: var(--color-medium-dark);
}
.embed-container {
    max-width: 700px;
    margin: 0 auto 1.5rem;
}
.embed-note {
    font-size: 0.9rem;
    color: #ccc;
}

/* Download Sektion */
.download-section {
    background-color: var(--color-dark);
}
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.download-item {
    display: block;
    background-color: var(--color-medium-dark);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 5px solid var(--color-secondary);
    transition: background-color 0.3s, transform 0.3s;
}
.download-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-3px);
}
.download-item i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.download-item h4 {
    font-family: var(--font-secondary);
    margin-bottom: 0.25rem;
}
.download-item p {
    font-size: 0.85rem;
    color: #aaa;
}

/* RESPONSIVITET FÖR PR-SIDAN */
@media (max-width: 768px) {
    .pr-grid {
        grid-template-columns: 1fr; /* Stapla info och stats vertikalt */
    }
    .pr-stats {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
    }
    .release-title {
        font-size: 3rem;
    }
    .release-subtitle {
        font-size: 2rem;
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
}
/* --- POP-UP MODAL STYLING --- */

/* Modalens bakgrund (Döljer innehållet bakom) */
.modal {
    display: none; /* Döljs som standard */
    position: fixed; 
    z-index: 2000; /* Ligger över allt annat */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Halvtransparent svart */
    backdrop-filter: blur(5px);
}

/* Modalens innehåll */
.modal-content {
    background-color: var(--color-medium-dark);
    margin: 10% auto; /* Centrera vertikalt och horisontellt */
    padding: 30px;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    width: 80%; 
    max-width: 450px; /* Maxbredd för att se snyggt ut */
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.4);
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s;
}

/* Stäng-knappen (X) */
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    transition: color 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: var(--color-accent);
    text-decoration: none;
}

/* Albumkonst i pop-up */
.modal-album-art {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 2px solid var(--color-secondary);
}

/* Text i pop-up */
.modal-content h3 {
    color: var(--color-accent);
    font-family: var(--font-secondary);
    margin-bottom: 0.5rem;
}

.modal-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.artist-name-modal {
    color: var(--color-secondary);
    font-weight: 700;
}

.release-info {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* CTA-knapp i pop-up */
.modal-cta {
    display: inline-block;
    width: 80%;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}

@media (max-width: 600px) {
    .modal-content {
        width: 90%;
        margin: 20% auto;
    }
}
/* --- BAND PROFIL SPECIFIK STYLING --- */

.band-section {
    padding: 4rem 5%;
}
.section-title-small {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-light); 
    text-transform: uppercase;
}

/* BAND HERO SPECIFIKT */
/* BAND HERO SPECIFIKT */
.band-hero-section {
    position: relative;
    height: 60vh; /* Mindre än startsidan */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* VIKTIGT: Lägg till CSS för att hantera bilden som kommer från HTML style="" */
    background-size: cover;
    background-position: center center;
}

.band-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* DENNA RAD SKAPAR DEN MÖRKA OVERLAYEN */
    backdrop-filter: blur(2px);
}

.band-hero-content {
    position: relative;
    z-index: 10;
}

.band-name-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--color-accent);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.band-genre-detail {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.band-hero-socials a {
    font-size: 2.5rem;
    margin: 0 1rem;
    color: var(--color-light);
}
.band-hero-socials a:hover {
    color: var(--color-secondary);
}

/* BIOGRAFI SEKTION */
.bio-section {
    background-color: var(--color-medium-dark);
}
.bio-content {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.bio-image {
    width: 350px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid var(--color-accent);
    object-fit: cover;
    flex-shrink: 0;
}
.bio-text {
    flex-grow: 1;
}
.lead-paragraph {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* GALLERI SEKTION (PRESSBILDER) */
.gallery-section {
    background-color: var(--color-dark);
}
.press-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.photo-item {
    background-color: var(--color-medium-dark);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}
.photo-item:hover {
    transform: translateY(-5px);
}
.gallery-photo {
    width: 100%;
    height: auto;
    display: block;
}
.download-link {
    display: block;
    padding: 0.75rem;
    background-color: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 700;
    text-transform: uppercase;
}
.download-link:hover {
    background-color: #00e5ff;
}

/* VIDEO GALLERI SEKTION */
.video-section {
    background-color: var(--color-medium-dark);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.video-item {
    background-color: var(--color-dark);
    padding: 1rem;
    border-radius: 8px;
}
.video-item iframe {
    /* Gör inbäddad video responsiv */
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    display: block;
}
.video-caption {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
    text-align: center;
}

/* RESPONSIVITET FÖR BANDPROFILEN */
@media (max-width: 768px) {
    .band-hero-section {
        height: 40vh;
    }
    .band-name-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    .band-hero-socials a {
        font-size: 2rem;
    }
    .bio-content {
        flex-direction: column;
        gap: 2rem;
    }
    .bio-image {
        width: 100%;
        max-width: 100%;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
}