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

:root {
  --gradient-1: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  --gradient-2: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
  --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

  --bg-primary: #fff8f3;
  --bg-secondary: #ffeee5;
  --glass-bg: rgba(255, 248, 243, 0.85);
  --glass-border: rgba(255, 126, 95, 0.3);

  --text-primary: #ff6b6b;
  --text-secondary: #ff9068;
  --text-muted: #ffb088;
}

* {
  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.7;
  color: #444;
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(0, 201, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 126, 95, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(146, 254, 157, 0.06) 0%, transparent 50%);
  animation: waveFlow 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes waveFlow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

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

/* Header - Coral Reef */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--text-secondary);
  padding: 1.4rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 25px rgba(255, 126, 95, 0.12);
}

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

.site-logo a {
  font-family: "Comfortaa", cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--text-secondary);
  transform: rotate(-3deg) scale(1.05);
}

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

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

.site-nav a:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

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

.section.head h1 {
  font-family: "Comfortaa", cursive;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: coralSway 5s ease-in-out infinite;
}

@keyframes coralSway {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(1deg);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.9;
}

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

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

.section header h2 {
  font-family: "Comfortaa", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 650px;
  margin-left: auto;
}

/* Footer - Sandy Bottom */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #ffe0d1 100%);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--text-secondary);
  margin-top: 6rem;
}

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

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

.footer-tagline {
  color: #666;
  line-height: 1.9;
}

.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;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateY(-3px);
}

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

.copyright a {
  color: var(--text-muted);
  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.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.75rem;
  color: var(--text-primary);
  margin-top: 18px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Comfortaa", cursive;
  font-weight: 600;
}
