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

body { font-family: 'Be Vietnam Pro', Georgia, sans-serif; color: #3d2b1f; background: #fff9f5; }

/* TOP BAR */
#topbar {
  background: #2d1f1a;
  color: #ccc;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
#topbar a { color: #e8a0b4; text-decoration: none; }
#topbar a:hover { color: #fff; }

/* HEADER */
#header {
  background: #fff;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#logo { font-size: 1.4rem; font-weight: bold; color: #d4748c; }
#logo span { font-weight: normal; color: #7a6a5a; }
nav a { text-decoration: none; color: #3d2b1f; margin-left: 18px; font-size: 0.9rem; }
nav a:hover { color: #d4748c; }

/* HERO */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, rgba(212,116,140,0.75), rgba(60,30,30,0.65)),
              url('https://picsum.photos/seed/sky99/1600/900') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}
.hero h1 { font-size: 3rem; line-height: 1.3; margin-bottom: 15px; }
.hero h1 span { color: #f9c6d4; font-style: italic; }
.hero p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 30px; }

/* SECTIONS */
.section { padding: 68px 5%; }
.section-pink { background: #fde8ef; }
.section-title { text-align: center; font-size: 1.9rem; color: #d4748c; margin-bottom: 38px; }

/* BTN */
.btn {
  display: inline-block;
  background: #d4748c;
  color: #fff;
  padding: 11px 30px;
  border-radius: 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Be Vietnam Pro', Georgia, sans-serif;
  transition: background 0.3s;
}
.btn:hover { background: #c9a84c; }

/* CARDS */
.cards { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
}
.card .icon { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: #7a6a5a; font-size: 0.87rem; margin-bottom: 5px; }
.card .price { color: #d4748c; font-weight: bold; }

/* PRICING */
.price-big { font-size: 1.5rem; font-weight: bold; color: #d4748c; margin: 10px 0; text-transform:uppercase; color:red}
}
.card ul { list-style: none; text-align: left; margin: 12px 0 18px; }
.card ul li { padding: 5px 0; border-bottom: 1px solid #eee; font-size: 0.87rem; }
.card.featured {
  border: 2px solid #d4748c;
  background: linear-gradient(160deg, #fff5f8, #fff);
  position: relative;
}
.badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: #d4748c;
  color: #fff;
  padding: 3px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.gallery-item {
  background: #d4748c;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.note { text-align: center; color: #999; font-size: 0.82rem; margin-top: 14px; }

/* CONTACT / BOOKING */
.contact-wrap { display: flex; gap: 40px; max-width: 800px; margin: 0 auto; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 190px; }
.contact-info p { margin-bottom: 12px; font-size: 0.95rem; }
.contact-wrap form { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 10px; }
.contact-wrap input,
.contact-wrap select,
.contact-wrap textarea {
  padding: 10px 12px;
  border: 1.5px solid #edd8d0;
  border-radius: 7px;
  font-family: 'Be Vietnam Pro', Georgia, sans-serif;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
}
.contact-wrap input:focus,
.contact-wrap select:focus,
.contact-wrap textarea:focus { border-color: #d4748c; }

/* FOOTER */
#footer { background: #2d1f1a; color: #888; text-align: center; padding: 20px; font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  #topbar { flex-direction: column; gap: 4px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 500px) {
  nav a { margin-left: 8px; font-size: 0.78rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
