:root {
    --bg: #000;
    --accent: #00ffaa;
    --blue: #0066ff;
}

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

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 32px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    z-index: 9000;
    font-family: 'Unbounded';
    font-size: 0.7rem;
    letter-spacing: 1px;
    mix-blend-mode: difference;
}

.header-center {
    text-align: center;
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 20px 6vw;
        grid-template-columns: 1fr auto;
        font-size: 0.65rem;
        mix-blend-mode: normal;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(10px);
    }

    .header-center {
        display: none;
    }
}


/* ================= CURSEUR ================= */
#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}

/* Désactivation curseur custom sur mobile */
@media (hover: none) {
    * {
        cursor: auto;
    }

    #cursor {
        display: none;
    }
}

/* ================= INTRO ================= */
#intro {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-txt {
    font-family: 'Unbounded';
    font-size: 10vw;
    position: absolute;
    opacity: 0;
}

/* ================= NAV ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    z-index: 9000;
    mix-blend-mode: difference;
    font-family: 'Unbounded';
    font-size: 0.6rem;
}

@media screen and (max-width: 768px) {
    nav {
        padding: 20px;
        font-size: 0.55rem;
    }

    nav div:nth-child(2) {
        display: none;
    }
}

/* ================= HERO SPLIT ================= */
#hero-wrap {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Unbounded';
    font-size: 12vw;
    line-height: 0.8;
    z-index: 10;
    text-align: center;
}

.hero-split {
    position: absolute;
    width: 100%;
    height: 50%;
    background: #000;
    z-index: 11;
}

.split-top {
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.split-bottom {
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 16vw;
        line-height: 0.9;
    }

    #hero-wrap {
        height: 90vh;
        padding-top: 80px;
    }

    
}

/* ================= HERO CLASSIC ================= */
.hero-classic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5vw;
    gap: 5%;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 500px;
}

.hero-left h1 {
    font-family: 'Unbounded';
    font-size: 4vw;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-right {
    flex: 1 1 500px;
    text-align: center;
}

.hero-right img {
    max-width: 100%;
    border-radius: 20px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .hero-classic {
        flex-direction: column;
        text-align: center;
        padding: 50px 5vw;
    }

    .hero-left h1 {
        margin-top: 80px;
        font-size: 8vw;
    }

    .hero-left p {
        font-size: 1rem;
    }
}

/* ================= PILIERS ================= */
.pillar-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10vw;
}

.pillar-content {
    max-width: 900px;
}

.pillar-label {
    font-family: 'Unbounded';
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    display: block;
}

.pillar-title {
    font-family: 'Unbounded';
    font-size: 6vw;
    line-height: 0.9;
    margin-bottom: 40px;
}

.pillar-text {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #888;
    font-weight: 300;
}

.pillar-text b {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .pillar-section {
        min-height: auto;
        padding: 80px 6vw;
    }

    .pillar-title {
        font-size: 9vw;
        margin-bottom: 25px;
    }

    .pillar-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ================= GRID ================= */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.grid-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(1);
    transition: 0.5s;
}

.grid-gallery img:hover {
    filter: grayscale(0);
}

@media screen and (max-width: 768px) {
    .grid-gallery {
        grid-template-columns: 1fr;
    }

    .grid-gallery img {
        height: 300px;
    }
}

/* ================= TRINITY ================= */
a,
a:visited {
    color: inherit;
    text-decoration: none;
}

.trinity {
    height: 100vh;
    display: flex;
    gap: 5px;
    padding: 5px;
}

.trinity-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

.trinity-item:hover {
    flex: 3;
}

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

.trinity-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 50px;
    opacity: 0;
    transition: 0.5s;
}

.trinity-item:hover .trinity-overlay {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .trinity {
        flex-direction: column;
        height: auto;
    }

    .trinity-item {
        height: 60vh;
    }

    .trinity-item:hover {
        flex: 1;
    }

    .trinity-overlay {
        opacity: 1;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.7),
                rgba(0, 0, 0, 0));
    }
}

/* ================= FOOTER ================= */
footer {
    height: 100vh;
    background: var(--accent);
    color: #000;
    border-radius: 80px 80px 0 0;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-big {
    font-family: 'Unbounded';
    font-size: 15vw;
    line-height: 0.8;
}

@media screen and (max-width: 768px) {
    footer {
        height: auto;
        padding: 60px 6vw;
        border-radius: 40px 40px 0 0;
    }

    .footer-big {
        font-size: 22vw;
        margin-bottom: 40px;
    }
}

/* ================= BOUTONS ================= */
.btn {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 100px;
    font-family: 'Unbounded';
    transition: all 0.4s ease;
    color: #000;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    color: #000;
}

.testimonials {
    padding: 100px 5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: #111;
    padding: 60px;
    border-radius: 40px;
}

.testimonial p {
    margin-top: 20px;
    opacity: 0.5;
}

.testimonial.accent {
    border: 1px solid var(--accent);
}

/* Mobile */
@media screen and (max-width: 900px) {
    .testimonials {
        grid-template-columns: 1fr;
        padding: 80px 6vw;
    }

    .testimonial {
        padding: 40px;
    }
}


/* =========================
   BANDEAU COOKIES – SOMBRE N&B
   ========================= */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.97);
    color: #f2f2f2;
    padding: 22px 26px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 10000;
    max-width: 520px;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner p {
    font-size: 14px;
    line-height: 22px;
    color: #e0e0e0;
}

/* Boutons */
.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-buttons button {
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid transparent;
    cursor: pointer;
    background: transparent;
    transition: all 0.25s ease;
}

/* Accepter */
.cookie-buttons .accept {
    background: #ffffff;
    color: #000000;
}

.cookie-buttons .accept:hover {
    background: #e6e6e6;
    transform: translateY(-1px);
}

/* Refuser */
.cookie-buttons .refuse {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.cookie-buttons .refuse:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 24px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}
