/* OHRYA Landing Page - Figma Design Implementation */
/* Design: OHRYA Placeholder - Desktop - Option 6 */

/* ==========================================
   CSS VARIABLES (From Figma Design Tokens)
   ========================================== */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-primary-blue: #6098ae;
  --color-dark-blue: #416f81;
  --color-yellow: #ffc62b;
  --color-orange: #e39700;
  --color-glass-bg: rgba(65, 111, 129, 0.85);

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --page-width: 1440px;
  --page-height: 1863px;

  /* Border Radius */
  --radius-button: 20px;
  --radius-glass: 33px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-white);
  color: var(--color-white);
  line-height: 1.21;
  overflow-x: hidden;
}

/* ==========================================
   LANDING PAGE CONTAINER
   ========================================== */
.landing-page {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

/* ==========================================
   HERO BACKGROUND
   ========================================== */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/background-mask.png");
  background-size: cover;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(96, 152, 174, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 50% 80%,
      rgba(65, 111, 129, 0.15) 0%,
      transparent 50%
    );
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 8%, transparent 22%);
}

/* ==========================================
   HEADER & LOGO
   ========================================== */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

.logo {
  width: 350px;
  height: 316px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 60%;
  height: 100%;
}

/* ==========================================
   CAMPAIGNS SECTION (Images + Glass Buttons)
   ========================================== */
.campaigns-section {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 50px;
  padding: 20px 50px 60px;
  margin-top: 2rem;
}

.campaign-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.campaign-image {
  width: 420px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.campaign-image.tall {
  width: 280px;
  height: 420px;
  position: absolute;
  bottom: 20px;
}

.campaign-image img {
  object-fit: contain;
  display: block;
  width: 70%;
}

/* Glass Button Fade Container */
.glass-button-wrapper {
  width: 245.7px;
  height: 67px;
  margin-top: -27px;
}

.glass-button {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.glass-button-front,
.glass-button-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-glass);
  transition: opacity 0.4s ease;
}

.glass-button-front {
  z-index: 2;
  opacity: 1;
}

.glass-button-back {
  z-index: 1;
  opacity: 0;
}

.glass-button-wrapper:hover .glass-button-front {
  opacity: 0;
}

.glass-button-wrapper:hover .glass-button-back {
  opacity: 1;
}

.glass-button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(65, 111, 129, 0.9) 0%,
    rgba(96, 152, 174, 0.8) 50%,
    rgba(65, 111, 129, 0.9) 100%
  );
  border-radius: var(--radius-glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.7;
}

.glass-button-bg.back {
  background: linear-gradient(
    135deg,
    rgba(227, 151, 0, 0.9) 0%,
    rgba(255, 198, 43, 0.85) 50%,
    rgba(227, 151, 0, 0.9) 100%
  );
}

.glass-button-bg::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 100%
  );
  border-radius: var(--radius-glass) var(--radius-glass) 0 0;
  pointer-events: none;
}

.glass-button-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.21;
  text-align: center;
  color: var(--color-white);
}

/* ==========================================
   FOUNDER'S MESSAGE SECTION
   ========================================== */
.founders-message-section {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0;
}

.founders-title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-yellow);
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

/* ==========================================
   VIDEO CONTAINER
   ========================================== */
.video-container {
  width: 980px;
  max-width: calc(100% - 60px);
  height: 551px;
  margin: 0 auto;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  background: #0f0e0e;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(96, 152, 174, 0.1) 0%,
    transparent 60%
  );
}

.play-button {
  width: 140px;
  height: 140px;
  border: none;
  background: #f9b915;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(249, 185, 21, 0.3);
}

.play-button:hover {
  transform: scale(1.08);
  background: #ffcc00;
  box-shadow: 0 12px 40px rgba(249, 185, 21, 0.5);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #1a1a1a;
  margin-left: 8px;
}

.play-button svg,
.play-button img {
  display: none;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 60px 20px 0;
}

.tagline {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  color: var(--color-white);
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.tagline span {
  color: #f7af22;
}

.get-started-btn {
  width: 145px;
  height: 40px;
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-button);
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  margin-bottom: 98px;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  background-color: #e39700;
}

.get-started-btn:active {
  transform: translateY(0);
}

