/* ============================================
   BRAQTUNES ENTERTAINMENT
   Cinematic Producer Portfolio
   Mobile-First + Travis Scott Aesthetic
   FIXED VISIBILITY ISSUES
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff2a6e;
    --primary-dark: #b5179e;
    --secondary: #7209b7;
    --dark: #050505;
    --darker: #010101;
    --light: #efefef;
    --gray: #888;
    --glow: rgba(255, 42, 110, 0.4);
}

body {
    background: var(--dark);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}



/* ========== TYPOGRAPHY ========== */
h1, h2, h3, .logo, .hero-title {
    font-family: 'Unbounded', cursive;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Logo Image Style - Center & Zoom */
.logo-image {
    height: 66px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* If you need to zoom/crop the image to fill */
.logo-image.zoom {
    height: 60px;
    width: auto;
    object-fit: cover;
    object-position: center center;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }
    .logo-image.zoom {
        height: 55px;
    }
}

.studio-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.studio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.image-overlay i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.image-overlay span {
    color: white;
    font-weight: 600;
}


.glow-text {
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 42, 110, 0.3);
}

.accent {
    color: var(--primary);
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 3rem;
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.glitch-name {
    font-family: 'Unbounded', cursive;
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 900;
    animation: glitchPulse 1s infinite alternate;
    text-align: center;
}

@keyframes glitchPulse {
    0% { text-shadow: -2px 0 red, 2px 0 cyan; transform: skew(0deg);}
    25% { text-shadow: 3px 0 red, -3px 0 cyan; transform: skew(2deg);}
    75% { text-shadow: -2px 0 lime, 2px 0 magenta; transform: skew(-1deg);}
    100% { text-shadow: 2px 0 yellow, -1px 0 blue; transform: skew(0deg);}
}

.sub-line {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.7;
    letter-spacing: 2px;
}

/* ========== SITE CONTAINER - FIXED VISIBILITY ========== */
.site-container {
    opacity: 1;
    transition: opacity 1.5s ease;
    position: relative;
    z-index: 1;
}

.site-visible {
    opacity: 1;
}

/* ========== PARALLAX BACKGROUND ========== */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 110%;
    height: 120%;
    background: radial-gradient(circle at 30% 20%, #0a0a1a, #000000);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.1"><path fill="none" stroke="%23ff3366" stroke-width="0.5" d="M0,400 L1200,200 M200,0 L400,800 M800,0 L600,800"/><circle cx="300" cy="200" r="60" stroke="%23ff44aa" fill="none"/></svg>');
    background-repeat: repeat;
    background-size: 600px;
    z-index: -2;
    pointer-events: none;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 42, 110, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-family: 'Unbounded', cursive;
    font-weight: 900;
    font-size: 1.2rem;
}

.logo-glitch {
    background: linear-gradient(135deg, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-sub {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--gray);
}

.hamburger {
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--light);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    padding: 2rem;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    margin: 1.5rem 0;
}

.nav-menu ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Unbounded', cursive;
    transition: 0.2s;
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
}

.nav-social {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}

.nav-social i {
    cursor: pointer;
    transition: 0.2s;
}

.nav-social i:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* ========== MAIN CONTENT ========== */
main {
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 1rem auto;
}

.hero-desc {
    max-width: 600px;
    margin: 1.5rem auto;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(95deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 0 15px rgba(255, 42, 110, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 42, 110, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--light);
}

.btn-secondary:hover {
    background: rgba(255, 42, 110, 0.1);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ========== ABOUT PREVIEW ========== */
.about-preview {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

.glow-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 42, 110, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.glow-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 42, 110, 0.2);
    transform: translateY(-5px);
}

.glow-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ========== CARDS GRID ========== */
.services-preview {
    padding: 4rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 42, 110, 0.3);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-hover-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transition: 0.3s;
}

.service-card:hover .card-hover-glow {
    transform: scaleX(1);
}

/* ========== FEATURED BEAT ========== */
.featured-beat {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.beat-showcase {
    background: linear-gradient(135deg, rgba(255, 42, 110, 0.1), rgba(0, 0, 0, 0.8));
    border-radius: 2rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    border: 1px solid rgba(255, 42, 110, 0.3);
}

@media (min-width: 768px) {
    .beat-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.play-featured {
    background: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.2s;
}

.play-featured:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary);
}

.beat-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    width: 100%;
    height: 60px;
    background: repeating-linear-gradient(90deg, var(--primary), var(--primary) 10px, transparent 10px, transparent 20px);
    animation: waveMove 1s linear infinite;
}

@keyframes waveMove {
    from { background-position: 0 0; }
    to { background-position: 40px 0; }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, rgba(255, 42, 110, 0.15), rgba(0, 0, 0, 0.5));
    border-radius: 2rem;
    padding: 3rem;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: var(--gray);
}

