@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Nunito+Sans:wght@300;400;600&display=swap');

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

:root {
  --lav-dark:  #AFA4CE;
  --lav-light: #C4BEDC;
  --cream:     #F0EFEA;
  --ink:       #2e2535;
  --muted:     #7a6e82;
  --soft:      #e8e3f0;
  --white:     #faf9f7;
  --serif:     'Nunito', sans-serif;
  --sans:      'Nunito Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  font-size: 17px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3.5rem;
  background: rgba(240, 239, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(191,154,200,0.2);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-logo span {
  display: none;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--lav-dark);
  color: #fff;
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(175,164,206,0.45);
  border-radius: 999px;
  color: var(--lav-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-left: 0.3rem;
}

.lang-toggle:hover {
  background: var(--lav-dark);
  color: #fff;
  border-color: var(--lav-dark);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--lav-dark);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(191,154,200,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--lav-dark);
  border: 1.5px solid var(--lav-dark);
}

.btn-outline:hover {
  background: var(--soft);
}

/* ── SECTION LABELS ── */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav-dark);
  display: block;
  margin-bottom: 0.8rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 2.5rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 0.8rem;
  color: var(--lav-light);
}

footer a {
  color: var(--lav-dark);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: #fff; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0.9rem 1.2rem; overflow: visible; }
  .nav-logo img { height: 28px; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #F0EFEA;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    z-index: 9999;
    list-style: none;
    margin: 0;
    padding: 5rem 2.5rem 3rem;
  }

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

  .nav-links > li {
    display: block !important;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid rgba(175,164,206,0.2);
  }

  .nav-links > li:first-child {
    border-top: 1px solid rgba(175,164,206,0.2);
  }

  .nav-links > li > a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    padding: 0.75rem 0;
    color: var(--ink);
    display: block;
    text-decoration: none;
    background: none !important;
    transition: color 0.15s;
  }

  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    color: var(--lav-dark);
    background: none !important;
  }

  .nav-links > li:last-child {
    border: none;
    margin-top: 2rem;
  }

  .nav-links > li > button.lang-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 1.4rem;
    margin: 0;
    border: 1.5px solid rgba(175,164,206,0.45);
    border-radius: 999px;
    background: none;
    color: var(--lav-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: inline-block;
  }

  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.6rem; text-align: center; }
}
