/* Global Styles */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: #fffafc;
}

h1, h2 {
  color: #b3005a;
}

a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f3cce3, #fffafc);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #b3005a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

.btn:hover {
  background: #800040;
}

/* About */
.about {
  padding: 60px 20px;
  text-align: center;
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pricing */
.pricing {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff0f8, #ffe6f0);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.pricing h2 {
  font-size: 2.5rem;
  color: #b3005a;
  margin-bottom: 10px;
}

.pricing p {
  color: #555;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-item {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-item h3 {
  color: #b3005a;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing-item .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-item .desc {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Card container */
.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual card */
.pricing-cards .card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 30px 20px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #b3005a;
}

.pricing-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Card content */
/* Pricing Section */
/* Pricing Section */
.pricing-section {
  max-width: 900px;
  margin: 60px auto;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
  text-align: left;
}

.pricing-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.pricing-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap; /* stack on small screens */
}

/* Price List */
/* Pricing Section */
.pricing-section {
  max-width: 900px;
  margin: 60px auto;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

.pricing-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.pricing-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap; /* stacks on mobile */
}

/* Price List */
.pricing-list {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.title {
  flex: 1;
}

.dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 8px;
}

.price {
  font-weight: bold;
  color: #c94f7c;
}

/* Special Offers - stacked vertically */
.special-offers {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.special-offer {
  background: #fff5f8;
  border: 1px solid #f8cdda;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(201, 79, 124, 0.1);
}

.special-offer h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #c94f7c;
}

.special-offer .highlight {
  font-weight: bold;
  color: #c94f7c;
  font-size: 1.1rem;
}


/* Booking */
.booking {
  padding: 80px 20px;
  text-align: center;
  background: #fffafc;
}

.booking h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #b3005a;
}

.booking p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #555;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

.booking-form .form-group {
  margin-bottom: 15px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #f3cce3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.booking-form textarea {
  height: 120px;
  resize: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #b3005a;
  outline: none;
  box-shadow: 0 0 6px rgba(179, 0, 90, 0.2);
}

.booking-form .btn {
  background: #b3005a;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form .btn:hover {
  background: #800040;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #f3cce3;
  color: #333;
  font-size: 0.9rem;
}

/* Social Media Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

.social-links a img {
  width: 28px;
  height: 28px;
  fill: #b3005a;
}

.social-links a:hover {
  transform: scale(1.2);
}

.about li::before {
  content: "";
}

.about ul {
  list-style: none;       /* remove default bullets */
  padding: 0;
  display: flex;          /* make items horizontal */
  justify-content: center; /* center the whole list */
  gap: 15px;              /* space between items */
  flex-wrap: wrap;        /* wrap to next line if needed */
}

.about li {
  background: #ffe6f0;    /* optional pink pill background */
  padding: 5px 12px;
  border-radius: 8px;
  color: #b3005a;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

.location {
  padding: 60px 20px;
  text-align: center;
  background: #fff0f7;
}

.location h2 {
  color: #b3005a;
  font-size: 2rem;
  margin-bottom: 15px;
}

.location p {
  margin: 5px 0;
  font-size: 1.1rem;
  color: #333;
}

.map-container {
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Gallery section background */
.gallery {
  background: linear-gradient(to bottom right, #fff5f8, #ffeaf2);
  padding: 50px 20px;
  border-radius: 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c94f7c;
}

/* Image styling */
/* Control the slide/card size */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 250px;   /* adjust width */
  height: 300px;  /* fixed height */
  object-fit: cover; /* crop nicely instead of stretching */
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Navigation arrows */
.swiper-button-next, .swiper-button-prev {
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 18px;
  color: #c94f7c;
  font-weight: bold;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #c94f7c;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #c94f7c;
  opacity: 1;
}


.promotions {
  padding: 80px 20px;
  background: #ffe6f0;
  text-align: center;
}

.promotions h2 {
  color: #b3005a;
  font-size: 2rem;
  margin-bottom: 40px;
}

.promotions-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.promo-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.promo-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b3005a;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
  margin-left: 5px;
}

.contact-section {
  display: flex;
  flex-wrap: wrap; /* stack on small screens */
  gap: 40px;
  padding: 60px 20px;
  justify-content: center;
}

.contact-section .location,
.contact-section .booking {
  flex: 1 1 400px; /* grow and shrink, min width 400px */
  max-width: 500px;
}

.contact-section .map-container iframe {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    gap: 30px;
  }
}
h2 {
  text-align: center;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.pricing-list {
  width: 300px; /* adjust as needed */
  margin: 0 auto;
  font-family: sans-serif;
}

.item {
  display: flex;
  justify-content: flex-start; /* prices left, titles right */
  gap: 20px; /* space between price and title */
  padding: 8px 0;
  border-bottom: 1px dotted #ccc; /* optional dotted line */
}

.price {
  font-weight: bold;
  width: 60px; /* keeps prices aligned */
}
