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

:root {
    --primary-color: #c44536;
    --secondary-color: #2a2a2a;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
    --gradient-1: linear-gradient(135deg, #c44536 0%, #8b2f23 100%);
    --gradient-2: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Prevent flash during image loading */
.music img {
    background-color: #0a0a0a;
}

.about img {
    background-color: #ffffff;
}

.hero {
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(196, 69, 54, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 69, 54, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #0a0a0a;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-photo.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFadeIn 2.5s ease-out forwards;
    pointer-events: none;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    margin-bottom: var(--spacing-sm);
    letter-spacing: 10px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--text-light);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: var(--spacing-md) auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.band-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.member-photo {
    text-align: center;
}

.member-photo img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.member-photo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.member-name {
    margin-top: var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

.lead {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: var(--primary-color);
}

.quote {
    font-style: italic;
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
    background: rgba(196, 69, 54, 0.05);
    border-radius: 4px;
    font-size: 1.2rem !important;
}

.influences {
    margin-top: var(--spacing-lg);
}

.influences h4 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.influence-list {
    list-style: none;
}

.influence-list li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, rgba(196, 69, 54, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.influence-list li:hover {
    transform: translateX(10px);
    background: linear-gradient(to right, rgba(196, 69, 54, 0.1) 0%, transparent 100%);
}

.influence-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.influence-list span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--gradient-1);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(196, 69, 54, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 69, 54, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Music Section */
.music {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 69, 54, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 69, 54, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.music .section-header h2 {
    color: white;
}

.music .section-line {
    background: linear-gradient(90deg, transparent, rgba(196, 69, 54, 0.5), transparent);
}

.releases {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.releases::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(196, 69, 54, 0.5) 10%,
        rgba(196, 69, 54, 0.5) 90%,
        transparent 100%);
    z-index: 0;
}

.release-card.featured {
    grid-template-areas: "cover dot space";
}

.release-card.featured .release-featured-content {
    grid-area: cover;
    justify-self: end;
    display: grid;
    grid-template-columns: 320px auto;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    padding-right: 0.25rem;
    background: linear-gradient(135deg, rgba(196, 69, 54, 0.2) 0%, rgba(139, 47, 35, 0.15) 100%);
    border: 2px solid rgba(196, 69, 54, 0.4);
    border-radius: 16px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(196, 69, 54, 0.3);
}

.release-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1;
}

/* Timeline alternating pattern - left side */
.release-card:nth-child(odd) {
    grid-template-areas: "cover dot space";
}

.release-card:nth-child(odd) .release-card-link {
    grid-area: cover;
    justify-self: end;
}

.release-card:nth-child(odd) .release-info:not(.release-card-link .release-info) {
    grid-column: 1;
    justify-self: end;
    text-align: right;
}

/* Timeline alternating pattern - right side */
.release-card:nth-child(even) {
    grid-template-areas: "space dot cover";
}

.release-card:nth-child(even) .release-card-link {
    grid-area: cover;
    justify-self: start;
}

.release-card:nth-child(even) .release-info:not(.release-card-link .release-info) {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}

/* Timeline dot */
.release-card::before {
    content: '';
    grid-area: dot;
    width: 16px;
    height: 16px;
    background: rgba(196, 69, 54, 0.9);
    border: 3px solid #0a0a0a;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(196, 69, 54, 0.4);
}

.release-card:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(196, 69, 54, 0.2);
}

.release-card.featured:hover .release-featured-content {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(196, 69, 54, 0.5),
                0 0 50px rgba(196, 69, 54, 0.4);
    border-color: rgba(196, 69, 54, 0.6);
}


.release-card.featured .release-year,
.release-card.featured .release-type,
.release-card.featured h3 {
    color: white;
}

.release-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.release-card:not(.featured) .release-card-link {
    padding: var(--spacing-md);
}


.release-card.featured .release-cover {
    width: 320px;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.release-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.release-title-link:hover h3 {
    color: rgba(196, 69, 54, 1);
}

.release-year {
    font-size: 0.75rem;
    color: rgba(196, 69, 54, 1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.release-card.featured .release-year {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.release-cover {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.release-card:not(.featured) .release-cover {
    margin-bottom: 0;
}

.release-card:hover .release-cover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(196, 69, 54, 0.3);
}

.release-card.featured:hover .release-cover,
.release-card.featured .release-artwork-wrapper a:hover .release-cover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(196, 69, 54, 0.5),
                0 0 60px rgba(196, 69, 54, 0.4);
}

.release-info h3 {
    margin-bottom: var(--spacing-xs);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.release-card:not(.featured) .release-card-link {
    position: relative;
    display: block;
}

.release-card:not(.featured) .release-card-link .release-info {
    padding: 0;
    display: none;
}

.release-card:nth-child(odd) .release-info:not(.release-card-link .release-info) {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.release-card:nth-child(even) .release-info:not(.release-card-link .release-info) {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.release-card:not(.featured) .release-links-main,
.release-card:not(.featured) .more-platforms-btn,
.release-card:not(.featured) .release-links-more {
    display: none;
}

.release-card.featured .release-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.release-card.featured .release-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.release-card.featured .release-type {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.release-card.featured .release-description {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.release-type {
    font-size: 0.85rem;
    color: rgba(196, 69, 54, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.release-card.featured .release-type {
    color: rgba(255, 255, 255, 0.8);
}

.release-description {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin: var(--spacing-sm) 0;
}

.release-links-main {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.release-card.featured .release-links-main {
    margin-top: var(--spacing-sm);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
    width: 100%;
}

.release-card.featured .platform-link {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.release-links-more {
    display: none;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.release-links-more.active {
    display: flex;
}

.more-platforms-btn {
    margin-top: var(--spacing-xs);
    margin-bottom: 0;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 69, 54, 0.5);
    color: rgba(196, 69, 54, 1);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(-5px);
}

.release-card:hover .more-platforms-btn {
    opacity: 1;
    transform: translateY(0);
}

.more-platforms-btn:hover {
    background: rgba(196, 69, 54, 0.2);
    border-color: rgba(196, 69, 54, 0.8);
    box-shadow: 0 5px 15px rgba(196, 69, 54, 0.3);
}

.release-card.featured .more-platforms-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.release-card.featured .more-platforms-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.platform-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.platform-link:hover::before {
    left: 100%;
}

.platform-link.spotify {
    background: rgba(29, 185, 84, 0.15);
    color: #1DB954;
    border-color: rgba(29, 185, 84, 0.5);
}

.platform-link.spotify:hover {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.platform-link.apple {
    background: rgba(250, 36, 60, 0.15);
    color: #FA243C;
    border-color: rgba(250, 36, 60, 0.5);
}

.platform-link.apple:hover {
    background: #FA243C;
    color: white;
    border-color: #FA243C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 36, 60, 0.4);
}

.platform-link.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.5);
}

.platform-link.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.platform-link.deezer {
    background: rgba(255, 0, 146, 0.15);
    color: #FF0092;
    border-color: rgba(255, 0, 146, 0.5);
}

.platform-link.deezer:hover {
    background: #FF0092;
    color: white;
    border-color: #FF0092;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 146, 0.4);
}

.platform-link.amazon {
    background: rgba(255, 153, 0, 0.15);
    color: #FF9900;
    border-color: rgba(255, 153, 0, 0.5);
}

.platform-link.amazon:hover {
    background: #FF9900;
    color: white;
    border-color: #FF9900;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.release-card.featured .platform-link.deezer {
    color: #FF0092;
}

.release-card.featured .platform-link.deezer:hover {
    background: #FF0092;
    color: white;
}

.release-card.featured .platform-link.amazon {
    color: #FF9900;
}

.release-card.featured .platform-link.amazon:hover {
    background: #FF9900;
    color: white;
}

/* Spotify Embed */
.spotify-embed {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.spotify-embed h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    font-size: 2rem;
}

.spotify-embed iframe {
    max-width: 1000px;
    width: 100%;
    height: 450px;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
    color: var(--text-light);
}

.contact .section-header h2 {
    color: var(--text-light);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.spotify-card .social-icon {
    background: #1DB954;
}

.apple-card .social-icon {
    background: #FA243C;
}

.instagram-card .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook-card .social-icon {
    background: #1877F2;
}

.twitter-card .social-icon {
    background: #000000;
}

.youtube-card .social-icon {
    background: #FF0000;
}

.tiktok-card .social-icon {
    background: #000000;
}

.threads-card .social-icon {
    background: #000000;
}

.deezer-card .social-icon {
    background: #FF0092;
}

.social-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.social-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    color: var(--text-light);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .band-photos {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-card {
        flex: 1;
    }

    .releases {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .release-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links .social-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 70px;
        background: white;
        flex-direction: column;
        width: 100%;
        text-align: center;
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: var(--spacing-md) 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .burger {
        display: flex;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero::before {
        background-position: 44% center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-stats {
        flex-direction: column;
    }

    /* Timeline mobile layout */
    .releases::before {
        display: none;
    }

    .release-card {
        grid-template-columns: 1fr !important;
        grid-template-areas: "cover" !important;
        gap: var(--spacing-sm);
    }

    .release-card::before {
        display: none;
    }

    .release-card:nth-child(odd) .release-card-link,
    .release-card:nth-child(even) .release-card-link {
        justify-self: center;
    }

    .release-card:nth-child(odd) .release-info:not(.release-card-link .release-info),
    .release-card:nth-child(even) .release-info:not(.release-card-link .release-info) {
        grid-column: 1;
        justify-self: center;
        text-align: center;
    }

    .release-cover {
        width: 180px;
        height: 180px;
    }

    .release-card.featured .release-featured-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
        justify-items: center;
        justify-self: center;
    }

    .release-card.featured .release-cover {
        width: 180px;
        height: 180px;
    }

    .release-card.featured .release-info {
        align-items: center;
        text-align: center;
    }

    .release-card.featured .release-links-main {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .social-links {
        grid-template-columns: 1fr;
    }

    .social-links .social-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

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

    .release-card.featured {
        grid-column: span 1;
    }

    .release-links-main,
    .release-links-more {
        flex-direction: column;
    }

    .platform-link {
        width: 100%;
        justify-content: center;
    }
}

/* Release Detail Pages */
.release-detail {
    padding: calc(80px + var(--spacing-md)) 0 var(--spacing-xl);
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.release-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 69, 54, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 69, 54, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.back-link:hover {
    transform: translateX(-5px);
}

.release-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
    max-width: 650px;
    align-items: end;
}

.release-artwork {
    position: relative;
    border-radius: 15px;
    padding: 15px;
    margin: -15px;
}

.release-artwork img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.release-artwork:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(196, 69, 54, 0.5),
                0 0 60px rgba(196, 69, 54, 0.4);
}

.release-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.release-year-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    margin-bottom: var(--spacing-xs);
}

.release-meta h1 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.release-type-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.release-artist {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
}

.release-detail .streaming-links {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.streaming-links h3 {
    display: none;
}

.platform-grid {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid;
    position: relative;
    overflow: hidden;
    width: 160px;
}

.platform-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.platform-button:hover::before {
    left: 100%;
}

.platform-button span {
    position: relative;
    z-index: 1;
}

.platform-button.spotify {
    background: rgba(29, 185, 84, 0.15);
    color: #1DB954;
    border-color: rgba(29, 185, 84, 0.5);
}

.platform-button.spotify:hover {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.platform-button.apple {
    background: rgba(250, 36, 60, 0.15);
    color: #FA243C;
    border-color: rgba(250, 36, 60, 0.5);
}

.platform-button.apple:hover {
    background: #FA243C;
    color: white;
    border-color: #FA243C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 36, 60, 0.4);
}

.platform-button.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.5);
}

.platform-button.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.platform-button.deezer {
    background: rgba(255, 0, 146, 0.15);
    color: #FF0092;
    border-color: rgba(255, 0, 146, 0.5);
}

.platform-button.deezer:hover {
    background: #FF0092;
    color: white;
    border-color: #FF0092;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 146, 0.4);
}

.platform-button.amazon {
    background: rgba(255, 153, 0, 0.15);
    color: #FF9900;
    border-color: rgba(255, 153, 0, 0.5);
}

.platform-button.amazon:hover {
    background: #FF9900;
    color: white;
    border-color: #FF9900;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.release-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.release-description {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-lg);
}

.release-description h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.release-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.release-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.lyrics-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    margin-top: var(--spacing-lg);
}

.lyrics-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.lyrics-content {
    max-width: 600px;
}

.lyrics-verse,
.lyrics-chorus {
    margin-bottom: var(--spacing-lg);
}

.lyrics-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

.lyrics-verse p,
.lyrics-chorus p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
}

.lyrics-chorus {
    font-style: italic;
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--primary-color);
}

/* Release Detail Responsive */
@media (max-width: 968px) {
    .release-header {
        grid-template-columns: auto auto;
        gap: var(--spacing-md);
        max-width: 100%;
        margin: 0 auto var(--spacing-lg);
        justify-content: center;
    }

    .release-artwork img {
        max-width: 200px;
    }

    .release-meta h1 {
        font-size: 2rem;
    }

    .release-year-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .release-type-label {
        font-size: 0.9rem;
    }

    .release-artist {
        font-size: 1.1rem;
    }

    .platform-button {
        width: 140px;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .release-detail .container {
        padding: 0 var(--spacing-sm);
    }

    .back-link {
        display: block;
        margin-bottom: var(--spacing-md);
    }

    .release-header {
        grid-template-columns: auto auto;
        width: 100%;
        max-width: none;
        margin: 0 0 var(--spacing-lg) 0;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .release-artwork img {
        max-width: 150px;
    }

    .release-meta h1 {
        font-size: 1.5rem;
    }

    .release-type-label {
        font-size: 0.8rem;
    }

    .release-artist {
        font-size: 1rem;
    }

    .platform-button {
        width: 120px;
        font-size: 0.7rem;
    }
}
