:root {
  --bg: #f7f6fb;
  --card: #ffffff;
  --accent: #d63384;
  --muted: #6b6b7a;
  --radius: 14px;
  --maxw: 1100px;
  --transition: 300ms cubic-bezier(.2,.9,.3,1);
  font-family: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: linear-gradient(180deg, var(--bg), #ffffff);
  color: #222;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 24px; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ff8fc1);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: var(--transition);
}
nav a:hover {
  background: rgba(255,255,255,0.6);
  color: #111;
}
.cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
}
.btn-outline {
  background: #fff;
  border: 1px solid #eee;
  color: #333;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
}
.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(20,20,50,0.06);
}
.lead { color: var(--muted); margin-bottom: 12px; }
.features { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: #fff;
  border: 1px solid #f1eff6;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 20px; }
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(30,30,60,0.04);
}
.price { color: var(--accent); font-weight: 700; }
.buttons { display: flex; gap: 12px; margin-top: 18px; }

.booking { background: #fff; border-radius: 12px; padding: 20px; }
.input, select {
  width: 100%; padding: 10px; border-radius: 10px; border: 1px solid #eee;
  margin-bottom: 10px;
}
.btn-primary {
  width: 100%; padding: 12px; border-radius: 10px;
  background: var(--accent); color: #fff; border: none; font-weight: 600;
}

/* Gallery */
.carousel { position: relative; overflow: hidden; border-radius: 14px; }
.slides { display: flex; transition: transform 0.5s ease; }
.slide img { width: 100%; height: 320px; object-fit: cover; }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; }
.dot.active { background: var(--accent); }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.review { background: #fff; padding: 18px; border-radius: 12px; border: 1px solid #f4f4f8; }

footer { margin-top: 30px; padding: 20px 0; color: var(--muted); text-align: center; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
}

