@charset "UTF-8";
@font-face {
  font-family: "Avenir";
  src: url("resources/font/Avenir.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
:root {
  --ink:#1a0b2e;
  --cream:#fbf3e4;
  --font-display:'Avenir', sans-serif;
  --font-body:'Avenir', sans-serif;
  --background: #280b4e;
  --Pink: #FF90FF;
  --nav: rgb(35, 27, 59);
  --navMobile: #483778;
  --background_2: #381468;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--Pink);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: var(--nav);
  color: var(--cream);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

nav a {
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--Pink);
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-btn span {
  width: 26px;
  height: 1px;
  background: var(--cream);
  display: block;
}

.menu-btn {
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--cream); /* adapte à ta couleur */
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.menu-btn span:first-child {
  top: 4px;
}

.menu-btn span:last-child {
  top: 18px;
}

/* état ouvert = croix */
.menu-btn.open span:first-child {
  top: 11px;
  transform: rotate(45deg);
}

.menu-btn.open span:last-child {
  top: 11px;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(12px, 3vw, 56px);
  padding-bottom: clamp(12px, 3vw, 56px);
  padding-left: 6vw;
  padding-right: 6vw;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Image de fond */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("resources/image/Banner.avif") center/cover no-repeat;
  opacity: 0;
  animation: fadeBackground 2s ease forwards;
  z-index: -1;
}

@keyframes fadeBackground {
  from {
    opacity: 0;
    scale: 1.05;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
.hero .eyebrow {
  font-family: var(--font-display);
  font-size: clamp(12px, 3vw, 36px);
  color: var(--Pink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 9vw, 110px);
  line-height: 0.95;
  text-shadow: 4px 4px 0 var(--magenta), 8px 8px 0 var(--ink);
  margin-bottom: 26px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 34px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--cream);
  opacity: 0.9;
}

.hero .hero-logo {
  width: auto;
  margin: 0 auto;
  display: block;
}

.hero .hero-content {
  position: absolute;
  text-align: center;
  top: 75%;
}

.title {
  position: relative;
  display: flex;
  background: var(--background_2);
  border-bottom: 1px solid var(--Pink);
  padding: 90px 6vw;
}
.title .title-head {
  position: absolute;
  left: 6vw;
  max-width: 40vw;
  height: 44vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.title .title-head h3 {
  margin-top: 10%;
  font-family: var(--font-display);
  color: var(--Pink);
  font-size: clamp(30px, 3vw, 52px);
  letter-spacing: -0.01em;
  border-bottom: 3px solid var(--Pink);
}
.title .title-head p {
  color: var(--cream);
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("resources/image/Banner.avif") center/cover no-repeat;
  font-size: clamp(12px, 2vw, 24px);
  padding: 45px;
  margin-top: 8px;
  margin-left: 4vw;
  margin-bottom: 20px;
}
.title .title-video-1, .title .title-video-2 {
  height: auto;
}
.title .title-video-1 {
  width: 20vw;
  margin-left: auto;
  margin-top: auto;
}
.title .title-video-2 {
  width: 44vw;
  margin-left: auto;
  cursor: pointer;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 16px 34px;
  background: var(--magenta);
  color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

/* marquee */
.marquee {
  border-bottom: 4px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 20px;
  padding-right: 40px;
  animation: scroll 22s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---------- Section headers ---------- */
.section {
  padding: 90px 6vw;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head p {
  color: var(--cream);
  font-size: clamp(12px, 2vw, 24px);
}

.section-head .tag {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--magenta);
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.banner-video {
  margin-left: -6vw;
  width: 100vw;
  height: auto;
  cursor: pointer;
}

/* ---------- Portfolio grid ---------- */
.portfolio-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.portfolio-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 0;
  min-width: 0;
}

.card {
  position: relative;
  background: var(--purple);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 9px 9px 0 var(--ink);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none; /* empêche aussi le drag de l'image */
  pointer-events: auto; /* garde le clic actif pour fermer si besoin */
}

.card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(26, 11, 46, 0.95), transparent 80%);
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.card:hover .info {
  opacity: 1;
  transform: translateY(0);
}

.card .info h3 {
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 4px;
}

.card .info p {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-drag: none; /* empêche aussi le drag de l'image */
  pointer-events: auto; /* garde le clic actif pour fermer si besoin */
}

.lightbox-caption {
  color: var(--cream);
  text-align: center;
  margin-top: 16px;
  max-width: 600px;
}

.lightbox-caption h3 {
  margin: 0 0 8px 0;
}

.lightbox-caption p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--cream);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--background_2);
  padding: 100px 6vw;
  padding-top: 0px;
  text-align: center;
  border-bottom: 4px solid var(--ink);
}

.contact h2 {
  margin-top: 50px;
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 64px);
}

.contact p {
  font-size: clamp(12px, 2vw, 24px);
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-links a {
  font-family: var(--font-display);
  font-size: 14px;
  padding: 14px 26px;
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-links a:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 5px;
}
.contact-form input, .contact-form textarea {
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  background: var(--nav);
  color: var(--cream);
  margin-bottom: 20px;
  resize: vertical;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form input:hover, .contact-form textarea:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
  outline: none;
}
.contact-form button {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 14px;
  padding: 14px 28px;
  background: var(--magenta);
  color: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.contact-form button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

footer {
  padding: 26px 6vw;
  text-align: center;
  font-size: 13px;
  background: var(--ink);
  color: var(--cream);
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 70%;
    height: 100%;
    background: var(--navMobile);
    color: var(--cream);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    padding: 40px;
    z-index: 200;
  }
  nav.open {
    transform: translateX(0);
  }
  nav ul {
    flex-direction: column;
    gap: 28px;
    font-size: 20px;
  }
  .menu-btn {
    display: flex;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .title {
    flex-direction: column;
    padding: 40px 5vw;
    align-items: center;
  }
  .title .title-head {
    position: static;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .title .title-head h3 {
    margin-top: 0;
    font-size: clamp(24px, 6vw, 32px);
    text-align: center;
    border-bottom: 2px solid var(--Pink);
  }
  .title .title-head p {
    font-size: clamp(14px, 3.5vw, 18px);
    padding: 25px;
    margin-left: 0;
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
  }
  .title .title-video-1,
  .title .title-video-2 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .title .title-video-1 {
    order: 2;
  }
  .title .title-video-2 {
    order: 3;
  }
  .title .title-head {
    order: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee span {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}/*# sourceMappingURL=style.css.map */