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

:root {
  --bg-primary: #fff5e6;
  --bg-secondary: #ffe4cc;
  --sunset-orange: #ff6b35;
  --sunset-pink: #ff85a2;
  --ocean-blue: #4ecdc4;
  --sand-beige: #f7dc9f;

  --text-primary: #2d4654;
  --text-secondary: #5a7a8f;
  --text-muted: #8fa3b0;
}

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

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

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(180deg, #fff5e6 0%, #ffe4cc 50%, #ffd4a3 100%);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(78, 205, 196, 0.3) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(78, 205, 196, 0.1) 0px,
      transparent 20px,
      transparent 40px,
      rgba(78, 205, 196, 0.1) 60px
    );
  pointer-events: none;
  z-index: 0;
  animation: waves 10s linear infinite;
}

@keyframes waves {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(60px);
  }
}

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

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--sunset-orange);
  border-radius: 0 0 50px 50px;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

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

.site-logo a {
  font-family: "Pacifico", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--sunset-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.2);
}

.site-logo a:hover {
  color: var(--sunset-pink);
  transform: rotate(-2deg);
}

.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: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

.site-nav a:hover {
  color: white;
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-pink) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.section.head::before {
  content: "☀️";
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 5rem;
  opacity: 0.2;
  animation: sunRotate 20s linear infinite;
}

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

.section.head h1 {
  font-family: "Pacifico", cursive;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-pink) 50%, var(--ocean-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gentleWave 4s ease-in-out infinite;
}

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

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

.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: 1rem;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sunset-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 228, 204, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--ocean-blue);
  border-radius: 50px 50px 0 0;
  margin-top: 5rem;
  box-shadow: 0 -10px 30px rgba(78, 205, 196, 0.15);
}

.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: var(--text-secondary);
  line-height: 1.8;
}

.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;
}

.footer-links a:hover {
  color: var(--sunset-orange);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(90, 122, 143, 0.2);
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.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(--ocean-blue);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Pacifico", cursive;
}
