/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #999999;
    --accent: #ff0000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gray);
}

.menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* MENU OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--black);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.menu-content a {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.menu-overlay.active .menu-content a {
    opacity: 1;
    transform: translateY(0);
}

.menu-content a:nth-child(1) { transition-delay: 0.1s; }
.menu-content a:nth-child(2) { transition-delay: 0.2s; }
.menu-content a:nth-child(3) { transition-delay: 0.3s; }
.menu-content a:nth-child(4) { transition-delay: 0.4s; }

.menu-content a:hover {
    color: var(--gray);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 14rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* SECTION HEADER */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray);
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ALBUM SECTION */
.album-section {
    padding: 10rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.album-content {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.album-artwork {
    margin-bottom: 3rem;
}

.album-cover {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0a0a0a;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-cta {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-cover:hover .album-image {
    transform: scale(1.05);
    filter: blur(3px);
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.album-cover:hover .album-cta {
    transform: translateY(0);
}

.album-details {
    padding: 0 2rem;
}

.album-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.album-meta {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gray);
}

/* SHOWS SECTION */
.shows-section {
    padding: 10rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shows-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.show-item {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.show-item:hover {
    padding-left: 2rem;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.show-venue {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.show-city {
    font-size: 1rem;
    color: var(--gray);
}

.show-status {
    text-align: right;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray);
}

/* NEWS SECTION */
.news-section {
    padding: 10rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.news-item {
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(1rem);
}

.news-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.news-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.news-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--white);
    padding-bottom: 0.25rem;
}

.news-link:hover {
    color: var(--gray);
    border-bottom-color: var(--gray);
    transform: translateX(0.5rem);
}

/* CONTACT SECTION */
.contact-section {
    padding: 10rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--gray);
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: block;
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* FOOTER */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-align: center;
}

/* RESPONSIVE */

/* Tablettes et petits écrans */
@media (max-width: 1024px) {
    .nav {
        padding: 1.5rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 12vw, 10rem);
    }
    
    .album-content {
        max-width: 500px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .show-item {
        grid-template-columns: 100px 1fr 100px;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .date-day {
        font-size: 2.5rem;
    }
    
    .show-venue {
        font-size: 1.25rem;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 3rem;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-logo {
        font-size: 0.875rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .menu-content a {
        font-size: 2rem;
    }
    
    .hero {
        height: 100svh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 15vw, 6rem);
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 2.5rem;
    }
    
    .section-number {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .album-section,
    .shows-section,
    .news-section,
    .contact-section {
        padding: 5rem 0;
    }
    
    .album-content {
        max-width: 100%;
    }
    
    .album-details {
        padding: 0;
    }
    
    .album-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .album-meta {
        font-size: 0.75rem;
    }
    
    .show-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .show-item:hover {
        padding-left: 0;
        padding-left: 1rem;
    }
    
    .show-date {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .date-day {
        font-size: 2rem;
    }
    
    .date-month {
        font-size: 0.75rem;
        display: flex;
        align-items: flex-end;
        padding-bottom: 0.25rem;
    }
    
    .show-venue {
        font-size: 1.125rem;
    }
    
    .show-city {
        font-size: 0.875rem;
    }
    
    .show-status {
        text-align: left;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .news-item {
        padding: 1.5rem 0;
    }
    
    .news-item:hover {
        transform: translateX(0.5rem);
    }
    
    .news-title {
        font-size: 1.25rem;
    }
    
    .news-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .news-link {
        font-size: 0.8125rem;
    }
    
    .contact-email {
        font-size: 1.5rem;
        word-break: break-word;
    }
    
    .social-link {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .footer {
        padding: 3rem 0;
    }
    
    .footer p {
        font-size: 0.6875rem;
    }
}

/* Très petits mobiles */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 18vw, 4.5rem);
        line-height: 0.85;
    }
    
    .section-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .album-title {
        font-size: 1.5rem;
    }
    
    .menu-content a {
        font-size: 1.5rem;
    }
    
    .show-date {
        gap: 0.5rem;
    }
    
    .date-day {
        font-size: 1.75rem;
    }
    
    .show-venue {
        font-size: 1rem;
    }
    
    .contact-email {
        font-size: 1.25rem;
    }
}
