/* =========================================
   FINDUSMUSIK - PROFESSIONAL MUSIC THEME
   Cinematic Dark Design with Music Focus
   ========================================= */

:root {
    /* Color Palette */
    --bg-body: #000000;
    --bg-surface: #0a0a0a;
    --bg-surface-alt: #141414;
    --bg-card: rgba(25, 25, 25, 0.8);
    --bg-glass: rgba(30, 30, 30, 0.6);
    
    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --text-dim: #666666;
    
    /* Accent Colors */
    --accent: #ff3366;
    --accent-hover: #ff5580;
    --accent-glow: rgba(255, 51, 102, 0.3);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Libre Baskerville', serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    
    /* Animation */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    z-index: 2000;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-eyebrow {
    display: block;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 20px auto 0;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px 0;
}

.divider-center {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-main);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    border-color: var(--text-main);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-body);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1100;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
}

/* Desktop Navigation */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.7;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
    padding: 8px;
}

.bar {
    width: 28px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s var(--ease);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-surface-alt);
        padding: 120px 40px 40px;
        transition: right 0.4s var(--ease);
        z-index: 1050;
        box-shadow: -5px 0 40px rgba(0,0,0,0.7);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 28px;
    }

    .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-display);
    }

    .menu-toggle.active .bar:nth-child(1) { 
        transform: rotate(45deg) translate(8px, 8px); 
    }
    .menu-toggle.active .bar:nth-child(2) { 
        opacity: 0; 
    }
    .menu-toggle.active .bar:nth-child(3) { 
        transform: rotate(-45deg) translate(8px, -8px); 
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.85);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1040;
        backdrop-filter: blur(5px);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* =========================================
   HERO SECTION - ENHANCED
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%),
        url('https://images.unsplash.com/photo-1501612780327-45045538702b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
}

.hero-eyebrow {
    display: block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.85;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-word {
    display: block;
}

.title-word.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-main);
    text-stroke: 2px var(--text-main);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 120px 0;
    background: var(--bg-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
    mix-blend-mode: multiply;
}

.about-content h2 {
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   MUSIC SECTION
   ========================================= */
.music-section {
    padding: 120px 0;
    background: var(--bg-body);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.album-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-8px);
}

.album-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.vinyl-record {
    position: absolute;
    top: 5%;
    right: -15%;
    width: 90%;
    height: 90%;
    background: #111;
    border-radius: 50%;
    z-index: 1;
    background-image: repeating-radial-gradient(#111 0, #111 2px, #222 3px, #222 4px);
    box-shadow: 5px 0 20px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.album-card:hover .vinyl-record {
    transform: translateX(30px) rotate(45deg);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
}

.album-info {
    padding: 30px;
}

.album-year {
    display: inline-block;
    background: rgba(255, 51, 102, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.album-info h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.album-meta {
    color: var(--text-dim);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.album-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   SERVICES SECTION - ENHANCED
   ========================================= */
.services-section {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.card-glass {
    position: absolute;
    inset: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .card-glass {
    background: rgba(40, 40, 40, 0.8);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.service-card.highlight .card-glass {
    background: rgba(255, 51, 102, 0.1);
    border-color: var(--accent);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 50%;
    margin-bottom: 30px;
    color: var(--accent);
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--text-main);
    transform: scale(1.1) rotate(5deg);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(255, 51, 102, 0.1);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* =========================================
   TOUR SECTION
   ========================================= */
.tour-section {
    padding: 120px 0;
    background: var(--bg-body);
}

.tour-list {
    max-width: 900px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tour-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.tour-item.sold-out-item {
    opacity: 0.6;
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 20px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: var(--border-radius);
}

.date-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent);
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.tour-info {
    flex: 1;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.sold-out {
    color: #ef4444;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    padding: 10px 20px;
    border: 1px solid #ef4444;
    border-radius: var(--border-radius);
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
    padding: 120px 0;
    background: var(--bg-surface);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.post-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 51, 102, 0.2);
}

.post-vertical {
    display: grid;
    gap: 0;
}

.post-vertical .post-image {
    width: 100%;
    height: 400px;
}

.post-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-horizontal.reverse {
    direction: rtl;
}

.post-horizontal.reverse .post-content {
    direction: ltr;
}

.post-image {
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 40px;
}

.post-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 51, 102, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 20px;
}

.post-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.post-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.read-more {
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.read-more:hover {
    gap: 12px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 120px 0;
    background: var(--bg-body);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details strong {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-details a {
    color: var(--accent);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-hover);
}

.contact-form {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-main);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-submit {
    width: 100%;
    border: none;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    padding: 80px 0 40px;
    background: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.875rem;
}

.footer-nav h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-nav a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--text-main);
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vinyl-record {
        display: none;
    }
}

@media (max-width: 900px) {
    .post-horizontal {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .about-section,
    .music-section,
    .services-section,
    .tour-section,
    .blog-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .section-header-center {
        margin-bottom: 50px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .post-vertical .post-image {
        height: 300px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-bg-image {
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 40px 30px;
    }
}

/* =========================================
   WORLD TOUR SECTION
   ========================================= */
.world-tour-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-body);
}

.tour-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1459749411177-0473ef7161cf?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: grayscale(80%) contrast(1.1);
    animation: slowZoom 25s infinite alternate;
}

.tour-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
}

.tour-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.tour-eyebrow {
    display: inline-block;
    background: var(--accent);
    color: var(--text-main);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    animation: pulse 3s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tour-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tour-year {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    font-size: 0.8em;
    margin-top: 10px;
}

.tour-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.tour-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.tour-cities .city {
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.tour-cities .city:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
}

.tour-cities .separator {
    color: var(--accent);
    opacity: 0.6;
}

.tour-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tour-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 400px;
    margin: 0;
}

/* =========================================
   BLOG EXPANDABLE POSTS - FIXED VERSION
   ========================================= */

/* Full content starts hidden */
.post-full-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                margin-top 0.3s ease;
    margin-top: 0;
}

/* Expanded state */
.post-full-content.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 24px;
}

.post-full-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.post-full-content p:last-child {
    margin-bottom: 0;
}

/* Read More Button - Fixed for visual glitches */
.read-more-btn {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 8px 0;
    font-family: inherit;
    margin-top: 20px;
    
    /* Fix for blue outline/highlight glitch */
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--accent-hover);
}

/* Custom focus style instead of default blue box */
.read-more-btn:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--accent);
}

.read-more-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.1em;
    line-height: 1;
}

/* Arrow rotation when expanded */
.read-more-btn.expanded .btn-arrow {
    transform: rotate(90deg);
}

/* Ensure proper spacing */
.post-excerpt {
    margin-bottom: 24px;
}

.post-excerpt p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   MODAL SYSTEM
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-surface-alt);
    padding: 50px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-label span {
    flex: 1;
}

.btn-full {
    width: 100%;
}

/* =========================================
   RESPONSIVE ENHANCEMENTS
   ========================================= */
@media (max-width: 768px) {
    .world-tour-section {
        padding: 100px 0;
    }
    
    .tour-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .tour-cities {
        font-size: 1.1rem;
        gap: 15px;
    }
    
    .tour-subtitle {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tour-cities {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-cities .separator {
        display: none;
    }
}
