/* ---------------- BRAND THEME ---------------- */

:root {
  --brand-orange: #F28C28;
  --brand-orange-light: #F4A259;
  --brand-green: #2E7D32;
  --brand-green-light: #4CAF50;
  --brand-yellow: #F4C542;

  --neutral-900: #1F2933;
  --neutral-700: #3E4C59;
  --neutral-500: #7B8794;
  --neutral-300: #CBD2D9;
  --neutral-100: #F5F7FA;

  --bg-main: #FFFDF8;
  --bg-card: #FFFFFF;

  --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.06);

  --radius-card: 0.75rem;
  --radius-pill: 999px;

  --space-xs: 0.35rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
}

/* ---------------- GLOBAL ---------------- */

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--neutral-900);
  line-height: 1.6;
}

a {
  color: var(--brand-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------------- HEADER ---------------- */

.site-header {
  background: #fff;
  border-bottom: 3px solid var(--brand-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-group img {
  height: 55px;
  width: auto;
}

/* DESKTOP NAV */
.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--neutral-700);
  font-weight: 500;
}

.nav-desktop a.active {
  color: var(--brand-orange);
  font-weight: 700;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--neutral-900);
  border-radius: 3px;
}

/* MOBILE NAV */
.nav-mobile {
  display: none;
  background: #fff;
  border-top: 2px solid var(--brand-yellow);
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  color: var(--neutral-900);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ---------------- HERO ---------------- */

.hero {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
  color: #fff;
  padding: 3.5rem var(--space-lg);
  margin: 0 calc(-1 * var(--space-lg)) var(--space-xl);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ---------------- BUTTONS ---------------- */

.btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #fff;
  color: var(--brand-orange);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ---------------- CARDS ---------------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--brand-orange);
}

.badge {
  background: var(--brand-green);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* ---------------- FOOTER ---------------- */

footer {
  background: var(--brand-green);
  color: #fff;
  padding: 2rem var(--space-lg);
  margin-top: var(--space-xl);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

footer a {
  color: var(--brand-yellow);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0.85;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile.open {
    display: block;
  }

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

  .logo-group img {
    height: 45px;
  }
}
