body {
  font-family: 'Poppins', sans-serif;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.logo {
  font-family: 'Great Vibes', cursive;
}

:root {
  --pink: #f7c6d9;
  --deep-pink: #d96c95;
  --light-pink: #fff1f6;
  --white: #ffffff;
  --text: #333333;
  --soft-gray: #777777;
  --border: #f1d9e2;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.center-text {
  text-align: center;
}

.narrow-text {
  max-width: 760px;
  margin: 0 auto;
}

.alt-section {
  background: #fff9fb;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  text-decoration: none;
  color: var(--deep-pink);
  font-size: 1.5rem;
  font-weight: 700;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-pink);
}

.hero {
  background: linear-gradient(135deg, var(--light-pink), var(--white));
  padding: 6rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tagline {
  color: var(--deep-pink);
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #222;
}

.hero p {
  margin-bottom: 1.5rem;
  color: var(--soft-gray);
  font-size: 1.05rem;
}

.hero-image img {
  box-shadow: var(--shadow);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--deep-pink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(217, 108, 149, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--deep-pink);
  color: var(--deep-pink);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--deep-pink);
  color: var(--white);
}

h1,
h2,
h3 {
  color: #222;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--soft-gray);
}

.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.card,
.review-card,
.feature-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card,
.feature-card,
.review-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.feature-card:hover,
.review-card:hover {
  transform: translateY(-6px);
}

.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.review-card h4 {
  color: var(--deep-pink);
}

.price-list {
  margin-top: 2rem;
  background: var(--light-pink);
  padding: 2rem;
  border-radius: var(--radius);
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e8cfd8;
}

.price-item:last-child {
  border-bottom: none;
}

.booking-container {
  max-width: 700px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.95rem 1rem;
  border: 1px solid #e4c8d3;
  border-radius: 12px;
  font-size: 1rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid #f3bdd0;
  border-color: var(--deep-pink);
}

.form-message {
  margin-top: 1rem;
  color: var(--deep-pink);
  font-weight: 600;
}

.cta-box {
  background: linear-gradient(135deg, #ffe7f0, #fff8fb);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.site-footer {
  background: #fff6f9;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero-content,
  .card-grid,
  .feature-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .booking-layout,
  .form-row {
    grid-template-columns: 1fr;
  }
  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-box {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
.contact-info p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.contact-info a {
  color: var(--deep-pink);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}
.social-link:hover i {
  transform: scale(1.2);
  transition: 0.2s ease;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: min(900px, 95vw);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 0.8;
}
.booking-page {
  max-width: 1100px;
}

.booking-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.booking-info,
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-info h2 {
  margin-bottom: 1rem;
}

.booking-tips {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--soft-gray);
}

.booking-tips li {
  margin-bottom: 0.8rem;
}

.booking-contact-box {
  background: var(--light-pink);
  padding: 1rem;
  border-radius: 14px;
}

.booking-contact-box p {
  margin-bottom: 0.8rem;
}

.booking-contact-box p:last-child {
  margin-bottom: 0;
}

.booking-contact-box a {
  color: var(--deep-pink);
  text-decoration: none;
  font-weight: 600;
}

.booking-contact-box a:hover {
  text-decoration: underline;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.95rem 1rem;
  border: 1px solid #e4c8d3;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid #f3bdd0;
  border-color: var(--deep-pink);
}

.booking-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #fff3f8;
  color: var(--deep-pink);
  font-weight: 600;
  display: none;
}
/* hero */
.hero {
  background: url('images/pic2.jpg') center/cover no-repeat;
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(255, 240, 246, 0.85);
  width: 100%;
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-subtext {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--soft-gray);
}

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

.btn-secondary {
  background: transparent;
  border: 2px solid var(--deep-pink);
  color: var(--deep-pink);
}