/* ========== STUDIO PAGE ========== */
.studio-showcase, .studio-atmosphere {
    padding: 4rem 0;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gear-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
}

.gear-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.gear-card:hover {
    background: rgba(255, 42, 110, 0.1);
    transform: translateY(-5px);
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .atmosphere-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vibe-list {
    list-style: none;
    margin-top: 1.5rem;
}

.vibe-list li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vibe-list li i {
    color: var(--primary);
}

.visual-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    border-radius: 1.5rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px dashed var(--primary);
}

.visual-placeholder i {
    font-size: 3rem;
    color: var(--gray);
}

.booking-cta {
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
}

/* ========== BEATS PAGE ========== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--light);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.beats-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.beat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.beat-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 42, 110, 0.2);
}

.beat-art {
    width: 60px;
    height: 60px;
    background: rgba(255, 42, 110, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.beat-details {
    flex: 1;
}

.beat-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.beat-meta {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.beat-actions {
    display: flex;
    gap: 0.5rem;
}

.play-beat, .license-beat {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    border: none;
}

.play-beat {
    background: var(--primary);
    color: white;
}

.license-beat {
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--light);
}

.license-beat:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.beat-cta {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== SERVICES PAGE ========== */
.services-detailed {
    padding: 4rem 0;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
}

@media (min-width: 768px) {
    .service-block {
        grid-template-columns: auto 1fr;
    }
    .service-block.reverse {
        grid-template-columns: 1fr auto;
        direction: rtl;
    }
    .service-block.reverse .service-info {
        direction: ltr;
    }
}

.service-icon-large i {
    font-size: 4rem;
    color: var(--primary);
}

.price-tag {
    margin: 1rem 0;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary);
}

.booking-note {
    padding: 4rem 0;
}

.note-card {
    background: linear-gradient(135deg, rgba(255, 42, 110, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 42, 110, 0.3);
}

.note-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: center;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: 0.2s;
}

.social-links a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-item h3 i {
    color: var(--primary);
    font-size: 1rem;
}

.faq-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 5% 2rem;
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo span {
    font-family: 'Unbounded', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-links {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-social i {
    cursor: pointer;
    transition: 0.2s;
}

.footer-social i:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.7rem;
}

/* ========== UTILITIES ========== */
.reveal {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FIX: Make sure content is visible */
.site-container {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Make sure loader doesn't hide content after fade */
.loader-hidden {
    display: none !important;
}

/* ========== SONGS PAGE ========== */
.songs-hero {
    background: radial-gradient(circle at 30% 20%, rgba(255, 42, 110, 0.1), transparent);
}

.songs-grid-section {
    padding: 4rem 0;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.song-card {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 42, 110, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.song-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 42, 110, 0.3);
}

.song-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.song-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.song-info {
    padding: 1.5rem;
}

.song-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Unbounded', cursive;
    letter-spacing: -0.5px;
}

.song-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.song-meta i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.song-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.songs-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 42, 110, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 2rem;
}

.songs-cta p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .songs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .song-info h3 {
        font-size: 1.2rem;
    }
    
    .song-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* ========== PLAYLIST FEATURE SECTION ========== */
.playlist-feature {
    margin-bottom: 4rem;
}

.playlist-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 42, 110, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 42, 110, 0.3);
}

.playlist-cover img {
    width: 100%;
    max-width: 280px;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(255, 42, 110, 0.3);
}

.playlist-info h2 {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
}

.playlist-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.playlist-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Embedded Playlist */
.playlist-embed-container {
    margin-bottom: 4rem;
}

.embed-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.playlist-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 1.5rem;
    overflow: hidden;
}

.playlist-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Divider */
.section-divider {
    text-align: center;
    margin: 4rem 0 2rem;
    position: relative;
}

.section-divider span {
    background: var(--dark);
    padding: 0 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .playlist-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .playlist-cover img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .playlist-links {
        justify-content: center;
    }
    
    .embed-title {
        text-align: center;
    }
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 4rem 0;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(255, 42, 110, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-address i {
    font-size: 2rem;
    color: var(--primary);
}

.map-address strong {
    font-size: 1.1rem;
    font-family: 'Unbounded', cursive;
}

.map-address small {
    color: var(--gray);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
    
    .map-address {
        flex-direction: column;
        text-align: center;
    }
    
    .map-address i {
        font-size: 2rem;
    }
}

.gallery-button-container {
    margin-top: 1.5rem;
    text-align: center;
}

.gallery-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
}

.gallery-hero {
    background: radial-gradient(circle at 30% 20%, rgba(255, 42, 110, 0.15), transparent);
}

.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 1rem;
    }
    
    .gallery-overlay span {
        font-size: 0.8rem;
    }
}