/* CSS Custom Properties from Figma */
:root {
  --color-purple: #692CE0;
  --color-purple-light: #D2AFFF;
  --color-cyan: #24D2E5;
  --color-coral: #F24170;
  --color-yellow-green: #CAF61B;
  --color-white: #FFFFFF;
  --color-dark-navy: #191862;
  --color-light-blue: #97F0FF;
  --color-gray: #909090;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-bebas: 'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-montserrat);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--color-white);
}

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

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

/* Hero Section */
.hero {
  width: 100%;
}

.container-main {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.zone-texte {
  width: 38%;
  min-width: 400px;
  background-color: #692CE0;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.header-logo {
  width: 100%;
}

.logo-header {
  height: 30px;
  width: auto;
}

.headline-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.cm-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  width: 100%;
}

.cm-letter {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 155px;
  line-height: 125px;
  text-transform: uppercase;
  color: var(--color-purple-light);
  letter-spacing: 0;
}

.asterisque-icon {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.headline-see-me {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 155px;
  line-height: 128px;
  text-transform: uppercase;
  color: var(--color-purple-light);
  letter-spacing: 0;
  margin: 0;
}

.headline-on-jerkmate {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 63px;
  line-height: 67.6px;
  text-transform: uppercase;
  color: var(--color-purple-light);
  letter-spacing: 1.26px;
  margin: 0;
}

.cta-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  width: 100%;
  overflow: visible;
}

.btn-create-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 25px;
  text-transform: uppercase;
  padding: 20px 30px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.btn-create-account:hover {
  opacity: 0.9;
}

.model-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.jerky-icon-small {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.model-name {
  font-family: var(--font-bebas);
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--color-purple-light);
  letter-spacing: 0.6px;
}

.zone-visuel {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Video Section */
.video-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #24D2E5;
  padding: 80px 100px 100px 100px;
  gap: 80px;
  width: 100%;
}

.video-bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 45%;
  max-width: 760px;
  flex-shrink: 0;
}

.video-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.video-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.jerky-head {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.video-username {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0;
}

.video-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.video-title {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--color-yellow-green);
  letter-spacing: 0;
}

.over-video-link {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.over-video-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
}

.over-video-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Video overlay content (lock icon + text) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.video-overlay-lock {
  font-size: 48px;
  line-height: 1;
  display: block;
}

.video-overlay-text {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  display: block;
}

.btn-unlock-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  padding: 20px 30px;
  border-radius: 9999px;
  border: 2px solid var(--color-yellow-green);
  cursor: pointer;
  letter-spacing: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-unlock-video:hover {
  background-color: var(--color-yellow-green);
  color: #000;
}

.taste-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding-top: 0;
  width: 50%;
  min-width: 500px;
}

.taste-text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
}

.taste-text {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 110px;
  line-height: 100px;
  text-transform: uppercase;
  color: var(--color-light-blue);
  text-align: center;
  letter-spacing: 0;
}

.logo-taste {
  width: 350px;
  height: auto;
}

/* Footer */
.footer {
  background-color: var(--color-white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  padding-left: 30px;
  width: 100%;
}

.rta-icon {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.footer-copyright {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-dark-navy);
  letter-spacing: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--color-dark-navy);
  width: 100%;
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-montserrat);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark-navy);
  letter-spacing: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* ===== RESPONSIVE - Mobile ===== */
@media (max-width: 768px) {
  .container-main {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .zone-visuel {
    width: 100%;
    height: 200px;
    min-width: unset;
  }

  .hero-image {
    height: 200px;
    object-position: center 20%;
  }

  .zone-texte {
    width: 100%;
    min-width: unset;
    padding: 24px 24px 16px;
    gap: 11px;
  }

  .logo-header {
    height: 22px;
  }

  .headline-block {
    gap: 11px;
  }

  .cm-row {
    gap: 3px;
  }

  .cm-letter {
    font-size: 78px;
    line-height: 64px;
  }

  .asterisque-icon {
    width: 55px;
    height: 55px;
  }

  .headline-see-me {
    font-size: 78px;
    line-height: 65px;
  }

  .headline-on-jerkmate {
    font-size: 37px;
    line-height: 40px;
    letter-spacing: 0.74px;
  }

  .cta-container {
    gap: 16px;
    padding-top: 9px;
  }

  .btn-create-account {
    font-size: 15px;
    padding: 12px 18px;
  }

  .model-info {
    gap: 5px;
  }

  .jerky-icon-small {
    width: 20px;
    height: 20px;
  }

  .model-name {
    font-size: 20px;
    line-height: 24px;
  }

  /* Video Section Mobile */
  .video-section {
    flex-direction: column;
    padding: 40px 15px;
    gap: 40px;
  }

  .video-bloc {
    width: 100%;
    max-width: 400px;
    gap: 18px;
  }

  .over-video-link {
    width: 100%;
    position: relative;
  }

  .over-video-img {
    height: auto;
  }

  .video-overlay-lock {
    font-size: 36px;
  }

  .video-overlay-text {
    font-size: 14px;
  }

  .video-username {
    font-size: 22px;
  }

  .video-title {
    font-size: 30px;
  }

  .btn-unlock-video {
    font-size: 16px;
    padding: 16px 24px;
  }

  .taste-block {
    width: 100%;
    max-width: 332px;
    min-width: unset;
    gap: 18px;
    padding-top: 0;
  }

  .taste-text-wrap {
    padding: 0 10px;
  }

  .taste-text {
    font-size: 60px;
    line-height: 55px;
  }

  .logo-taste {
    width: 200px;
  }

  /* Footer Mobile */
  .footer {
    padding: 10px 12px 14px;
    gap: 10px;
    align-items: center;
  }

  .footer-top {
    flex-direction: column;
    padding-left: 0;
    text-align: center;
    gap: 8px;
  }

  .footer-copyright {
    font-size: 12px;
    color: var(--color-dark-navy);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    padding-left: 0;
    text-align: center;
    gap: 8px;
  }

  .footer-link {
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
  }
}
