/* SPIRALESS Website - Main Styles */

/* CSS Variables for Color Palette */
:root {
    /* Primary Colors */
    --deep-navy: #0a0f2c;
    --mid-blue: #1b2b5a;
    --bright-blue: #2b3a6a;
    --highlight-blue: #00d6c9;
    --accent-aqua: #00fff0;
    --deep-violet: #2b1b5a;
    --neutral-gray: #cfd2dc;
    
    /* Gradients - Updated with lighter hero-section inspired colors */
    --bg-gradient: linear-gradient(135deg, #1b2b5a 0%, #2b3a6a 50%, #1b2b5a 100%);
    --radial-gradient: radial-gradient(circle at 30% 50%, #00d6c9 0%, #1b2b5a 100%);
    --contact-gradient: linear-gradient(45deg, var(--bright-blue) 0%, var(--mid-blue) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 6rem 0;
    --section-padding-mobile: 4rem 0;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 214, 201, 0.1);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-gradient);
    color: var(--neutral-gray);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

/* Dark background pages - use darkest portion of gradient */
body.dark-bg-page {
    background: url('../assets/images/page-bg.png') center center/cover no-repeat, #1E223A;
    background-attachment: fixed;
}

/* Home page content sections with transparency */
body.home-page-content .intro-section,
body.home-page-content .cta-section {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    margin: 2rem 0;
    padding: 2rem 0;
}

body.home-page-content .albums-section {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    margin: 2rem 0;
    padding: 2rem 0;
}

/* Enhanced text contrast for transparent sections */
body.home-page-content .intro-section .section-title,
body.home-page-content .albums-section .section-title,
body.home-page-content .cta-section .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

body.home-page-content .intro-section .text-content p,
body.home-page-content .albums-section .album-info p,
body.home-page-content .cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Home page specific album styling to match background tonality */
body.home-page-content .albums-section .album-card {
    background: rgba(35, 75, 105, 0.3);
    border: 1px solid rgba(0, 214, 201, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 214, 201, 0.1);
}

body.home-page-content .albums-section .album-card:hover {
    background: rgba(35, 75, 105, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 214, 201, 0.2);
    border-color: rgba(0, 214, 201, 0.7);
}

body.home-page-content .albums-section .album-card .album-info h3 {
    color: var(--highlight-blue);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

body.home-page-content .albums-section .album-card .album-info p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Album cover styling for distinct separation */
body.home-page-content .albums-section .album-cover {
    background: url('../assets/images/music.png') center center/cover no-repeat, rgba(15, 40, 65, 0.6);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid var(--highlight-blue);
    backdrop-filter: blur(5px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: white;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
    max-width: 72ch;
}

/* Container and Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile);
    }
}

/* Intro Section - Journey of Fusion Gradient */
.intro-section {
    background: linear-gradient(to bottom right, #2E5A84, #1E223A);
    color: var(--text-white);
}

.intro-section .section-title {
    color: var(--text-white);
}

.intro-section .text-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 44, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(207, 210, 220, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 15, 44, 0.9);
    box-shadow: var(--shadow-soft);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    color: var(--highlight-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--neutral-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-blue);
    transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
    color: white;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav {
        padding: 1rem 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: white;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        z-index: 1002;
        cursor: pointer;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 2px;
        transition: var(--transition-smooth);
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Full screen mobile menu */
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 15, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 1001;
    }
    
    .nav-menu .nav-link {
        font-size: 1.3rem;
        padding: 1rem;
        color: white;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--highlight-blue);
    }
    
    /* Better mobile text readability */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .text-content h3 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .text-content h4 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .text-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Better mobile spacing */
    .content-section {
        padding: 2rem 0;
    }
    
    .content-block {
        margin-bottom: 2rem;
    }
}

/* Hero Sections */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    filter: contrast(0.8) saturate(0.9) brightness(0.95);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 35, 58, 0) 0%, rgba(26, 35, 58, 0.2) 40%, rgba(26, 35, 58, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    text-align: left; /* Left aligned hero content */
}

/* Individual backgrounds for hero title and subtitle removed - using original styling */

.hero-title {
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: block;
    text-align: left; /* Left aligned title */
}

.hero-aligned {
    text-align: left; /* Left aligned for subtitle and CTAs */
    max-width: 500px; /* Align under title */
}

.hero-subtitle {
    font-size: 1.5rem; /* Increased from 1.25rem */
    color: var(--neutral-gray);
    margin-bottom: 2rem; /* Bottom margin for spacing */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: block;
    text-align: left; /* Left aligned subtitle */
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start; /* Changed from center to left alignment */
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--highlight-blue);
    color: var(--deep-navy);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--accent-aqua);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 214, 201, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--highlight-blue);
}

