/* Template 39 - Soft Peach & Navy Blue */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700;900&family=Nunito+Sans:wght@400;600;700&display=swap");

:root {
  --peach: #ffccbc;
  --peach-light: #ffddc1;
  --peach-dark: #ffab91;
  --navy: #1a237e;
  --navy-light: #303f9f;
  --navy-dark: #0d1642;
  --cream: #fff9f5;
  --text-dark: #1a237e;
  --text-gray: #5c6bc0;
}

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

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

body {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 171, 145, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(48, 63, 159, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Crimson Pro", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--peach-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-style: italic;
}

.site-logo a:hover {
  color: var(--peach);
  transform: translateY(-2px);
}

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

.site-nav a {
  color: var(--peach-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.7rem 1.3rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a:hover {
  background: var(--peach);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(255, 204, 188, 0.4);
}

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--peach-light) 0%, var(--peach) 100%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--peach-dark);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.1);
  }
}

.section.head h1 {
  font-family: "Crimson Pro", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-style: italic;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: "Crimson Pro", serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--navy);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.section header h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--peach) 0%, var(--peach-dark) 100%);
  border-radius: 2px;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: var(--peach-light);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.footer-tagline {
  color: rgba(255, 221, 193, 0.9);
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(255, 221, 193, 0.9);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.footer-links a:hover {
  color: var(--peach);
  border-bottom-color: var(--peach);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 221, 193, 0.2);
}

.copyright a {
  color: rgba(255, 221, 193, 0.7);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

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-size: 1.9rem;
  color: var(--navy);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  font-style: italic;
}
