@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --dark: #0a1628;
  --gold: #c9a84c;
  --gold-hover: #b8963f;
}

body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('hero.webp');
}

.overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), rgba(10, 22, 40, 0.6), transparent);
}

.overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.3), transparent);
}

.content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.1);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.badge-text {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Name */
.name {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1rem;
}

.name-gold {
  display: block;
  color: var(--gold);
}

/* Subtitle */
.subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Separator */
.separator {
  width: 4rem;
  height: 2px;
  background-color: var(--gold);
  margin: 2rem 0;
}

/* Quote */
.quote {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3rem;
}

/* CTA Button */
.cta {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Responsive */
.mobile-br {
  display: none;
}

@media (max-width: 767px) {
  .content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: calc(env(safe-area-inset-top, 0px) + 7rem);
    padding-bottom: 3rem;
  }

  .badge {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 2rem);
    left: 1rem;
    right: auto;
    width: fit-content;
    max-width: calc(100% - 2rem);
    margin-bottom: 0;
    padding: 0.75rem 1rem;
  }

  .badge-text {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .cta {
    align-self: flex-start;
    width: fit-content;
    max-width: calc(100% - 2rem);
    padding: 1rem 2rem;
  }

  .mobile-br {
    display: block;
  }

  .subtitle {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .name {
    font-size: 4.5rem;
  }
  .subtitle {
    font-size: 1.25rem;
  }
  .quote {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .name {
    font-size: 6rem;
  }
}
