/* Template 28 - Tropical Paradise / Vibrant Island */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Montserrat:wght@300;400;500;600;700&family=Quicksand:wght@400;500;600&display=swap');

:root {
  --sand-light: #fef9f3;
  --sand-warm: #f5e6d3;
  --ocean-turquoise: #40c9c9;
  --ocean-deep: #1a9999;
  --coral-pink: #ff6b6b;
  --coral-dark: #ee5a5a;
  --sunset-orange: #ffa94d;
  --palm-green: #2d8a4e;
  --coconut-brown: #5c4033;
  --sky-blue: #87ceeb;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--coconut-brown);
  background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sand-light) 30%, var(--sand-warm) 100%);
  background-attachment: fixed;
  font-weight: 400;
  min-height: 100vh;
}

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

/* Header - Beach Bar Style */
.site-header {
  background: linear-gradient(135deg, var(--ocean-turquoise) 0%, var(--ocean-deep) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 153, 153, 0.3);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 10'%3E%3Cpath fill='%231a9999' d='M0,10 Q150,0 300,10 T600,10 T900,10 T1200,10 L1200,10 L0,10 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 300px 10px;
}

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

.site-logo a {
  font-family: 'Pacifico', cursive;
  font-size: 2.2rem;
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  transform: scale(1.05);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

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

.site-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a:hover {
  background: var(--coral-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.section.head {
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--sunset-orange);
  border-radius: 50%;
  box-shadow: 0 0 40px var(--sunset-orange), 0 0 80px rgba(255, 169, 77, 0.5);
  animation: sunGlow 3s ease-in-out infinite alternate;
}

@keyframes sunGlow {
  0% { box-shadow: 0 0 40px var(--sunset-orange), 0 0 80px rgba(255, 169, 77, 0.5); }
  100% { box-shadow: 0 0 60px var(--sunset-orange), 0 0 120px rgba(255, 169, 77, 0.7); }
}

.section.head h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--ocean-deep);
  text-shadow: 2px 2px 0 white;
  margin-top: 3rem;
}

.section.head p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  color: var(--coconut-brown);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

/* Section Styling */
.section {
  padding: 4rem 0;
  position: relative;
}

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

.section header h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--ocean-deep);
}

.section header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-pink), var(--sunset-orange));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section header p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: var(--coconut-brown);
  max-width: 600px;
  margin: 0 auto;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--palm-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--coconut-brown) 0%, #3d2a22 100%);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  color: var(--sand-light);
}

.footer::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath fill='%235c4033' d='M0,20 Q100,0 200,15 T400,10 T600,18 T800,5 T1000,15 T1200,10 L1200,20 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 400px 20px;
}

.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(--sand-warm);
  font-family: 'Quicksand', sans-serif;
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--sand-warm);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
}

.footer-links a:hover {
  background: var(--coral-pink);
  color: white;
}

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

.copyright a {
  color: var(--sand-warm);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
@keyframes waveFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: 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;
}
