/* ============================================
   SOUND CONNECT — Design System
   A perfect sound for a perfect place.
   ============================================ */

/* ---- RESET & VARIABLES ---- */
:root {
    /* Palette principale */
    --sc-black:       #0A0A0A;
    --sc-charbon:     #1A1A1A;
    --sc-graphite:    #2C2C2C;
    --sc-anthracite:  #333333;
    --sc-gris:        #888888;
    --sc-gris-clair:  #AAAAAA;
    --sc-clair:       #E8E8E8;
    --sc-blanc-casse: #F5F5F5;
    --sc-blanc:       #FFFFFF;

    /* Fonctionnels */
    --sc-success:     #2ECC71;
    --sc-warning:     #F39C12;
    --sc-danger:      #E74C3C;
    --sc-info:        #888888;

    /* Typo */
    --sc-font:        'Outfit', sans-serif;

    /* Espacements */
    --sc-radius:      8px;
    --sc-radius-lg:   12px;
    --sc-radius-xl:   16px;
    --sc-transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--sc-font);
    background-color: var(--sc-black);
    color: var(--sc-blanc-casse);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Supprimer tout style Astra résiduel */
.ast-container,
.site-content .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

#page, #content, .site-content {
    background: var(--sc-black) !important;
    padding: 0 !important;
    margin: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--sc-transition);
}


/* ============================================
   PAGE D'ACCUEIL — HERO
   ============================================ */
.sc-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

/* Fond subtil animé */
.sc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.015) 0%, transparent 50%);
    pointer-events: none;
}

.sc-hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

/* Logo / Nom */
.sc-hero__logo {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--sc-blanc);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: sc-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Slogan */
.sc-hero__slogan {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--sc-gris);
    font-style: italic;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: sc-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Séparateur fin */
.sc-hero__separator {
    width: 60px;
    height: 1px;
    background: var(--sc-gris);
    margin: 0 auto 3rem;
    opacity: 0;
    animation: sc-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* Texte de choix */
.sc-hero__question {
    font-size: 1rem;
    font-weight: 400;
    color: var(--sc-gris-clair);
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: sc-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}


/* ============================================
   BOUTONS DE CHOIX — DJ / RESTAURATEUR
   ============================================ */
.sc-hero__choices {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: sc-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.sc-choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 160px;
    background: var(--sc-charbon);
    border: 1px solid var(--sc-graphite);
    border-radius: var(--sc-radius-lg);
    cursor: pointer;
    transition: var(--sc-transition);
    position: relative;
    overflow: hidden;
}

.sc-choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: var(--sc-transition);
}

.sc-choice-btn:hover {
    border-color: var(--sc-gris);
    transform: translateY(-4px);
    background: var(--sc-graphite);
}

.sc-choice-btn:hover::before {
    opacity: 1;
}

.sc-choice-btn:active {
    transform: translateY(-2px);
}

.sc-choice-btn__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--sc-blanc);
    transition: var(--sc-transition);
}

.sc-choice-btn:hover .sc-choice-btn__icon {
    transform: scale(1.1);
}

.sc-choice-btn__label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sc-blanc-casse);
}

.sc-choice-btn__sublabel {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--sc-gris);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}


/* ============================================
   FOOTER MINIMAL
   ============================================ */
.sc-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    animation: sc-fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

.sc-footer__text {
    font-size: 0.75rem;
    color: var(--sc-gris);
    letter-spacing: 1px;
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes sc-fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sc-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .sc-hero__choices {
        flex-direction: column;
        align-items: center;
    }
    
    .sc-choice-btn {
        width: 100%;
        max-width: 300px;
        height: 140px;
    }

    .sc-hero__logo {
        letter-spacing: 3px;
    }

    .sc-hero__slogan {
        letter-spacing: 1.5px;
    }
}
