/* ===== VARIABLES ===== */
:root {
  --bg: #f5ebe0;
  --text: #3d2b1f;
  --accent: #d97ab2;
  --accent-dark: #c25a93;
  --accent-light: #dfa1c2;
  --white: #ffffff;
  --gray: #6b6b6b;
  --dark-bg: #5a5a5a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', Georgia, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { text-decoration: underline; }
.photo-credit a { color: var(--accent); text-decoration: underline; }
img { max-width: 100%; display: block; }

html {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
section[id] { scroll-margin-top: 120px; }

/* ===== HEADER ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(223, 161, 194, 0.1) 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo img:hover { transform: scale(1.05); }

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav > a {
  color: var(--text);
  font-size: 1rem;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
}
.nav > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav > a.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
.nav > a:hover::after { width: 100%; }
.nav > a:hover { color: var(--accent); text-decoration: none; }

/* ===== NAV MORE DROPDOWN ===== */
.nav-more { position: relative; }

.nav-more-btn {
  background: none;
  border: 1.5px solid var(--accent);
  color: var(--text);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: inherit;
  letter-spacing: 2px;
  padding-bottom: 4px;   /* optical centre for ellipsis */
}
.nav-more-btn:hover { background: rgba(217, 122, 178, 0.12); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(217, 122, 178, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  overflow: hidden;
  z-index: 200;
  animation: slideInUp 0.18s ease;
}
.nav-dropdown.open { display: block; }

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  font-size: 0.95rem;
  transition: background 0.15s;
}
.nav-dropdown a:hover {
  background: rgba(217, 122, 178, 0.08);
  color: var(--accent);
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(217, 122, 178, 0.15);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-pink {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
}
.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  text-decoration: none;
  color: var(--white);
}

.btn-pink-full {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--white);
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.btn-pink-full:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

/* ===== HERO ===== */
.hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 48px;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(217, 122, 178, 0.08) 100%);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease;
}
.hero::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(217, 122, 178, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -50px;
  pointer-events: none;
}
.hero-content {
  max-width: 920px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.8s ease 0.2s backwards;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero p { font-size: 1.05rem; color: var(--text); margin-bottom: 24px; line-height: 1.8; text-align: justify; }
.hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.icon-link:hover {
  background: rgba(217, 122, 178, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(223, 161, 194, 0.05) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  animation: slideInUp 0.8s ease;
}
.about-text h2 {
  font-size: 2rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.5px;
}
.about-text { text-align: center; }
.about-text p { margin-bottom: 16px; text-align: justify; font-size: 0.95rem; line-height: 1.8; }
.about-text .btn { display: inline-flex; margin: 20px auto 0; }
.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.about-image img:hover { transform: scale(1.02); }

.about-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: none;
  transition: transform 0.3s ease;
  display: block;
}
.about-img-wrap:hover img { transform: scale(1.02); }
.about-image .photo-credit {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
  text-align: center;
  font-style: italic;
}

/* ===== HELP SECTION ===== */
.help-section {
  padding: 80px 48px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(217, 122, 178, 0.08) 100%);
}
.help-header { margin-bottom: 48px; animation: slideInUp 0.8s ease; }
.help-header h2 {
  font-size: 2.4rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.help-header p { font-size: 1.05rem; color: var(--gray); margin-bottom: 20px; }

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.help-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideInUp 0.8s ease;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
}
.help-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* IMAGE WRAPPER — credit stays glued to photo */
.help-card-img-wrap {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}
.help-card-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}
.help-card-img-wrap:hover img {
  transform: scale(1.06);
}

/* Overlay credit — slides up from bottom of image on hover */
.img-credit-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(61, 43, 31, 0.62);
  color: var(--white);
  font-size: 0.72rem;
  font-style: italic;
  padding: 6px 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.help-card-img-wrap:hover .img-credit-overlay,
.about-img-wrap:hover .img-credit-overlay {
  transform: translateY(0);
}

/* Static credit below image (always visible) */
.help-card > .photo-credit {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
  padding: 6px 16px 0;
  line-height: 1.4;
  width: 100%;
}

.help-card h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 8px;
  padding: 10px 16px 0;
}
.help-card > p {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(90, 90, 90, 0.8) 100%);
  padding: 80px 48px;
  animation: slideInUp 0.8s ease;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-8px); }
.testimonial-card .quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-card .author { font-size: 0.85rem; color: var(--white); font-weight: bold; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 48px;
  max-width: 800px;
  margin: 0 auto;
  animation: slideInUp 0.8s ease;
}
.contact-section h2 {
  font-size: 2.4rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.contact-form-wrapper,
.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-form-wrapper label,
.newsletter-form-wrapper label {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 8px;
  font-weight: 500;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.newsletter-form-wrapper input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(61, 43, 31, 0.2);
  background: transparent;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, sans-serif;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.newsletter-form-wrapper input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 122, 178, 0.1);
  background: rgba(217, 122, 178, 0.02);
}
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder,
.newsletter-form-wrapper input::placeholder { color: rgba(61, 43, 31, 0.5); }
.contact-form-wrapper textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; }
.consent-row input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}
.consent-label { font-size: 0.9rem; color: var(--text); line-height: 1.5; cursor: pointer; }
.required-note { font-size: 0.85rem; color: var(--accent-dark); margin-top: 4px; }
.contact-email { margin-top: 24px; font-size: 0.95rem; text-align: center; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 48px;
  max-width: 700px;
  margin: 0 auto;
  animation: slideInUp 0.8s ease;
}
.newsletter-section h2 {
  font-size: 2.4rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ===== CONTENT / GDPR ===== */
.page-main { min-height: 70vh; }
.content-section { padding: 80px 24px; display: flex; justify-content: center; }
.text-block { max-width: 900px; width: 100%; }
.text-block h1 {
  font-size: 2.4rem; font-weight: 300;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.text-block h2 { font-size: 1.4rem; font-weight: 600; color: var(--accent); margin-top: 32px; margin-bottom: 12px; }
.text-block p { margin-bottom: 12px; line-height: 1.8; }
.text-block ul { padding-left: 24px; margin-bottom: 16px; }
.text-block li { margin-bottom: 8px; line-height: 1.8; }

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  font-size: 0.9rem;
  background: linear-gradient(180deg, transparent 0%, rgba(217, 122, 178, 0.05) 100%);
}
.site-footer p { margin-bottom: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .nav { justify-content: center; gap: 14px; flex-wrap: wrap; }
  .hero { padding: 40px 20px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .about-section { padding: 60px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 300px; }
  .help-section { padding: 60px 20px; }
  .help-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-section, .newsletter-section { padding: 60px 20px; max-width: 100%; }
  .contact-form-wrapper, .newsletter-form-wrapper { padding: 24px 16px; }
}