/* Template 10 - Coral Reef / Vibrant Tropical */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Pacifico&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #ff6f91 0%, #ff9671 100%);
  --gradient-2: linear-gradient(135deg, #ffc75f 0%, #f9f871 100%);
  --gradient-3: linear-gradient(135deg, #ff7eb3 0%, #ff758c 100%);
  --gradient-4: linear-gradient(135deg, #ffcc5c 0%, #ffb347 100%);
  --gradient-5: linear-gradient(135deg, #ff8a5b 0%, #ff6f61 100%);

  --bg-primary: #fff8f3;
  --bg-secondary: #fff0e6;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 111, 145, 0.2);

  --text-primary: #2d1b2e;
  --text-secondary: #7a5564;
  --text-muted: #a98291;
}

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

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

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

/* Tropical coral reef wave background */
body::before {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 111, 145, 0.1) 50%, rgba(255, 150, 113, 0.15) 100%);
  clip-path: ellipse(120% 100% at 50% 100%);
  animation: coralWave 15s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes coralWave {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(-20px) scaleX(1.05);
  }
}

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

/* Playful rounded header */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-1) 1;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 25px rgba(255, 111, 145, 0.12);
}

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

.site-logo a {
  font-family: "Pacifico", cursive;
  font-size: 2rem;
  font-weight: 400;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  filter: brightness(1.2);
  transform: rotate(-3deg) scale(1.08);
}

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

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

.site-nav a:hover {
  color: #ff6f91;
  background: linear-gradient(135deg, rgba(255, 111, 145, 0.1) 0%, rgba(255, 150, 113, 0.1) 100%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 111, 145, 0.2);
}

/* Cheerful hero section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(255, 207, 95, 0.08) 0%, transparent 70%);
}

.section.head h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "🌺";
  position: absolute;
  top: -15px;
  right: -35px;
  font-size: 1.5rem;
  animation: floatFlower 3s ease-in-out infinite;
}

@keyframes floatFlower {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}

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

/* Tropical gradient footer */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffe4cc 100%);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid transparent;
  border-image: var(--gradient-2) 1;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 111, 145, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 204, 92, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ff6f91;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s 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.7rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
