/* Template 23 - Tropical Paradise */
@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Varela+Round&display=swap");

:root {
  --turquoise: #00d4ff;
  --coral: #ff6b6b;
  --lime: #51cf66;
  --sunshine: #ffd43b;
  --sand: #fff4e6;
  --ocean: #1864ab;
  --palm: #2f9e44;
}

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

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

body {
  font-family: "Varela Round", sans-serif;
  line-height: 1.7;
  color: var(--ocean);
  background: linear-gradient(135deg, var(--sand) 0%, #ffe8cc 100%);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "🌴";
  position: fixed;
  font-size: 8rem;
  opacity: 0.05;
  animation: palmSway 6s ease-in-out infinite;
  right: 5%;
  top: 20%;
  z-index: -1;
}

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

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

/* Header with Wave Design */
.site-header {
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--ocean) 100%);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 2rem;
}

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

.site-logo a {
  font-family: "Pacifico", cursive;
  font-size: 2.2rem;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 3px 3px 0 var(--coral);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  transform: scale(1.1) rotate(-3deg);
  text-shadow: 4px 4px 0 var(--sunshine);
}

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

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

.site-nav a:hover {
  background: var(--sunshine);
  color: var(--ocean);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 212, 59, 0.4);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--sand) 0%, #ffd8a8 100%);
}

.section.head h1 {
  font-family: "Pacifico", cursive;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--sunshine) 50%, var(--turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: beachWave 3s ease-in-out infinite;
}

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

.section.head p {
  font-size: 1.4rem;
  color: var(--ocean);
  max-width: 1000px;
  margin: 0 auto;
}

/* 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;
  margin-bottom: 1rem;
  color: var(--coral);
  text-shadow: 2px 2px 0 var(--turquoise);
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--turquoise) 100%);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: #ffffff;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  padding-top: 5rem;
}

.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: #ffffff;
  line-height: 1.8;
  opacity: 0.95;
}

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.footer-links a:hover {
  background: var(--sunshine);
  color: var(--ocean);
  transform: scale(1.1);
}

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

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

/* Animations */
.fade-in {
  opacity: 0;
  animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  60% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.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;
  color: var(--coral);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  text-shadow: 1px 1px 0 var(--sunshine);
}
