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

:root {
  --sky:     #d4eef7;
  --sky2:    #b8e2f2;
  --grass:   #7ab648;
  --grass2:  #5a9a2c;
  --bark:    #8b5e3c;
  --bark2:   #6b4228;
  --cream:   #fffbf0;
  --yellow:  #f9e04b;
  --orange:  #f4874b;
  --pink:    #f7b8c4;
  --purple:  #c9b8f0;
  --teal:    #4bbfb8;
  --dark:    #2d3a1e;
  --mid:     #4a5c30;
  --text:    #3a2e1a;
  --light:   #7a8c5a;
  --white:   #ffffff;
  --nav-h:   68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctext y='20' font-size='20'%3E🐾%3C/text%3E%3C/svg%3E") 12 12, auto;
}

/* ── CLOUDS FLOATING ── */
.cloud {
  position: absolute;
  background: white;
  border-radius: 50px;
  opacity: 0.85;
  animation: float linear infinite;
}
.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
}
@keyframes float {
  from { transform: translateX(-120%); }
  to   { transform: translateX(110vw); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,251,240,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--grass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 200;
}

.nav-logo {
  font-family: 'Chewy', cursive;
  font-size: 1.5rem;
  color: var(--bark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.nav-logo .paw { font-size: 1.3rem; animation: waggle 2s ease-in-out infinite; display: inline-block; }
@keyframes waggle { 0%,100%{transform:rotate(-10deg)} 50%{transform:rotate(10deg)} }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mid);
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--yellow); color: var(--bark2); }
.nav-links .nav-cta {
  background: var(--orange);
  color: white;
  border-radius: 20px;
  padding: 8px 20px;
}
.nav-links .nav-cta:hover { background: #e06d30; color: white; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky2) 55%, #a8d88a 75%, var(--grass) 100%);
}

