/* Rose foncé */

:root {
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.86);
    --rose-light: #f9d9e4;
    --rose-soft: #dda1b5;
    --rose: #c97191;
    --rose-dark: #9d4968;
    --rose-deep: #682c46;
    --gold: #d7b17b;
    --shadow: 0 25px 70px rgba(48, 12, 28, 0.28);
} 
/* Rose plus clair 

:root {
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.88);

    --rose-light: #fff0f6;
    --rose-soft: #f5c4d8;
    --rose: #e89ab9;
    --rose-dark: #c5678d;
    --rose-deep: #8f4564;

    --gold: #d9b98c;
    --shadow: 0 25px 70px rgba(105, 45, 70, 0.25);
}*/

/* ----------------------------------------
   Réinitialisation
---------------------------------------- */

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

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    color: var(--white);
    background: var(--rose-deep);
}

/* ----------------------------------------
   Structure générale
---------------------------------------- */

.site-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}

/* ----------------------------------------
   Vidéo d'arrière-plan
---------------------------------------- */

.background-video {
    position: fixed;
    z-index: -4;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
}

/* rose foncé */

.video-overlay {
    position: fixed;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(58, 16, 34, 0.76) 0%,
            rgba(91, 33, 57, 0.52) 42%,
            rgba(91, 33, 57, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(30, 7, 17, 0.28) 0%,
            rgba(30, 7, 17, 0.08) 45%,
            rgba(30, 7, 17, 0.48) 100%
        );
} 

/* Rose plus clair 
.video-overlay {
    position: fixed;
    z-index: -3;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(112, 50, 76, 0.52) 0%,
            rgba(197, 103, 141, 0.32) 45%,
            rgba(245, 196, 216, 0.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(70, 25, 45, 0.18) 0%,
            rgba(70, 25, 45, 0.05) 45%,
            rgba(70, 25, 45, 0.42) 100%
        );
} */

.video-grain {
    position: fixed;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.25) 0.6px,
            transparent 0.6px
        );
    background-size: 5px 5px;
}

/* ----------------------------------------
   En-tête
---------------------------------------- */

.site-header {
    width: min(1280px, calc(100% - 70px));
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
}

.brand-symbol {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 10px 30px rgba(52, 12, 29, 0.16);
    backdrop-filter: blur(10px);
}

.brand-name {
    font-family: "Italiana", serif;
    font-size: 23px;
    letter-spacing: 1px;
}

.site-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose-light);
    box-shadow: 0 0 0 6px rgba(249, 217, 228, 0.13);
    animation: statusPulse 2s infinite;
}

/* ----------------------------------------
   Contenu principal
---------------------------------------- */

.hero {
    flex: 1;
    width: min(1280px, calc(100% - 70px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 55px 0 90px;
}

/* Rose foncé */
.hero-content {
    width: min(710px, 100%);
    padding: 55px 55px 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 38px;
    background:
        linear-gradient(
            135deg,
            rgba(92, 30, 55, 0.52),
            rgba(61, 16, 35, 0.24)
        );
    box-shadow: var(--shadow);
    backdrop-filter: blur(13px);
    animation: contentEntrance 1s ease both;
} 

/* Rose plus clair 
.hero-content {
    width: min(710px, 100%);
    padding: 55px 55px 50px;

    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 38px;

    background:
        linear-gradient(
            135deg,
            rgba(143, 69, 100, 0.38),
            rgba(232, 154, 185, 0.17)
        );

    box-shadow: var(--shadow);
    backdrop-filter: blur(13px);
    animation: contentEntrance 1s ease both;
} */

.hero-category {
    margin-bottom: 25px;
    color: var(--rose-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-family: "Italiana", serif;
    font-weight: 400;
    line-height: 0.88;
}

.hero-firstname {
    display: block;
    font-size: clamp(78px, 9vw, 125px);
    letter-spacing: -3px;
}

.hero-massages {
    display: block;
    margin-top: 15px;
    margin-left: 82px;
    color: var(--rose-light);
    font-size: clamp(49px, 6vw, 80px);
    font-style: italic;
    letter-spacing: -1px;
}

.hero-slogan {
    max-width: 580px;
    margin-top: 38px;
    color: var(--white);
    font-family: "Italiana", serif;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.3;
}

.hero-separator {
    width: 210px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.hero-separator span:not(.separator-symbol) {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.separator-symbol {
    color: var(--gold);
    font-size: 12px;
}

.hero-description {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
}

/* ----------------------------------------
   Boutons
---------------------------------------- */

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 51px;
    padding: 14px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--rose-deep);
    background: linear-gradient(
        135deg,
        var(--rose-light),
        var(--white)
    );
    box-shadow: 0 15px 35px rgba(38, 8, 21, 0.22);
}

.button-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

/* ----------------------------------------
   Pied de page
---------------------------------------- */

.site-footer {
    width: min(1280px, calc(100% - 70px));
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    letter-spacing: 0.8px;
}

.footer-message {
    font-family: "Italiana", serif;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* ----------------------------------------
   Animations
---------------------------------------- */

@keyframes statusPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

@keyframes contentEntrance {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------
   Tablettes
---------------------------------------- */

@media (max-width: 900px) {
    .video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(54, 13, 31, 0.56) 0%,
                rgba(75, 22, 44, 0.58) 50%,
                rgba(38, 8, 21, 0.78) 100%
            );
    }

    .hero {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-massages {
        margin-left: 0;
    }

    .hero-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* ----------------------------------------
   Mobiles
---------------------------------------- */

@media (max-width: 600px) {
    .site-header,
    .hero,
    .site-footer {
        width: min(100% - 28px, 1280px);
    }

    .site-header {
        padding-top: 20px;
    }

    .brand-symbol {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 19px;
    }

    .site-status {
        padding: 9px 11px;
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .hero {
        padding: 35px 0 55px;
    }

    .hero-content {
        padding: 42px 22px 38px;
        border-radius: 27px;
    }

    .hero-category {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-firstname {
        font-size: clamp(68px, 23vw, 95px);
        letter-spacing: -2px;
    }

    .hero-massages {
        margin-top: 12px;
        font-size: clamp(43px, 15vw, 62px);
    }

    .hero-slogan {
        margin-top: 30px;
        font-size: 25px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ----------------------------------------
   Accessibilité : animations réduites
---------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}