/* =========================
   BRAND TOKENS
   ========================= */
:root {
  --brand-gold: #f4c430;
  --brand-dark: #1f1f1f;
  --brand-bg: #fafafa;
}

/* =========================
   GLOBAL RESET
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--brand-bg);
  color: var(--brand-dark);

  padding: 110px 20px 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* =========================
   TOP RIGHT NAV
   ========================= */
.top-right-nav {
  position: fixed;
  top: 20px;
  right: 20px;

  display: flex;
  align-items: center;
  gap: 12px;

  z-index: 9999;
}

/* ✅ UPDATED LOGO STYLE (CIRCULAR + SMALLER) */
.top-nav-logo {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-gold);
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.nav-btn:hover {
  background: #e6b91f;
}

.nav-primary {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}

/* =========================
   HERO (FULL WIDTH BREAKOUT)
   ========================= */
.hero {
  background-image: url("hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 420px;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 60px;
}

/* Overlay content box */
.hero-overlay-content {
  background: rgba(255, 255, 255, 0.88);
  padding: 40px 50px;
  border-radius: 18px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3 {
  margin-bottom: 18px;
}

p {
  margin-bottom: 16px;
}

.hero-subtitle {
  font-weight: 800;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 900px;
}

.center-text {
  text-align: center;
}

/* =========================
   SECTIONS
   ========================= */
.section {
  margin-bottom: 60px;
}

.section-soft {
  background: rgba(244,196,48,0.18);
  padding: 40px 30px;
  border-radius: 20px;
}

/* =========================
   CARDS
   ========================= */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  max-width: 100%;
}

/* Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* =========================
   SOCIAL ICONS
   ========================= */
.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.social-links a:hover {
  background: #e6b91f;
}

.social-links img {
  width: 22px;
  height: 22px;
}

/* =========================
   RESPONSIVE (MOBILE)
   ========================= */
@media (max-width: 768px) {

  body {
    padding: 130px 16px 40px;
  }

  .top-right-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  /* ✅ Smaller circular logo for mobile */
  .top-nav-logo {
    width: 60px;
    height: 60px;
  }

  .nav-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-soft {
    padding: 25px 18px;
  }

  .card {
    padding: 22px;
  }

  .hero {
    min-height: 300px;
  }

  .hero-overlay-content {
    padding: 25px 20px;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }
}