.btn-secondary:hover {
    background: var(--highlight-blue);
    color: var(--deep-navy);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--highlight-blue);
    border: 1px solid var(--highlight-blue);
}

.btn-outline:hover {
    background: var(--highlight-blue);
    color: var(--deep-navy);
}

/* Content Blocks */
.content-block {
    max-width: 72ch;
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.max-width-72ch {
    max-width: 72ch;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--highlight-blue);
    border-radius: 2px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Albums */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.album-card {
    background: rgba(20, 58, 87, 0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 214, 201, 0.3);
    transition: var(--transition-smooth);
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 214, 201, 0.2);
    border-color: var(--highlight-blue);
    background: rgba(20, 58, 87, 0.8);
}

/* Album info styling for better contrast */
.album-card .album-info h3 {
    color: var(--highlight-blue);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.album-card .album-info p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.album-cover {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/images/music.png') center center/cover no-repeat, rgba(27, 43, 90, 0.3);
    border: 1px solid var(--highlight-blue);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(27, 43, 90, 0.3);
}

.album-info h3 {
    margin-bottom: 1rem;
    color: var(--highlight-blue);
}

.album-info p {
    margin-bottom: 1.5rem;
    color: var(--neutral-gray);
}

@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
    }
}

/* Album Sections */
.album-section {
    background: rgba(27, 43, 90, 0.1);
    border-top: 1px solid rgba(207, 210, 220, 0.1);
}

.album-block {
    max-width: 800px;
    margin: 0 auto;
}

.album-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.album-header .album-cover {
    height: 300px;
}

.album-header .album-info h2 {
    margin-bottom: 1rem;
    color: var(--highlight-blue);
}

.album-highlight {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: var(--highlight-blue);
    color: var(--deep-navy);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.highlight-track {
    background: var(--deep-violet);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .album-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Tracks */
.tracks-container h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--highlight-blue);
}

.tracks-list {
    display: grid;
    gap: 1rem;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(27, 43, 90, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(207, 210, 220, 0.1);
    transition: var(--transition-smooth);
}

.track-item:hover {
    border-color: var(--highlight-blue);
    background: rgba(27, 43, 90, 0.3);
}

.track-number {
    font-weight: 600;
    color: var(--highlight-blue);
    min-width: 2rem;
    text-align: center;
}

.track-title {
    flex: 1;
    margin-left: 1rem;
    font-weight: 500;
}

.track-duration {
    color: var(--neutral-gray);
    font-size: 0.875rem;
}

/* Credits Panel */
.credits-panel {
    background: rgba(43, 27, 90, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(207, 210, 220, 0.1);
}

.credits-panel h4 {
    color: var(--highlight-blue);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.credits-panel ul {
    list-style: none;
}

.credits-panel li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(207, 210, 220, 0.05);
}

.credits-panel li:last-child {
    border-bottom: none;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(27, 43, 90, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(207, 210, 220, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.review-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
}

.review-card cite {
    color: var(--highlight-blue);
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--highlight-blue);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--highlight-blue);
    border-radius: 50%;
    border: 3px solid var(--deep-navy);
    z-index: 1;
}

.timeline-year {
    background: var(--highlight-blue);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 3rem;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    margin-left: 2rem;
}

.timeline-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--neutral-gray);
    margin: 0;
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--neutral-gray);
    border: 1px solid rgba(207, 210, 220, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--highlight-blue);
    color: var(--deep-navy);
    border-color: var(--highlight-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--mid-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-gray);
    font-size: 0.9rem;
    text-align: center;
}

