/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Lora', Georgia, serif;
  color: #4A2040;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
@media (min-width: 1024px) { .section { padding: 120px 0; } }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,58,94,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(107,58,94,0.1); }

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #F9F3F7 0%, #FFF3D6 50%, #F9F3F7 100%);
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,58,94,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid #E8C5D8;
  color: #6B3A5E;
  background: transparent;
  cursor: pointer;
}
.btn-secondary:hover { background: #F3E4ED; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(107,58,94,0.08);
  transition: all 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107,58,94,0.15);
}

/* ===== ROOM CARDS ===== */
.room-card .chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #F3E4ED;
  color: #6B3A5E;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
}

/* ===== EXPERIENCE CARDS ===== */
.exp-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(107,58,94,0.08);
  transition: all 0.35s ease;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107,58,94,0.15);
}
.exp-card-img-wrap {
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
}
.exp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-card:hover .exp-card-img { transform: scale(1.06); }

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(107,58,94,0.08);
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,58,94,0.14);
}

/* ===== INPUTS ===== */
.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8C5D8;
  border-radius: 0.75rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  color: #4A2040;
  background: #FFF9FB;
  transition: all 0.2s ease;
  outline: none;
}
.input-field:focus {
  border-color: #F5A623;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.15);
}
.input-field::placeholder { color: #C06A97; opacity: 0.6; }
select.input-field { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B3A5E' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-float { animation: float 3.5s ease-in-out infinite; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-link { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-section { padding-top: 90px; padding-bottom: 40px; }
  #hero h1 { font-size: 2.25rem; }
  .section { padding: 60px 0; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid #F5A623;
  outline-offset: 2px;
  border-radius: 4px;
}