.contact-info {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  padding: 20px 40px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.contact-info a {
  color: #ffc62b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffc62b;
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (min-width: 3073px) and (max-width: 3840px) {
  .hero-background {
    background-position: 100% 22%;
  }
}
@media (min-width: 2561px) and (max-width: 3072px) {
  .hero-background {
    background-position: 100% 19%;
  }
}
@media (min-width: 1981px) and (max-width: 2560px) {
  .hero-background {
    background-position: 100% 16%;
  }
}
@media (min-width: 1728px) and (max-width: 1900px) {
  .campaigns-section {
    margin-top: 0rem;
  }
  .header {
    padding-top: 12px;
  }
}
@media (min-width: 1512px) and (max-width: 1729px) {
  .campaigns-section {
    margin-top: 0rem;
  }
  .header {
    padding-top: 0px;
  }
}
@media (min-width: 1280px) and (max-width: 1511px) {
  .hero-background {
    background-position: 34% 0%;
  }
  .campaigns-section {
    margin-top: 0rem;
  }
  .header {
    padding-top: 0px;
  }
}

@media (max-width: 1200px) {
  .campaigns-section {
    gap: 30px;
    padding: 20px 30px 60px;
  }

  .campaign-image {
    width: 180px;
    height: 160px;
  }

  .campaign-image.tall {
    width: 220px;
    height: 340px;
    position: unset;
    bottom: 0px;
  }

  .glass-button-wrapper {
    width: 220px;
  }
}

@media (max-width: 1024px) {
  .video-container {
    height: 450px;
  }

  .header {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hero-background {
    background-position: 48% 0%;
  }

  .campaigns-section {
    gap: 20px;
    padding: 0px 30px 60px;
    margin-top: 0rem;
  }

  .campaign-image {
    width: 100%;
    height: 100%;
  }

  .campaign-image.handbag-campagin img {
    width: 60%;
  }

  .glass-button-wrapper.handbag-campagin-btn {
    margin-top: -60px;
  }

  .campaign-image.tall {
    width: 100%;
    height: 100%;
    position: unset;
    bottom: 0px;
  }

  .campaign-image.tall img {
    width: 50%;
  }

  .glass-button-wrapper.campagin-btn-tall {
    margin-top: -160px;
  }

  .glass-button-wrapper.nfl-campagin-btn {
    margin-top: -100px;
  }

  .glass-button-wrapper {
    width: 240px;
    height: 55px;
  }

  .campaign-image.nfl-ball {
    margin-top: 100px;
  }

  .campaign-image.nfl-ball img {
    width: 70%;
  }

  .glass-button-wrapper {
    width: 270px;
    height: 60px;
  }

  .glass-button-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .logo {
    width: 180px;
    height: 156px;
  }

  .logo-svg {
    width: 100%;
    height: 100%;
  }

  /* Stack campaign cards vertically on mobile */
  .campaigns-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px 20px 40px;
    margin-top: 4rem;
  }

  .campaign-card {
    gap: 15px;
  }

  .campaign-image {
    width: 100%;
    height: 100%;
  }

  .campaign-image.handbag-campagin img {
    width: 60%;
  }

  .glass-button-wrapper.handbag-campagin-btn {
    margin-top: -60px;
  }

  .campaign-image.tall {
    width: 100%;
    height: 100%;
    position: unset;
    bottom: 0px;
  }

  .campaign-image.tall img {
    width: 50%;
  }

  .glass-button-wrapper.campagin-btn-tall {
    margin-top: -160px;
  }

  .glass-button-wrapper.nfl-campagin-btn {
    margin-top: -100px;
  }

  .glass-button-wrapper {
    width: 240px;
    height: 55px;
  }

  .campaign-image.nfl-ball {
    margin-top: 100px;
  }

  .campaign-image.nfl-ball img {
    width: 70%;
  }

  .glass-button-wrapper {
    width: 260px;
    height: 60px;
  }

  .founders-message-section {
    padding: 40px 0;
  }

  .founders-title {
    font-size: 24px;
    padding: 0 20px;
  }

  .video-container {
    height: 300px;
    width: calc(100% - 40px);
  }

  .cta-section {
    padding: 40px 20px 60px;
  }

  .tagline {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tagline br {
    display: none;
  }

  .get-started-btn {
    font-size: 18px;
  }

  .contact-info {
    font-size: 14px;
  }

  .hero-background {
    height: 100%;
    min-height: 100vh;
    background-image: url("assets/background-mask-mobile.png");
    background-position: 100% 32%;
  }
}

@media (max-width: 480px) {
  .campaigns-section {
    gap: 30px;
    margin-top: 4rem;
  }

  .campaign-image {
    width: 100%;
    height: 100%;
  }

  .campaign-image.handbag-campagin img {
    width: 60%;
  }

  .glass-button-wrapper.handbag-campagin-btn {
    margin-top: -60px;
  }

  .campaign-image.tall {
    width: 100%;
    height: 100%;
    position: unset;
    bottom: 0px;
  }

  .campaign-image.tall img {
    width: 50%;
  }

  .glass-button-wrapper.campagin-btn-tall {
    margin-top: -160px;
  }

  .glass-button-wrapper.nfl-campagin-btn {
    margin-top: -100px;
  }

  .glass-button-wrapper {
    width: 240px;
    height: 55px;
  }

  .campaign-image.nfl-ball {
    margin-top: 100px;
  }

  .campaign-image.nfl-ball img {
    width: 70%;
  }

  .glass-button-text {
    font-size: 13px;
  }

  .founders-title {
    font-size: 20px;
  }

  .video-container {
    height: 230px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button::after {
    border-width: 15px 0 15px 24px;
    margin-left: 5px;
  }
  .contact-info {
    padding: 20px 46px;
  }
}
@media (max-width: 447px) {
  .video-container {
    height: 212px;
  }
}
@media (max-width: 430px) {
  .video-container {
    height: 212px;
  }
}
@media (max-width: 412px) {
  .video-container {
    height: 194px;
  }
}
@media (max-width: 402px) {
  .video-container {
    height: 196px;
  }
}
@media (max-width: 391px) {
  .video-container {
    height: 184px;
  }
}
@media (max-width: 360px) {
  .video-container {
    height: 170px;
  }
}
