/* ===== TOCCOA CURRENTS — WATER THEME ===== */

:root {
  --river-deep:   #0d3b5e;
  --river-mid:    #1a6b8a;
  --river-light:  #3ab5d8;
  --river-foam:   #a8dff0;
  --forest-dark:  #1b3a2a;
  --forest-mid:   #2e6b45;
  --forest-light: #5aad72;
  --stone:        #8b7d6b;
  --cream:        #f5f0e8;
  --accent:       #4ecdc4;
  --white:        #ffffff;
  --text-dark:    #1a2633;
  --text-mid:     #3d5166;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 59, 94, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: var(--river-foam);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--river-foam);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--forest-dark) 0%,
    var(--river-deep) 40%,
    var(--river-mid) 70%,
    var(--river-light) 100%
  );
}

/* Animated water ripples */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(168, 223, 240, 0.2);
  animation: ripple 6s ease-out infinite;
}
.hero::before { width: 300px; height: 300px; top: 60%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.hero::after  { width: 600px; height: 600px; top: 60%; left: 50%; transform: translate(-50%, -50%); animation-delay: 2s; }

@keyframes ripple {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(2.5); }
}

/* Flowing water overlay */
.water-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23f5f0e8' fill-opacity='1' d='M0,128L48,117.3C96,107,192,85,288,90.7C384,96,480,128,576,133.3C672,139,768,117,864,106.7C960,96,1056,96,1152,106.7C1248,117,1344,139,1392,149.3L1440,160L1440,200L0,200Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  animation: wave 8s ease-in-out infinite alternate;
}
@keyframes wave {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(78, 205, 196, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
  font-style: normal;
  color: var(--river-foam);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--river-foam);
  font-family: Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-location span::before { content: '◆ '; font-size: 0.5rem; opacity: 0.6; }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--forest-dark);
}
.btn-primary:hover { background: #6de0d8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78,205,196,0.4); }

.btn-outline {
  background: transparent;
  border-color: var(--river-foam);
  color: var(--river-foam);
}
.btn-outline:hover { background: var(--river-foam); color: var(--river-deep); transform: translateY(-2px); }

/* ===== SECTION BASE ===== */
section {
  padding: 5rem 2rem;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--river-deep);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-mid);
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--river-light), var(--forest-light));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===== CABINS ===== */
#cabins { background: var(--white); }

.cabins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cabin-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,59,94,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.cabin-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(13,59,94,0.18); }

.cabin-card-header {
  background: linear-gradient(135deg, var(--river-deep), var(--river-mid));
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cabin-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  height: 40px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.cabin-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }

.cabin-card-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.cabin-card-header .cabin-sub {
  color: var(--river-foam);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.cabin-card-body {
  padding: 2rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cabin-desc {
  font-family: Arial, sans-serif;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.dog-amenities {
  background: linear-gradient(135deg, rgba(46,107,69,0.08), rgba(58,181,216,0.08));
  border-left: 3px solid var(--forest-light);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

.dog-amenities h4 {
  color: var(--forest-dark);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-family: Arial, sans-serif;
}

.dog-amenities ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dog-amenities ul li {
  background: rgba(46,107,69,0.12);
  color: var(--forest-dark);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.booking-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.booking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.2s;
}

.booking-link .capacity {
  font-weight: normal;
  opacity: 0.8;
  font-size: 0.78rem;
}

.booking-link.vrbo   { background: #0055a5; color: white; }
.booking-link.airbnb { background: #5b8fc4; color: white; }
.booking-link.houfy  { background: #2ecc71; color: white; }

.booking-link:hover { opacity: 0.88; transform: translateX(3px); }

/* ===== RIVER DIVIDER ===== */
.river-divider {
  height: 120px;
  background: linear-gradient(180deg, var(--white) 0%, var(--river-light) 50%, var(--river-mid) 100%);
  position: relative;
  overflow: hidden;
}
.river-divider svg { position: absolute; bottom: 0; width: 100%; }

/* ===== NEARBY ===== */
#nearby {
  background: linear-gradient(170deg, var(--river-mid) 0%, var(--forest-dark) 100%);
  color: var(--white);
}

#nearby .section-header h2 { color: var(--river-foam); }
#nearby .section-header p   { color: rgba(255,255,255,0.75); }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nearby-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}
.nearby-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }

.nearby-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }

.nearby-card h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: Arial, sans-serif;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(78,205,196,0.3);
}

.nearby-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nearby-card ul li {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.nearby-card ul li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--river-light);
  font-weight: bold;
}

/* ===== SOCIAL / FOOTER ===== */
#connect {
  background: var(--cream);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(13,59,94,0.12);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.social-link:hover { border-color: var(--river-light); color: var(--river-deep); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(58,181,216,0.2); }

footer {
  background: var(--river-deep);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}
footer a { color: var(--river-foam); text-decoration: none; }
footer strong { color: var(--white); }

/* ===== SMOKE FREE BADGE ===== */
.smoke-free-banner {
  background: linear-gradient(90deg, var(--forest-mid), var(--river-mid));
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1rem; }
  .nav-links { display: none; }

  .hero-cta { flex-direction: column; align-items: center; }

  .cabins-grid  { grid-template-columns: 1fr; }
  .nearby-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .nearby-grid { grid-template-columns: 1fr; }
}
