/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2E8B57;
  --orange: #E85D3A;
  --blue: #4169E1;
  --purple: #8B5CF6;
  --gold: #F5C518;
  --red: #DC2626;
  --cream: #FFF9F0;
  --text: #4B5563;
  --heading: #1F2937;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --radius: 1.5rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Quicksand', sans-serif; color: var(--heading); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}
button { cursor: pointer; color: inherit; }

/* Keyboard focus ring (WCAG 2.4.7). Mouse interaction does NOT trigger
   this thanks to :focus-visible. Form inputs have their own focus state
   (border + bg) — opted out below. */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.form-input:focus-visible { outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility */
.hidden { display: none !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: .75rem 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.logo-y { color: var(--green); }
.logo-o { color: var(--orange); }
.logo-g { color: var(--blue); }
.logo-i { color: var(--purple); }
.logo-m { color: var(--gold); }
.logo-a { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: .25rem 0;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s;
}
.nav-links a:hover { color: var(--heading); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--heading);
  margin: 6px 0;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding-top: 5rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: .75rem;
  transition: background .2s;
  width: 80%;
  text-align: center;
}
.mobile-menu a:hover { background: var(--gray-50); }

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 3rem 0 2rem;
}
.footer-content { text-align: center; }
.footer .logo {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}
.footer-links a {
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-socials a {
  color: var(--gray-400);
  font-size: 1.25rem;
  transition: color .2s;
}
.footer-socials a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--gray-400);
}
.footer-bottom-heart { color: var(--red); }

/* ===== RESPONSIVE (navbar + footer only) ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
