html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fffafc;
  color: #333;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d48ba3;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #d48ba3;
}

.dropdown > a {
  cursor: pointer;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
              url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background-color: rgba(255,255,255,0.75);
  padding: 40px;
  border-radius: 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #b76e79;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 35px;
  border: none;
  background-color: #d48ba3;
  color: white;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #b76e79;
}

.about {
  padding: 80px 10%;
  text-align: center;
  background-color: white;
}

.about h2 {
  font-size: 2.5rem;
  color: #b76e79;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.services {
  padding: 80px 10%;
  background-color: #fffafc;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #b76e79;
  margin-bottom: 50px;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background-color: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  color: #d48ba3;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  line-height: 1.6;
}

.gallery {
  padding: 80px 10%;
  background-color: white;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  color: #b76e79;
  margin-bottom: 50px;
}

.gallery h4 {
  color: #d48ba3;
  margin-bottom: 30px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-container img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.03);
}

.testimonials {
  padding: 80px 10%;
  background-color: #fffafc;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #b76e79;
  margin-bottom: 50px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background-color: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: #d48ba3;
}

.pricing {
  padding: 80px 10%;
  background-color: white;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  color: #b76e79;
  margin-bottom: 15px;
}

.pricing-intro {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.pricing-category {
  background-color: #fffafc;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  text-align: left;
}

.pricing-category h3 {
  text-align: center;
  color: #d48ba3;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1d8df;
}

.price-row span {
  color: #555;
}

.price-row strong {
  color: #b76e79;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  min-width: 180px;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: none;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-menu li:hover {
  background-color: #fff3f7;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.booking-calendar {
  padding: 80px 10%;
  background-color: #fffafc;
  text-align: center;
}

.booking-calendar h2 {
  font-size: 2.5rem;
  color: #b76e79;
  margin-bottom: 15px;
}

.booking-intro {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.category-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background-color: white;
  color: #b76e79;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.category-btn:hover,
.category-btn.active {
  background-color: #d48ba3;
  color: white;
}

.calendar-card {
  width: 100%;
  overflow: hidden;
  max-width: 950px;
  margin: auto;
  background-color: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);

}

.calendar-header h3 {
  color: #b76e79;
  margin-bottom: 25px;
  font-size: 2rem;
}

.calendar-weekdays,
.calendar-days {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays span {
  font-weight: bold;
  color: #777;
  padding-bottom: 10px;
}

.calendar-day {
  width: 100%;
  min-width: 0;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background-color: #fff3f7;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.calendar-day:hover {
  background-color: #d48ba3;
  color: white;
}

.calendar-day.closed {
  background-color: #f3f3f3;
  color: #aaa;
}

.time-slots {
  margin-top: 40px;
}

.time-slots h3 {
  color: #b76e79;
  margin-bottom: 20px;
}

.available-times {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.time-slot {
  padding: 12px 20px;
  background-color: #fff3f7;
  border-radius: 20px;
  color: #b76e79;
  font-weight: 600;
}
.calendar-day.selected {
  background-color: #b76e79;
  color: white;
}

.time-slot {
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.time-slot:hover {
  background-color: #d48ba3;
  color: white;
}

.category-btn.active {
  background-color: #d48ba3;
  color: white;
}

.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 25px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.modal-content h2 {
  color: #b76e79;
  margin-bottom: 15px;
}

.modal-content p {
  color: #555;
  margin-bottom: 20px;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content input {
  padding: 14px;
  border: 1px solid #f1d8df;
  border-radius: 12px;
  font-size: 1rem;
}

.modal-content button {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background-color: #d48ba3;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content button:hover {
  background-color: #b76e79;
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
}

.close-modal:hover {
  color: #b76e79;
}

.success-message {
  color: #b76e79;
  font-weight: bold;
  margin-top: 20px;
}

.calendar-day.past {
  background-color: #f3f3f3;
  color: #bbb;
  cursor: not-allowed;
  opacity: 0.7;
}

.calendar-day.past:hover {
  background-color: #f3f3f3;
  color: #bbb;
}

.empty-day {
  visibility: hidden;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.footer {
  background-color: #2b2226;
  color: white;
  padding: 60px 10% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-box h3,
.footer-box h4 {
  color: #f4b6c8;
  margin-bottom: 18px;
}

.footer-box p {
  color: #f7e8ee;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
  color: #e8cbd4;
}

.mobile-only {
  display: none;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.image-modal img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 25px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.close-image-modal {
  position: absolute;
  top: 25px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-container {
  grid-template-columns: 1fr;
  }

  .pricing-container {
  grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
  grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .service-container {
    grid-template-columns: 1fr;
  }

  .gallery {
  padding: 60px 5%;
}
  .gallery-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 10px;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-container img {
  min-width: 85%;
  height: 320px;
  flex-shrink: 0;
  scroll-snap-align: center;
}
  .pricing-container {
  grid-template-columns: 1fr;
  }
    .calendar-card {
  padding: 18px 10px;
}

.calendar-weekdays,
.calendar-days {
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  padding: 8px 0;
  font-size: 0.75rem;
  border-radius: 6px;
}

.calendar-header h3 {
  font-size: 1.4rem;
}

.category-btn {
  padding: 10px 14px;
  font-size: 0.8rem;
}

.time-slot {
  padding: 10px 14px;
  font-size: 0.8rem;
}
  .footer-container {
  grid-template-columns: 1fr;
  text-align: center;
  }

  .mobile-only {
    display: block;
    color: #b76e79;
    margin-bottom: 20px;
    font-size: 1rem;
  }
}


