:root {
  --red: #E84545;
  --orange: #F5921B;
  --yellow: #F9D423;
  --green: #5CB85C;
  --blue: #4A90D9;
  --purple: #9B6BB0;
  --navy: #2C3E6B;
  --sky: #E8F4FD;
  --cream: #FFFDF8;
  color-scheme: light only;
}

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

html, body {
  font-family: 'Nunito', sans-serif;
  color: #3a3a3a;
  background-color: #FFFDF8 !important;
  min-height: 100vh;
}

/* ─── Navigation ─── */
.site-nav {
  background: white;
  box-shadow: 0 1px 10px rgba(44,62,107,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  will-change: box-shadow;
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 2px 12px rgba(44,62,107,0.12);
}
.nav-brand {
  text-align: center;
  padding: 14px 20px 6px;
  max-height: 150px;
  overflow: hidden;
  will-change: max-height, opacity;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, padding 0.35s cubic-bezier(0.4,0,0.2,1);
}
.site-nav.scrolled .nav-brand {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.nav-brand img {
  height: 120px;
  width: auto;
}
.nav-bar {
  display: flex;
  justify-content: center;
  padding: 0 20px 10px;
  transition: padding 0.3s cubic-bezier(0.4,0,0.2,1);
}
.site-nav.scrolled .nav-bar {
  padding: 6px 20px;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  font-family: 'Baloo 2', cursive;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, padding 0.3s cubic-bezier(0.4,0,0.2,1);
}
.site-nav.scrolled .nav-links a {
  padding: 5px 12px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--sky);
  color: var(--blue);
}

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--navy);
  margin: 5px 0; border-radius: 2px; transition: all 0.3s;
}

@media (max-width: 680px) {
  .nav-brand { padding: 10px 20px 4px; max-height: 120px; }
  .nav-brand img { height: 90px; }
  .nav-toggle { display: block; margin: 0 auto 6px; }
  .site-nav.scrolled .nav-toggle { margin: 4px auto; }
  .nav-bar { flex-direction: column; align-items: center; padding-bottom: 8px; }
  .site-nav.scrolled .nav-bar { padding: 4px 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    padding: 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 16px; text-align: center; }
}

/* ─── Rainbow bar ─── */
.rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
}
.rainbow-bar-thin {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
}

/* ─── Hero ─── */
.hero {
  background: var(--cream);
  text-align: center;
  padding: 40px 20px 10px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,212,35,0.08) 0%, rgba(74,144,217,0.04) 50%, transparent 70%);
  pointer-events: none;
}
.hero .logo-img {
  width: min(300px, 80%);
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease-out;
}
.hero .tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.75;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease-out 0.15s backwards;
}

/* ─── Page Header (non-home) ─── */
.page-header {
  background: var(--cream);
  text-align: center;
  padding: 36px 20px 20px;
}
.page-header h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.page-header p {
  font-size: 0.95rem;
  color: #777;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Container ─── */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.container-wide {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* ─── Cards ─── */
.card {
  background: white;
  border-radius: 22px;
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(44,62,107,0.05);
  animation: fadeUp 0.6s ease-out backwards;
}
.card h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
}
.card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 16px 0 10px;
  text-align: center;
}
.card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin-bottom: 14px;
}

/* ─── Rooms Grid ─── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.room-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 13px;
  border-radius: 13px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.2s;
}
.room-pill:hover { transform: scale(1.03); }
.room-pill .emoji { font-size: 1.15rem; }

/* ─── Highlights ─── */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}
.highlight-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Offer Banner ─── */
.offer-banner {
  background: linear-gradient(135deg, #FFF7D6 0%, #FFECB3 100%);
  border: 2px solid rgba(249,212,35,0.3);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 20px;
  text-align: center;
}
.offer-banner h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.offer-banner p {
  font-size: 0.9rem;
  color: #6B5900;
  font-weight: 600;
}

/* ─── Photo Placeholder ─── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--sky), #F0E8FD);
  border: 2px dashed #ccc;
  border-radius: 18px;
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 20px;
  color: #aaa;
  font-size: 0.88rem;
  font-weight: 600;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.photo-grid .photo-placeholder { margin-bottom: 0; padding: 40px 16px; }

/* ─── CTA Button ─── */
.cta-btn {
  display: inline-block;
  padding: 13px 32px;
  border: none;
  border-radius: 15px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 4px 18px rgba(232,69,69,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,69,69,0.32);
}
.cta-btn.green { background: linear-gradient(135deg, var(--green), #3DA63D); box-shadow: 0 4px 18px rgba(92,184,92,0.22); }
.cta-btn.green:hover { box-shadow: 0 6px 24px rgba(92,184,92,0.32); }
.cta-btn.blue { background: linear-gradient(135deg, var(--blue), #3578C4); box-shadow: 0 4px 18px rgba(74,144,217,0.22); }
.cta-btn.blue:hover { box-shadow: 0 6px 24px rgba(74,144,217,0.32); }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mt-10 { margin-top: 10px; }

/* ─── Form ─── */
.form-card {
  background: white;
  border-radius: 22px;
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(44,62,107,0.05);
}
.form-card h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 4px;
  text-align: center;
}
.form-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: #999;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid #EDEDEE;
  border-radius: 13px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  color: #333;
  background: #FAFAFA;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,144,217,0.10);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.submit-btn {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 15px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 4px 18px rgba(232,69,69,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,69,69,0.32); }

/* Success */
.success-msg { display: none; text-align: center; padding: 28px 16px; }
.success-msg.show { display: block; }
.success-msg .check {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
.success-msg .check svg { width: 30px; height: 30px; }
.success-msg h3 { font-family: 'Baloo 2', cursive; font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.success-msg p { color: #777; font-size: 0.9rem; line-height: 1.6; }

/* ─── Location badge ─── */
.location-badge {
  text-align: center;
  margin-bottom: 14px;
}
.location-badge span {
  display: inline-block;
  background: var(--sky);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, transform 0.2s;
}
.location-badge a:hover span {
  background: #D4ECFA;
  transform: translateY(-1px);
}

/* ─── Booking embed ─── */
.booking-embed {
  background: white;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(44,62,107,0.05);
  min-height: 400px;
}
.booking-embed iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 14px;
}
.booking-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px dashed #ddd;
  border-radius: 14px;
}

/* ─── Footer ─── */
.site-footer {
  background: white;
  padding: 28px 20px;
  margin-top: 20px;
  box-shadow: 0 -1px 8px rgba(44,62,107,0.04);
}
.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s;
  text-decoration: none;
}
.social-link:hover { transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; fill: var(--navy); }
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.8rem;
  color: #999;
  text-decoration: underline;
  margin: 0 8px;
}
.footer-text { font-size: 0.78rem; color: #bbb; }

/* ─── Animations ─── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ─── Email protection ─── */
.e { font-size: inherit; }

/* ─── Screen reader only ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 16px 30px; }
  .rooms-grid { gap: 6px; }
  .room-pill { padding: 8px 10px; font-size: 0.82rem; }
  .photo-grid { grid-template-columns: 1fr; }
}
