/* Template 56 - Tropical Paradise Bright */
@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --bg-primary: #fffef9;
  --bg-secondary: #fff5e6;
  --tropical-blue: #00b4d8;
  --tropical-orange: #ff6b35;
  --tropical-pink: #ff006e;
  --tropical-green: #06ffa5;
  --text-primary: #1a1a2e;
  --text-secondary: #424857;
  --text-muted: #6b7280;
}

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(6, 255, 165, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: colorShift 15s ease-in-out infinite;
}

@keyframes colorShift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

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

.site-header {
  background: linear-gradient(135deg, var(--tropical-blue) 0%, var(--tropical-pink) 100%);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

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

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

.site-logo a:hover {
  transform: scale(1.1) rotate(-5deg);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

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

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 30px;
  margin: 2rem 0;
}

.section.head h1 {
  font-family: "Righteous", sans-serif;
  font-size: 5.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--tropical-blue) 0%, var(--tropical-pink) 50%, var(--tropical-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  animation: rainbow 5s ease-in-out infinite;
}

@keyframes rainbow {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(30deg); }
}

.section.head p {
  font-size: 1.35rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Righteous", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--tropical-orange) 0%, var(--tropical-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer {
  background: linear-gradient(135deg, var(--tropical-blue) 0%, var(--tropical-pink) 100%);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  border-radius: 30px 30px 0 0;
  color: #ffffff;
}

.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, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 600;
}

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

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

.footer-links a:hover {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  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: 2rem;
  background: linear-gradient(135deg, var(--tropical-blue) 0%, var(--tropical-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Righteous", sans-serif;
  font-weight: 400;
}
