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

:root {
  --gradient-1: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  --gradient-2: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  --gradient-3: linear-gradient(135deg, #f7b731 0%, #f79f1f 100%);
  --gradient-4: linear-gradient(135deg, #ee5a6f 0%, #f06595 100%);
  --gradient-5: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);

  --bg-primary: #fff8f0;
  --bg-secondary: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 107, 107, 0.2);

  --text-primary: #2d3436;
  --text-secondary: #ff6b6b;
  --text-muted: #636e72;
}

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(247, 183, 49, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Tropical Wave */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, #ff6b6b, #4ecdc4, #f7b731, #ee5a6f) 1;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.15);
}

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

.site-logo a {
  font-family: "Pacifico", cursive;
  font-size: 2rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(255, 107, 107, 0.3));
}

.site-logo a:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(3px 3px 6px rgba(255, 107, 107, 0.4));
}

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

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



.site-nav a:hover {
  color: #D4A548;
  transform: translateY(-2px);
}

.site-nav a:hover::before {
  left: 0;
}

/* Hero Section - Tropical Burst */
.section.head {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "🌴";
  position: absolute;
  font-size: 15rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: sway 6s ease-in-out infinite;
}

@keyframes sway {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-5deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(5deg);
  }
}

.section.head h1 {
  font-family: "Pacifico", cursive;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 6px rgba(255, 107, 107, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

.section.head p {
  font-size: 1.3rem;
  color: var(--text-primary);
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
}

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

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

.section header h2 {
  font-family: "Pacifico", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(78, 205, 196, 0.3));
}

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

/* Footer - Tropical Sunset */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #fff0e6 100%);
  padding: 4rem 0 2rem;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #ee5a6f, #f7b731, #4ecdc4, #ff6b6b) 1;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "☀️";
  position: absolute;
  top: -2rem;
  right: 5%;
  font-size: 4rem;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.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: var(--text-primary);
  line-height: 1.9;
  font-weight: 500;
}

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

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 107, 107, 0.1);
}

.footer-links a:hover {
  background: var(--gradient-1);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

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

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

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

.fade-in {
  opacity: 0;
  animation: bounceIn 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.8rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 700;
}
