/* Soft background for home hero */
.soft-bg {
  background: #fff;
  background-image: url('soft-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366;
  color: #fff;
  margin-top: 1.5rem;
}
.whatsapp-btn:hover {
  background: #1da851;
}

/* Mission intro section */
.mission-intro {
  background: #fff8ed;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
}
.mission-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.mission-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.mission-content ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}
.mission-content li {
  color: #b76e79;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Services grid */
.services-overview {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card h3 {
  color: #b76e79;
  margin-bottom: 0.5rem;
}
.service-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #b76e79;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.service-btn:hover {
  background-color: #8a4d58;
}

/* Trust section */
.trust-section {
  max-width: 1100px;
  margin: 2rem auto 3rem auto;
  padding: 2rem 0;
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.trust-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-section .whatsapp-message {
  text-align: center;
  margin: 2rem 0;
}
.contact-section .whatsapp-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.contact-section .whatsapp-btn .icon {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffaf8;
  color: #333;
  line-height: 1.6;
}

/* Navigation Bar */
nav {
  background-color: #f7d1cd; /* Nude Pink */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: #000;
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #b76e79; /* Darker nude */
}

/* Hero Section */
/* Modern Home Hero */
.home-hero {
  background: linear-gradient(120deg, #f7d1cd 60%, #f9ede8 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 2rem 2rem;
}
.home-hero-content {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
.home-logo {
  max-width: 180px;
  display: block;
  margin: 0 auto 1rem auto;
}
.home-title {
  font-size: 2.8rem;
  color: #b76e79;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.home-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
}
.home-hero-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  max-width: 320px;
  flex: 1 1 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.hero-btn {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #b76e79;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.hero-btn:hover {
  background-color: #8a4d58;
}

/* Home Info Cards */
.home-info-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem auto 2rem auto;
  max-width: 900px;
  flex-wrap: wrap;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem 1rem;
  max-width: 260px;
  flex: 1 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-card h4 {
  color: #b76e79;
  margin-bottom: 0.5rem;
}
.info-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #b76e79;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.info-btn:hover {
  background-color: #8a4d58;
}

/* Section Styling */
section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #000;
}

p {
  margin-bottom: 1rem;
  color: #444;
}

/* Booking Form */
form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
}

form input, form textarea, form select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #b76e79;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #8a4d58;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.readmore-links {
  text-align: center;
  margin: 2rem 0;
}
.readmore-links .cta {
  margin: 0 1rem;
}

/* Contact Page Custom Styles */
.contact-section {
  background: #fdf6e3;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  max-width: 900px;
  margin: auto;
}
.contact-section h2,
.contact-section h3 {
  text-align: center;
}
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
  max-width: 320px;
  flex: 1 1 280px;
  text-align: center;
}
.contact-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: #b76e79;
  text-decoration: none;
  font-weight: bold;
}
.contact-map {
  margin: 2rem 0;
}
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.contact-section form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: auto;
}
.contact-section form button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #b76e79;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Hours Page Custom Styles */
.hours-section {
  background: #fdf6e3;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  max-width: 900px;
  margin: auto;
}
.hours-table {
  width: 100%;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.hours-table th {
  background: #f7d1cd;
  color: #000;
}
.hours-map {
  margin: 2rem 0;
}
.hours-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
/* Responsive Design */
@media (max-width: 1024px) {
  /* Adjust navigation for tablets */
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .home-hero {
    padding: 2rem 1rem;
  }

  .services-grid, .trust-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Adjust layout for mobile devices */
  .mission-content {
    flex-direction: column;
    align-items: center;
  }

  .services-grid, .trust-cards {
    grid-template-columns: 1fr;
  }

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

  .home-info-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Further adjustments for small screens */
  .hero-card, .info-card, .service-card, .trust-card {
    padding: 1rem;
  }

  .home-title {
    font-size: 2rem;
  }

  .home-subtitle {
    font-size: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}
