* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.05), transparent 20%),
        radial-gradient(circle at 50% 46%, rgba(130, 20, 35, 0.20), transparent 55%),
        linear-gradient(180deg, #5d1823 0%, #47111a 45%, #22070d 100%);
    color: #fdf6e6;
    font-family: "chorine-large", sans-serif;
    font-weight: 500;
    font-style: normal;
}

main {
    width: 100%;
}

/* SHOWREEL */

.showreel {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.hero img {
    display: block;
    width: 150px;
    height: auto;
}

.showreel-video {
    display: block;
    width: min(900px, 80vw);
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.30),
        0 0 32px rgba(255, 255, 255, 0.04);
}

/* TRAVAUX */

.travaux {
    padding: 120px 40px 100px;
    display: flex;
    justify-content: center;
}

.travaux-inner {
    width: min(1200px, 92vw);
}


.travaux-title {
    margin: 0 0 40px 0;
    font-size: clamp(42px, 6vw, 86px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fdf6e6;
}

.travaux-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.travail-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.travail-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: #18070d;
    border: 1px solid rgba(255, 246, 230, 0.10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.travail-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #18070d;
}

.travail-fullscreen {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    border: 1px solid rgba(255, 246, 230, 0.22);
    background: rgba(20, 6, 10, 0.60);
    color: #fdf6e6;
    font-family: "chorine-large", sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.travail-name {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    font-family: "stevie-sans", sans-serif;
font-weight: 700;
font-style: normal;
    color: #fdf6e6;
    text-transform:none;
    letter-spacing: 0.0em;
}

@media (max-width: 900px) {
    .showreel {
        padding: 24px;
    }

    .hero {
        top: 16px;
        left: 16px;
    }

    .hero img {
        width: 108px;
        max-width: 30vw;
    }

    .showreel-video {
        width: min(92vw, 680px);
        border-radius: 16px;
    }

    .travaux {
        padding: 90px 24px 70px;
    }

    .travaux-title {
        margin-bottom: 28px;
    }

    .travaux-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .travail-media {
        border-radius: 18px;
    }

    .travail-name {
        font-size: 22px;
    }

    .travail-fullscreen {
        right: 12px;
        bottom: 12px;
        font-size: 12px;
        padding: 8px 12px;
    }
}

.contact {
    padding: 120px 40px 120px;
    display: flex;
    justify-content: center;
}
.contact-inner {
    width: min(1200px, 92vw);
}

.contact-title {
    margin: 0 0 24px 0;
    font-size: clamp(42px, 6vw, 86px);
    font-weight: 500;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fdf6e6;
}

.contact-text {
    margin: 0 0 24px 0;
    max-width: 580px;
    font-family: "stevie-sans", sans-serif;
font-weight: 200;
font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(253, 246, 230, 0.82);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    font-family: "stevie-sans", sans-serif;
font-weight: 200;
font-style: normal;
font-size: 18px;
    gap: 12px;
    margin-bottom: 34px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 246, 230, 0.16);
    background: rgba(255, 248, 240, 0.04);
    color: #fdf6e6;
    text-decoration: none;
}

.contact-form {
    display: grid;
    font-family: "stevie-sans", sans-serif;
font-weight: 200;
font-style: normal;
font-size: 18px;
    gap: 18px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field label {
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(253, 246, 230, 0.78);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 246, 230, 0.14);
    border-radius: 18px;
    background: rgba(255, 248, 240, 0.05);
    color: #fdf6e6;
    padding: 16px 18px;
    font: inherit;
    outline: none;

}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(255, 246, 230, 0.34);
}

.contact-button {
    width: fit-content;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 246, 230, 0.22);
    border-radius: 999px;
    background: rgba(20, 6, 10, 0.60);
    color: #fdf6e6;
    font-family: "stevie-sans", sans-serif;
font-weight: 200;
font-style: normal;
    font-size: 18px;
    letter-spacing: 0.08em;
    cursor: pointer;
}

@media (max-width: 900px) {
    .contact {
        padding: 90px 24px 90px;
    }

    .contact-text {
        font-size: 16px;
    }
}

:root {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

body {
  position: relative;
  background-color: #000; /* ou ta couleur de fond actuelle */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
   z-index: 9999; /* très haut */
  background: radial-gradient(
    60px circle at var(--mouse-x) var(--mouse-y),
    rgba(240, 209, 209, 0.569) 0%,
    rgba(190, 158, 158, 0.301) 40%,
    rgba(244, 232, 232, 0) 90%
  );
    opacity: 0;               /* invisible au départ */
  transition: opacity 0.15s linear;
}

body.has-mouse::before {
  opacity: 1;
}

main, header, footer, section, .page {
  position: relative;
  z-index: 2;
}

.travail-media {
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
  transform-origin: center center;
}

.travail-media:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

body {
  cursor: none;
}

.contact-message {
  margin-top: 1rem;
  font-size: 1rem;
  color: #f4f1e8; /* ou ta couleur de texte */
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.contact-message.visible {
  opacity: 1;
}