/* Template 5 - Sunset Coral / Rounded Soft */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --color-white: #ffffff;
  --color-blush: #fff5f3;
  --color-peach: #ffd5cc;
  --color-coral: #ff6b6b;
  --color-deep-coral: #e84545;
  --color-wine: #4a1942;
  --color-orange-accent: #ff9f43;

  --bg-primary: var(--color-blush);
  --bg-secondary: var(--color-white);
  --text-primary: var(--color-wine);
  --text-secondary: #6b4a62;
  --text-muted: #9a7a92;
  --accent: var(--color-coral);
  --accent-hover: var(--color-deep-coral);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 500;
  overflow-x: hidden;
}

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

/* Header - Floating Pill Style */
.site-header {
  background: transparent;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  padding: 0.9rem 1.75rem;
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(74, 25, 66, 0.1);
  transition: all 0.3s ease;
}

.header-inner:hover {
  box-shadow: 0 12px 40px rgba(74, 25, 66, 0.15);
}

.site-logo a {
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-coral);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--color-deep-coral);
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
}

.site-nav a:hover {
  color: var(--color-white);
  background: var(--color-coral);
  transform: translateY(-2px);
}

/* Hero Section - Centered Friendly */
.section.head {
  padding: 5rem 0;
  background: var(--color-white);
  border-radius: 0 0 80px 80px;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(74, 25, 66, 0.08);
}

.section.head h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--color-wine);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  animation: bounceIn 0.8s ease-out;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 500;
  animation: bounceIn 0.8s ease-out 0.1s both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  60% {
    transform: scale(1.02) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Section Styling */
.section {
  padding: 4.5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 3rem;
}

.section header h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-wine);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-orange-accent));
  border-radius: 4px;
}

.section header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 1rem auto 0;
}

/* Footer - Rounded Top */
.footer {
  background: var(--color-wine);
  padding: 4rem 0 2rem;
  margin-top: 3rem;
  border-radius: 60px 60px 0 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  background: var(--color-coral);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
}

.copyright,
.copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(25px) scale(0.98);
  animation: fadeInSoft 0.6s ease forwards;
}

@keyframes fadeInSoft {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.12s; }
.fade-in:nth-child(3) { animation-delay: 0.19s; }
.fade-in:nth-child(4) { animation-delay: 0.26s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  color: var(--color-wine);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
