/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --pink:      #EF476F;
  --yellow:    #FFD166;
  --teal:      #06D6A0;
  --blue:      #118AB2;
  --dark:      #073B4C;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: #fff;
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.ornamental-divider {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  opacity: 0.9;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EF476F 0%, #118AB2 50%, #06D6A0 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero-section { background-attachment: scroll; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 59, 76, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 2rem 1.5rem;
  max-width: 900px;
  width: 100%;
}

.hero-text { flex: 1; }
.hero-portrait-wrap { flex-shrink: 0; }

.hero-portrait {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  box-shadow:
    0 0 0 6px rgba(255, 209, 102, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.25);
  transition: opacity 0.8s ease;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-portrait {
    width: 160px;
    height: 160px;
  }
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: #fff;
}

.hero-years {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.hero-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 1.25rem auto 0;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--blue);
  color: rgba(255,255,255,0.85);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-years {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 1050;
  display: flex;
  gap: 0.25rem;
  background: rgba(7, 59, 76, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover {
  background: var(--teal);
  color: #fff;
}

.lang-btn.active {
  background: #042A37;
  color: #fff;
}

@media (max-width: 480px) {
  .lang-switcher {
    top: 0.6rem;
    right: 0.75rem;
    padding: 0.2rem 0.35rem;
  }
  .lang-btn span { display: none; }
  .lang-btn {
    padding: 0.2rem 0.35rem;
    font-size: 1.1rem;
  }
}