.gallery-item.hidden {
    display: none;
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: rgba(27, 43, 90, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(207, 210, 220, 0.1);
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background: var(--mid-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-gray);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    margin-bottom: 0.5rem;
    color: var(--highlight-blue);
}

.video-info p {
    color: var(--neutral-gray);
    margin: 0;
}

.video-cta {
    text-align: center;
}

/* Press Grid */
.press-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: linear-gradient(to bottom, rgba(42, 42, 42, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(207, 210, 220, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 214, 201, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(207, 210, 220, 0.6);
}

.contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-social h3,
.contact-quick-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.contact-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid var(--highlight-blue);
    background: var(--highlight-blue);
    color: var(--deep-navy);
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.contact-social .social-link span {
    font-size: 0.75rem;
    color: var(--deep-navy);
    font-weight: 600;
    text-align: center;
}

.contact-social .social-link svg {
    fill: var(--deep-navy);
    transition: var(--transition-smooth);
}

.contact-social .social-link:hover {
    background: var(--accent-aqua);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 214, 201, 0.3);
    border-color: var(--accent-aqua);
}

.contact-social .social-link:hover span {
    color: var(--deep-navy);
}

.contact-social .social-link:hover svg {
    fill: var(--deep-navy);
}

/* Override for contact page centered layout */
.contact-social {
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive adjustments for contact social buttons */
@media (max-width: 768px) {
    .contact-social .social-link {
        padding: 0.75rem 1.5rem;
    }
}

.contact-quick-links ul {
    list-style: none;
}

.contact-quick-links li {
    margin-bottom: 0.75rem;
}

.contact-quick-links a {
    color: var(--neutral-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-quick-links a:hover {
    color: var(--highlight-blue);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: url('../assets/images/footer-bg.png') center center/cover no-repeat, #244B73;
    border-top: 1px solid rgba(207, 210, 220, 0.1);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    position: relative;
}

/* Add dark overlay for better text readability */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 44, 0.4);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    letter-spacing: 0.1em;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.footer-contact a {
    color: var(--highlight-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-designer {
    text-align: center;
    color: var(--neutral-gray);
    border-left: 1px solid rgba(207, 210, 220, 0.2);
    padding-left: 1rem;
    margin-top: 1rem;
}

.footer-designer p {
    margin: 0.25rem 0;
    font-size: 0.85rem;
}

.footer-designer p:first-child {
    font-weight: 600;
    color: var(--highlight-blue);
    font-size: 0.9rem;
}

.footer-designer p:nth-child(2) {
    font-weight: 500;
    color: var(--text-white);
    font-size: 0.9rem;
}

.footer-designer a {
    color: var(--highlight-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-designer a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-designer em {
    font-style: italic;
    color: var(--neutral-gray);
    font-size: 0.8rem;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    color: var(--neutral-gray);
    margin: 0;
    font-size: 0.9rem;
}

.footer-right .social-links {
    justify-content: flex-end;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: center;
}

/* Force right alignment for social media buttons in footer */
.footer-right {
    text-align: right;
}

.footer-right .social-links a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid var(--highlight-blue);
    background: var(--highlight-blue);
    color: var(--deep-navy);
    box-shadow: 0 4px 20px rgba(0, 214, 201, 0.1);
}

.footer-right .social-links a svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--deep-navy) !important;
}

.footer-right .social-links a:hover {
    background: var(--accent-aqua);
    border-color: var(--accent-aqua);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 214, 201, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(207, 210, 220, 0.1);
}

.footer-links a {
    color: var(--neutral-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--highlight-blue);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-right .social-links {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Audio Player Styles */
.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(27, 43, 90, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(207, 210, 220, 0.1);
    transition: var(--transition-smooth);
}

.audio-player:hover {
    border-color: var(--highlight-blue);
    background: rgba(27, 43, 90, 0.3);
}

.play-pause-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--highlight-blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

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

.audio-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.track-title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-duration {
    color: var(--neutral-gray);
    font-size: 0.875rem;
    margin-left: 1rem;
}

.audio-progress {
    flex: 2;
    min-width: 100px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(207, 210, 220, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-filled {
    height: 100%;
    background: var(--highlight-blue);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

/* Band Photos Row Styles */
.band-photos-row {
    margin-bottom: 3rem;
}

.band-photo-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.band-photo-row .band-photo {
    flex: 1;
    flex-shrink: 0;
    width: 23%;
    min-width: 200px;
    max-width: 280px;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: var(--mid-blue);
}

.band-photo:hover {
    transform: scale(1.05);
}

.band-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.band-photo:hover img {
    opacity: 0.8;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.collage-item {
    background: var(--mid-blue);
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.collage-item:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .content-block {
        padding: 0 0.5rem;
    }
    
    .text-content {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        text-align: left;
        padding: 0 1rem;
    }
    
    .hero-aligned {
        max-width: 100%; /* Full width on mobile */
        padding: 0 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .album-header {
        grid-template-columns: 1fr;
    }
    
    /* Fixed band photo layout for mobile - show full images */
    .band-photo-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .band-photo-row .band-photo {
        width: 100%;
        max-width: 300px;
        height: 280px;
        margin: 0 auto;
    }
    
    .audio-player {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .audio-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .track-duration {
        margin-left: 0;
    }
    
    .audio-progress {
        width: 100%;
    }
}
