/* CSS Custom Properties from Figma */
:root {
  --color-purple: rgba(105, 44, 224, 1);
  --color-cyan: rgba(36, 210, 229, 1);
  --color-pink-cta: rgba(251, 77, 148, 1);
  --color-yellow-green: rgba(202, 246, 27, 1);
  --color-white: #ffffff;
  --color-light-purple: rgba(210, 175, 255, 1);
  --color-light-cyan: rgba(151, 240, 255, 1);
  --color-navy: rgba(25, 24, 98, 1);
  --color-gray: rgba(144, 144, 144, 1);
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Bebas Neue', cursive;
}

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

body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Hero Section */
.hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 894px;
}

.hero-text {
  width: 50%;
  background-color: rgba(105, 44, 224, 1);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  width: 308px;
  height: 55px;
  object-fit: contain;
}

.creator-badge {
  flex-shrink: 0;
}

.creator-badge-img {
  height: 57px;
  width: 100px;
  object-fit: contain;
}

.hero-headline-container {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}

.hero-headline {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 188px;
  font-size: clamp(100px, calc(50vw * 0.218 - 7px), 188px);
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--color-light-purple);
  letter-spacing: 0;
}

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

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

.cta-button:hover {
  opacity: 0.9;
}

.username-tag {
  display: flex;
  align-items: center;
}

.username-tag-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.hero-visual {
  width: 50%;
  position: relative;
  overflow: hidden;
  background-color: rgba(132, 132, 132, 1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Video Section */
.video-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(36, 210, 229, 1);
  padding: 120px clamp(60px, 9vw, 179px);
  gap: clamp(60px, 8vw, 168px);
  width: 100%;
}

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

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

.video-creator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-creator-img {
  height: 21px;
  width: auto;
  object-fit: contain;
}

.video-title-container {
  padding: 10px;
}

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

.video-thumbnail {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 760 / 427;
}

.video-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.unlock-button:hover {
  background-color: rgba(202, 246, 27, 0.1);
}

.taste-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
  max-width: 643px;
}

.taste-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.taste-text {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(80px, 8.5vw, 120px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--color-light-cyan);
  text-align: center;
  letter-spacing: 0;
}

.taste-logo {
  width: 374px;
  height: 65px;
  object-fit: contain;
}

/* 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;
}

.rta-link {
  display: flex;
  align-items: center;
}

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

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
}

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

.footer-link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-navy);
  letter-spacing: 0;
  padding: 2px 0;
}

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

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

  .hero-text {
    width: 100%;
    padding: 29px 28px;
    min-height: 434px;
  }

  .hero-visual {
    width: 100%;
    height: 250px;
  }

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

  .hero-header {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    width: 180px;
    height: auto;
  }

  .creator-badge-img {
    height: 35px;
    width: auto;
  }

  .hero-headline {
    font-size: 72px;
    line-height: 60px;
  }

  .hero-headline-container {
    padding-top: 10px;
  }

  .cta-container {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 16px 24px;
    width: auto;
  }

  .username-tag-img {
    height: 22px;
  }

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

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

  .video-thumbnail {
    width: 100%;
  }

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

  .unlock-button {
    padding: 14px 24px;
    font-size: 16px;
  }

  .taste-section {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

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

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

  /* Footer Mobile */
  .footer {
    padding: 10px 12px 20px;
    gap: 10px;
    align-items: center;
    border-top: 2px solid var(--color-navy);
  }

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

  .rta-icon {
    width: 40px;
    height: 40px;
  }

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

  .footer-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

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

  .footer-link {
    font-size: 12px;
    text-transform: uppercase;
  }
}
