/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

/* HEADER NAVBAR */
.site-header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #d36a8a;
    font-weight: 600;
    font-size: 16px;
}

.nav-links a:hover {
    color: #b05270;
}

/* HERO TITLE */
h1 {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
    color: #d36a8a;
}

/* SECTION TITLES */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #d36a8a;
    margin: 40px 0 20px;
}

/* GALLERY */
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-grid img {
    width: 200px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
}

/* BOOKING FORM */
form {
    max-width: 500px;
    margin: 20px auto;
    text-align: left;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

button {
    background: #f28ab2;
    border: none;
    padding: 12px;
    border-radius: 25px;
    width: 100%;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background: #d8759c;
}

/* SERVICES & PRICING BOXES */
.services-section {
    background: #ffe4ef;
    padding: 40px 20px;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-box h4 {
    color: #d36a8a;
    font-size: 18px;
    margin-bottom: 8px;
}

/* WHY CHOOSE US – 2 rows of 2 */
.why-section {
    background: #ffeef5;
    padding: 50px 20px;
}

/* WHY CHOOSE US – Normal Size */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 600px;
    margin: 20px auto;
}

.why-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.why-item img {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
}

.why-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.4;
}



/* ABOUT PAGE BANNER */
.about-banner {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd5e9, #ffe3f2);
    color: #d36a8f;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ABOUT SECTION */
.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: left;
}

.about-section h2 {
    font-size: 26px;
    color: #d36a8a;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    margin-top: 40px;
    padding: 20px;
    background: #fafafa;
    font-size: 14px;
}/* SMALL MINIMAL ICONS - OPTION B */
.why-icon-small {
    font-size: 24px;
    color: #d0729d;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
}

/* SERVICES PAGE */
.services-section {
    padding: 50px 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.service-box h3 {
    color: #d0729d;
    margin-bottom: 10px;
}

.price-range {
    display: block;
    margin: 12px 0;
    font-weight: bold;
    color: #555;
}

.service-button {
    display: inline-block;
    background: #d0729d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
}

/* BOOKING FORM */
.booking-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 900px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.booking-section h2 {
    color: #d0729d;
    margin-bottom: 10px;
}

.booking-section p {
    margin-bottom: 25px;
    color: #555;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select,
textarea {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

textarea {
    min-height: 120px;
}

.booking-btn {
    background: #d0729d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.booking-btn:hover {
    opacity: 0.9;
}
/* About Banner */
.about-banner {
    width: 100%;
    padding: 50px 20px;
    background: linear-gradient(135deg, #fdd9e8, #ffb3cc);
    text-align: center;
    color: #663344;
    margin-bottom: 40px;
}

.about-banner h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-banner p {
    font-size: 16px;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}
/* About Page - Who We Are (Smaller + Cleaner) */
.about-section {
    max-width: 850px;
    margin: 40px auto 20px;
    padding: 0 20px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #663344;
    margin-bottom: 8px;
}

.about-section p {
    font-size: 14px;
    color: #444;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto;
}
/* ===== MOBILE LAYOUT FIX ONLY ===== */
@media (max-width: 768px) {
  body {
    text-align: center;
  }

  header,
  nav,
  section {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .site-logo {
    max-width: 140px;
  }
}
/* ===== LOGO SIZE FIX ===== */
.site-logo {
  max-width: 150px;   /* desktop size */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

@media (max-width: 768px) {
  .site-logo {
    max-width: 120px; /* mobile size */
  }
}
/* ===== PAGE CENTERING FIX ===== */

/* Center main content blocks */
header,
nav,
section,
footer {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Add breathing room on small screens */
@media (max-width: 768px) {
  header,
  nav,
  section,
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* REVIEWS SECTION */
.reviews-section {
  text-align: center;
  padding: 60px 20px;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.reviews-subtext {
  color: #777;
  margin-bottom: 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.leave-review {
  text-align: center;
  padding: 50px 20px;
}

.leave-review h2 {
  color: #c9789f;
  margin-bottom: 10px;
}

.leave-review p {
  margin-bottom: 25px;
  font-size: 16px;
}

.review-button {
  display: inline-block;
  background: #c9789f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.review-button:hover {
  background: #b5678d;
}
/* ===== GALLERY SLIDESHOW IMAGE SIZE FIX ===== */

/* Container sizing */
.swiper {
  max-width: 700px;   /* controls overall slideshow width */
  margin: 30px auto;
}

/* Image sizing */
.swiper-slide img {
  width: 100%;
  height: 350px;      /* controls image height */
  object-fit: cover; /* keeps images clean & cropped */
  border-radius: 12px;
}
/* ===== GALLERY PAGE GRID ===== */

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.gallery-grid-page img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-page img {
    height: 180px;
  }
}
.gallery-grid-page {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid-page img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.gallery-grid-page {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid-page img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