/* Hills */
.hill {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.hill-back  { width: 130%; height: 38%; left: -15%; background: #8dc85a; bottom: 0; }
.hill-mid   { width: 100%; height: 28%; left: 0;    background: var(--grass); bottom: 0; }
.hill-front { width: 120%; height: 16%; left: -10%; background: var(--grass2); bottom: 0; }

/* CSS Trees */
.trees {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 40px;
  pointer-events: none;
}

.tree { display: flex; flex-direction: column; align-items: center; }
.tree-top {
  width: 0; height: 0;
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid var(--dark);
}
.tree-trunk {
  background: var(--bark);
  border-radius: 2px;
}
.t1 .tree-top  { border-left-width:22px;border-right-width:22px;border-bottom-width:48px;border-bottom-color:#2d4a1a; }
.t1 .tree-trunk{ width:10px;height:22px; }
.t2 .tree-top  { border-left-width:30px;border-right-width:30px;border-bottom-width:64px;border-bottom-color:#1e3a12; }
.t2 .tree-trunk{ width:14px;height:28px; }
.t3 .tree-top  { border-left-width:18px;border-right-width:18px;border-bottom-width:40px;border-bottom-color:#3a5c22; }
.t3 .tree-trunk{ width:8px;height:18px; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  margin-top: -60px;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--bark2);
  font-family: 'Chewy', cursive;
  font-size: 1rem;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 0 rgba(0,0,0,0.1);
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.hero-title {
  font-family: 'Chewy', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--bark);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 3px 4px 0 rgba(107,66,40,0.2);
  animation: heroIn 0.8s ease both;
}
@keyframes heroIn { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }

.hero-tagline {
  font-family: 'Chewy', cursive;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--mid);
  margin-bottom: 20px;
  animation: heroIn 0.8s 0.15s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--dark);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  background: rgba(255,255,255,0.7);
  padding: 16px 24px;
  border-radius: 16px;
  animation: heroIn 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 0.8s 0.45s ease both;
}

.btn {
  font-family: 'Chewy', cursive;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 7px 0 rgba(0,0,0,0.12); }
.btn-orange { background: var(--orange); color: white; }
.btn-green  { background: var(--grass2); color: white; }

.hero-cat {
  position: relative;
  z-index: 10;
  margin: 28px auto 0;
  text-align: center;
  animation: catFloat 3s ease-in-out infinite;
}
@keyframes catFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ── WAVY DIVIDER ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ── SECTION BASE ── */
section { padding: 80px 48px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-family: 'Chewy', cursive;
  font-size: 0.95rem;
  background: var(--purple);
  color: var(--dark);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.section-title {
  font-family: 'Chewy', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ── ABOUT ── */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.quote-bubble {
  background: var(--yellow);
  border-radius: 20px 20px 20px 4px;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: 'Chewy', cursive;
  font-size: 1.2rem;
  color: var(--bark2);
  position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}
.quote-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 20px;
  border: 12px solid transparent;
  border-top-color: var(--yellow);
  border-bottom: 0;
  border-left: 0;
}

.about-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 6px 8px 0 rgba(90,154,44,0.15), 0 0 0 3px var(--grass);
  position: relative;
}

.about-card-title {
  font-family: 'Chewy', cursive;
  font-size: 1.3rem;
  color: var(--bark);
  margin-bottom: 20px;
  text-align: center;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.stat-bubble {
  background: var(--sky);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  border: 2px solid rgba(75,191,184,0.3);
}
.stat-num {
  font-family: 'Chewy', cursive;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}
.stat-lbl { font-size: 0.78rem; font-weight: 600; color: var(--mid); margin-top: 4px; }

.team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fff0;
  border-radius: 12px;
  padding: 14px;
  margin-top: 10px;
  border: 2px dashed var(--grass);
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.team-text { font-size: 0.85rem; color: var(--mid); }
.team-text strong { display: block; font-size: 0.9rem; color: var(--dark); font-weight: 700; }

/* ── ACCOMMODATION ── */
#accommodation { background: #f0fce8; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.room-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 6px 0 rgba(0,0,0,0.08);
  border: 2px solid var(--grass);
  transition: transform 0.2s, box-shadow 0.2s;
}
.room-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 8px 12px 0 rgba(0,0,0,0.1);
}

.room-top {
  height: px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.room-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-top.green  { background: linear-gradient(135deg, #a8e068, #7ab648); }
.room-top.blue   { background: linear-gradient(135deg, #a8dff8, #4bbfb8); }
.room-top.yellow { background: linear-gradient(135deg, #fce68a, #f9c94b); }

.room-body { padding: 22px; }
.room-name {
  font-family: 'Chewy', cursive;
  font-size: 1.3rem;
  color: var(--bark);
  margin-bottom: 8px;
}
.room-desc { font-size: 0.875rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-right: 5px;
  margin-bottom: 4px;
}
.tag-green  { background: #d4f0b0; color: var(--grass2); }
.tag-blue   { background: #c8eef8; color: #2a7a90; }
.tag-orange { background: #fde0c8; color: #b05020; }

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.feat-card {
  background: white;
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  border: 2px solid var(--pink);
  transition: transform 0.2s;
}
.feat-card:hover { transform: scale(1.04) rotate(0.5deg); }
.feat-icon { font-size: 2rem; margin-bottom: 8px; }
.feat-title { font-family: 'Chewy', cursive; font-size: 1rem; color: var(--bark); margin-bottom: 6px; }
.feat-desc { font-size: 0.78rem; color: var(--light); line-height: 1.6; }

/* ── ROUTINE ── */
#routine {
  background: linear-gradient(180deg, #2d3a1e 0%, #1e2d12 100%);
  color: white;
}

#routine .section-tag  { background: var(--orange); color: white; }
#routine .section-title { color: var(--yellow); text-shadow: 2px 3px 0 rgba(0,0,0,0.3); }

.routine-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.routine-intro { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.75); }

.schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sched-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 18px;
  border-left: 4px solid var(--yellow);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s;
}
.sched-item.visible { opacity: 1; transform: translateX(0); }
.sched-item:hover { background: rgba(255,255,255,0.13); transform: translateX(4px); }

.sched-time {
  font-family: 'Chewy', cursive;
  font-size: 1.3rem;
  color: var(--yellow);
  min-width: 70px;
}
.sched-emoji { font-size: 1.4rem; }
.sched-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ── FEES ── */
#fees { background: var(--cream); }

.fees-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.price-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 6px 8px 0 rgba(90,154,44,0.2);
  border: 3px solid var(--grass);
}

.price-header {
  background: var(--grass2);
  padding: 24px 28px;
  text-align: center;
}
.price-header h3 {
  font-family: 'Chewy', cursive;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 4px;
  text-shadow: 1px 2px 0 rgba(0,0,0,0.2);
}
.price-header p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px dashed #e8f0dc;
  transition: background 0.15s;
}
.price-row:last-of-type { border-bottom: none; }
.price-row:hover { background: #f8fff0; }
.price-cats { font-size: 0.9rem; font-weight: 700; color: var(--mid); }
.price-amt {
  font-family: 'Chewy', cursive;
  font-size: 1.8rem;
  color: var(--teal);
}
.price-amt sub { font-size: 0.65rem; font-family: 'Nunito', sans-serif; color: var(--light); font-weight: 600; }

.price-note {
  background: #f0ffe8;
  padding: 14px 28px;
  font-size: 0.8rem;
  color: var(--mid);
  border-top: 2px dashed var(--grass);
  font-style: italic;
}

.right-col h3 {
  font-family: 'Chewy', cursive;
  font-size: 1.4rem;
  color: var(--bark);
  margin-bottom: 14px;
  margin-top: 28px;
}
.right-col h3:first-child { margin-top: 0; }

.hours-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--sky2);
  margin-bottom: 28px;
  box-shadow: 4px 5px 0 rgba(75,191,184,0.15);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid #e8f8fc;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 700; color: var(--dark); }
.hours-row span:last-child { color: var(--mid); }

.terms-list { list-style: none; padding: 0; }
.terms-list li {
  font-size: 0.875rem;
  color: var(--mid);
  padding: 9px 0;
  border-bottom: 1px dashed #e0e8d4;
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li::before { content: '🐾'; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }

/* ── CONTACT ── */
#contact { background: var(--sky); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-intro { font-size: 1rem; line-height: 1.8; color: var(--dark); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.detail-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.08);
}
.detail-text { font-size: 0.875rem; color: var(--dark); line-height: 1.6; }
.detail-text strong { display: block; font-family: 'Chewy', cursive; font-size: 1rem; color: var(--bark); margin-bottom: 2px; }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  background: white;
  border: 2px solid var(--grass);
  border-radius: 12px;
  padding: 8px 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mid);
  transition: background 0.2s, transform 0.15s;
}
.social-btn:hover { background: var(--yellow); transform: translateY(-2px); }

.form-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 8px 10px 0 rgba(75,191,184,0.2);
  border: 3px solid var(--teal);
}

.form-title {
  font-family: 'Chewy', cursive;
  font-size: 1.7rem;
  color: var(--bark);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input, select, textarea {
  width: 100%;
  background: #f8fff8;
  border: 2px solid #d4e8c4;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(75,191,184,0.15);
}
textarea { min-height: 100px; resize: vertical; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5c30' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 20px;
  font-family: 'Chewy', cursive;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 5px 0 #c05020;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 6px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #c05020; }
.form-submit:active { transform: translateY(2px); box-shadow: 0 3px 0 #c05020; }

.form-note {
  font-size: 0.75rem;
  color: var(--light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 36px 48px;
  text-align: center;
}
.footer-logo {
  font-family: 'Chewy', cursive;
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 8px;
}
.footer-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .about-grid, .routine-grid, .fees-layout, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
