@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --brand: #F7931E;
  --brand-dark: #D97706;
  --text-dark: #1f1f1f;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ================= NAVBAR ================= */

.nav-container {
  background: #000;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #facc15;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #facc15;
  margin: 4px 0;
  border-radius: 3px;
}

/* ================= HERO ================= */

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background-color: #2b1a0f;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 45%,
      rgba(0,0,0,0.15) 100%
    ),
    image-set(
      url('../images/hero-bg-mobile.webp') 1x,
      url('../images/hero-bg.webp') 2x
    );

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
  padding: 0 24px;
  margin-left: 6%;
  color: var(--text-light);
}

.hero-content h1 {
  font-size: 3.3rem;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.hero-content p {
  margin-top: 18px;
  font-size: 1.15rem;
  max-width: 560px;
  opacity: 0.95;
  text-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff9f2f, #f7931e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(247,147,30,0.55);
  transition: all 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(247,147,30,0.7);
}

/* ================= SECTION ================= */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 24px;
}

.section h2 {
  font-size: 2.2rem;
  color: var(--brand-dark);
  margin-bottom: 18px;
}

/* ================= WHY ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.why-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  font-weight: 500;
}

/* ================= SUPPORT / LEGAL SHARED ================= */

.support-hero,
.privacy-hero,
.terms-hero {
  background: linear-gradient(
    135deg,
    rgba(247,147,30,0.08),
    rgba(247,147,30,0.02)
  );
  padding: 70px 20px 50px;
  text-align: center;
}

.support-hero h1,
.privacy-hero h1,
.terms-hero h1 {
  font-size: 2.6rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.support-hero p,
.privacy-hero p,
.terms-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.05rem;
  color: #444;
}

.support-card,
.privacy-card,
.terms-card {
  background: #fff;
  max-width: 820px;
  margin: 40px auto 80px;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.support-email {
  background: linear-gradient(135deg, #ffedd5, #fff7ed);
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  margin: 28px 0;
}

.support-email a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
}

.support-email a:hover {
  text-decoration: underline;
}

.support-list,
.privacy-card ul {
  margin-left: 20px;
  margin-top: 10px;
}

.support-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 0.95rem;
  color: #555;
}

.privacy-card h3,
.terms-card h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--brand-dark);
}

/* ================= FOOTER ================= */

footer {
  background: #000;
  color: #aaa;
  padding: 28px 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
  }

  .nav-links a {
    padding: 14px 0;
    text-align: center;
    font-size: 1.05rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.25) 100%
      ),
      url('../images/hero-bg-mobile.webp') center / cover no-repeat;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .support-hero h1,
  .privacy-hero h1,
  .terms-hero h1 {
    font-size: 2rem;
  }

  .support-card,
  .privacy-card,
  .terms-card {
    padding: 26px;
  }
}
