body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff0f5;
  color: #333;
}

header {
  background-color: #925f8a;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 32px;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  text-decoration: underline;
}

h2.center {
  text-align: center;
  margin-top: 30px;
  font-size: 28px;
  color: #c2185b;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffe4ec;
  padding: 15px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card h3 {
  margin-top: 12px;
  font-size: 20px;
  color: #333;
}

.service-card p {
  font-size: 18px;
  color: #e91e63;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #ffe4e1;
  margin-top: 50px;
  font-size: 14px;
  color: #555;
}


.hero img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



.hero {
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  background-color: #fff0f5;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
  font-size: 18px;
  line-height: 1.8;
}

.map iframe {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.about-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.about strong {
  color: #d81b60;
}

.booking-cta {
  margin-top: 20px;
  text-align: center;
}

.book-now-btn {
  background-color: #c2185b;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background-color: #a0134a;
}

.booking-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #ffe4ec;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #c2185b;
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.booking-form input,
.booking-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.book-btn {
  background: #c2185b;
  color: white;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.book-btn:hover {
  background: #a0134a;
}

.booking-section {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.booking-section h2 {
  color: #c2185b;
  margin-bottom: 10px;
}

.booking-section p {
  color: #555;
  margin-bottom: 30px;
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.booking-form button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.booking-form button:hover {
  background-color: #e91e63;
}

.reviews-section {
  padding: 40px 20px;
  background: #f8f9fa;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.review-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-form input,
.review-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.review-form textarea {
  height: 120px;
}

.review-form button {
  background: #ff7e5f;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.review-form button:hover {
  background: #e86c4e;
}
