:root {
  --onyx: #0A171D;
  --wheat: #FFF6E9;
  --nectarine: #FFBD76;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--wheat);
  color: var(--onyx);
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
}

.logo {
  font-weight: 500;
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
.nav-links {
  position: absolute;
  top: 60px;
  right: 20px;
  background: white;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-links a {
  text-decoration: none;
  color: var(--onyx);
  padding: 10px 0;
}

/* SHOW MENU */
.nav-links.active {
  display: flex;
}

/* HERO */
.hero {
  background: var(--onyx);
  color: var(--wheat);
  padding: 80px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.hero p {
  margin: 20px 0;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  flex: 1;
  transition: 0.3s;
}

.primary {
  background: var(--nectarine);
  color: var(--onyx);
}

.secondary {
  border: 1px solid var(--wheat);
  color: var(--wheat);
}

/* SECTIONS */
.section {
  padding: 40px 20px;
}

/* CARDS */
.services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
}

/* DARK SECTION */
.dark {
  background: var(--onyx);
  color: var(--wheat);
  text-align: center;
}

/* CTA */
.cta {
  background: var(--onyx);
  color: var(--wheat);
  text-align: center;
  padding: 60px 20px;
}

.cta a {
  display: inline-block;
  margin-top: 15px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .services {
    flex-direction: row;
  }
}
