/* Template 46 - Teal Ocean / Coral Sunset */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Raleway:wght@500;600;700;800&display=swap");

:root {
  --bg-primary: #e0f7fa;
  --bg-secondary: #b2ebf2;
  --bg-accent: #ffffff;
  
  --text-primary: #004d5c;
  --text-secondary: #00838f;
  --text-muted: #4fb3bf;
  
  --accent-teal: #00acc1;
  --accent-coral: #ff6f61;
  --accent-ocean: #006064;
}

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

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

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

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

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-ocean) 100%);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 131, 143, 0.3);
}

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

.site-logo a {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
  border: 2px solid transparent;
}

.site-nav a:hover {
  color: #ffffff;
  border-color: var(--accent-coral);
  background: rgba(255, 111, 97, 0.2);
}

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

.section.head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-accent), transparent);
}

.section.head h1 {
  font-family: "Raleway", sans-serif;
  font-size: 4.3rem;
  font-weight: 900;
  margin-bottom: 1.6rem;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: waveText 2s ease-in-out infinite;
}

@keyframes waveText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.9;
  position: relative;
  font-weight: 600;
}

/* Section Styling */
.section {
  padding: 5.5rem 0;
  background: var(--bg-accent);
}

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

.section header h2 {
  font-family: "Raleway", sans-serif;
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--accent-teal);
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--accent-ocean) 0%, var(--accent-teal) 100%);
  padding: 3.5rem 0 1.5rem;
  margin-top: 5rem;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-tagline {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-size: 1.05rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-coral);
}

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

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

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

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

.fade-in:nth-child(1) { animation-delay: 0.12s; }
.fade-in:nth-child(2) { animation-delay: 0.24s; }
.fade-in:nth-child(3) { animation-delay: 0.36s; }

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.8rem;
  color: var(--accent-teal);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}
