/* ============================================
   SECTIONS.CSS - Glassmorphism Content Sections
   ============================================ */

/* Section Base */
section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

.section-title-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-bottom: 3rem;
    position: relative;
}

.section-title-wrap::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #F3D40F, #FF3891, #F3D40F);
    box-shadow: 0 0 10px #ff0080;
    transform-origin: center;
    animation: expandWidth 1s ease-out;
}


.section-title-wrap .section-title {
    margin-bottom: 0;
    width: auto;
}

.section-flame {
    height: 256px;
    width: auto;
    flex-shrink: 0;
    transform: translateY(-0px); /* adjust Y position relative to text */
}

.section-title {
    font-family: 'MetalMania', sans-serif;
    font-size: clamp(2rem, 5vw, 5.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(0deg, #FF3891, #F3D40F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: none;
}

@keyframes expandWidth {
    from { transform: translateX(-50%) scaleX(0); }
    to   { transform: translateX(-50%) scaleX(1); }
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

/* =====================
   SHOWS SECTION
   ===================== */
.shows-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 113, 237, 0.15);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--accent-purple);
    font-size: 1rem;
    letter-spacing: 2px;
}

.show-date .day {
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.show-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.show-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.show-ticket,
a.show-ticket {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 113, 237, 0.3);
}

.show-ticket:hover,
a.show-ticket:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(196, 113, 237, 0.5);
}

/* =====================
   PAST SHOWS SECTION
   ===================== */
.past-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.past-show-item {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.past-show-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(196, 113, 237, 0.15);
}

.past-show-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.past-show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.past-show-item:hover .past-show-image img {
    transform: scale(1.05);
}

.past-show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 12, 41, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.past-show-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
}

.past-show-info {
    padding: 1.2rem 1.5rem;
}

.past-show-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    background: linear-gradient(90deg, #ff0080, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.past-show-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =====================
   MUSIC SECTION
   ===================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.album {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 113, 237, 0.15);
}

.album iframe {
    border-radius: 12px;
    margin-bottom: 1rem;
}

.album h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    background: linear-gradient(90deg, #ff0080, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.album p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Platform Buttons */
.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.platform-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.platform-btn:hover {
    background: var(--glass-white-strong);
    transform: translateY(-2px);
}

.platform-btn.soundcloud {
    border-color: rgba(255, 107, 0, 0.4);
}

.platform-btn.soundcloud:hover {
    background: rgba(255, 107, 0, 0.2);
}

.platform-btn.bandcamp {
    border-color: rgba(0, 161, 198, 0.4);
}

.platform-btn.bandcamp:hover {
    background: rgba(0, 161, 198, 0.2);
}

/* Audio Player */
.audio-player audio {
    width: 100%;
    border-radius: 50px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .section-flame {
        height: 80px;
    }

    .section-title-wrap::after {
        width: 80%;
    }

    section {
        padding: 4rem 4%;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 250px;
    }

    .show-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .past-shows-grid {
        grid-template-columns: 1fr;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-flame {
        height: 50px;
    }

    .section-title-wrap {
        gap: 8px;
    }

    .section-title-wrap::after {
        width: 90%;
    }
}
