/* ===================================
   FONDATION BREL - Design System
   =================================== */

:root {
    /* Colors */
    --black: #0a0a0a;
    --white: #ffffff;
    --gold: #c9a962;
    --gold-light: #e0c989;
    --gold-dark: #a68a4b;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===================================
   RESET & BASE
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   UTILITIES
   =================================== */

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

.section-header--center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
}

.btn--gold:hover {
    background: var(--gold-light);
}

.btn--white {
    background: var(--white);
    color: var(--black);
}

.btn--white:hover {
    background: var(--gray-100);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__text {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.logo__name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===================================
   HERO
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero__location {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 32px;
}

.hero__title-line {
    display: block;
}

.hero__title-line--italic {
    font-style: italic;
    color: var(--gold);
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ===================================
   INTRO
   =================================== */

.intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.intro__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 32px;
}

.intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ===================================
   ACTIVITIES
   =================================== */

.activities {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.activities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.activity-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.activity-card--featured {
    transform: scale(1.02);
}

.activity-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.activity-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.activity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-card__image img {
    transform: scale(1.05);
}

.activity-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.activity-card__content {
    padding: 32px;
}

.activity-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.activity-card__content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.activity-card__content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.activity-card__meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.activity-card__meta i {
    margin-right: 6px;
    color: var(--gold);
}

/* ===================================
   CINÉ BREL
   =================================== */

.cine {
    padding: var(--section-padding) 0;
    background: var(--black);
    color: var(--white);
}

.cine__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}

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

.films__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.film-card {
    background: var(--gray-900);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.film-card:hover {
    background: var(--gray-800);
}

.film-card__poster {
    position: relative;
    height: 200px;
}

.film-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-card__duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
}

.film-card__info {
    padding: 24px;
}

.film-card__time {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.film-card__info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.film-card__director {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.film-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-400);
}

/* ===================================
   FRANCE BREL
   =================================== */

.france {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.france__image {
    position: relative;
    overflow: hidden;
}

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

.france__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--gray-100);
}

.france__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.france__content .btn {
    align-self: flex-start;
    margin-top: 16px;
}

/* ===================================
   QUOTE
   =================================== */

.quote {
    padding: var(--section-padding) 0;
    background: var(--black);
    text-align: center;
}

.quote__text {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 32px;
}

.quote__author {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
}

/* ===================================
   INFOS PRATIQUES
   =================================== */

.infos {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.infos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.info-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-100);
    border-radius: 8px;
    transition: var(--transition);
}

.info-card:hover {
    background: var(--gray-200);
}

.info-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--gold);
    font-size: 24px;
    border-radius: 50%;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-card__main {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.info-card__detail {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.info-card__note {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-500);
}

/* ===================================
   CTA RÉSERVER
   =================================== */

.cta-reserve {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    text-align: center;
}

.cta-reserve__content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-reserve__content p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.cta-reserve__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 80px 0 40px;
    background: var(--black);
    color: var(--white);
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer__brand p {
    font-size: 15px;
    color: var(--gray-400);
    margin-top: 16px;
    margin-bottom: 24px;
}

.logo--footer .logo__name {
    font-size: 32px;
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col a {
    display: block;
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
    font-size: 14px;
    color: var(--gray-500);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a:hover {
    color: var(--white);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .activities__grid,
    .films__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .activity-card--featured {
        transform: none;
    }
    
    .france {
        grid-template-columns: 1fr;
    }
    
    .france__image {
        height: 50vh;
    }
    
    .france__content {
        padding: 60px 40px;
    }
    
    .infos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header__actions .btn {
        display: none;
    }
    
    .cine__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .infos__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .activity-card__content {
        padding: 24px;
    }
    
    .france__content {
        padding: 40px 24px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
}
