//* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffafc;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: #d63384;
  transition: 0.3s;
}

a:hover {
  color: #b02a6d;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  border-bottom: 2px solid #f8c6d0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a.active {
  font-weight: bold;
  color: #b02a6d;
}

/* Hero */
.hero {
  background: url('https://images.unsplash.com/photo-1524492449090-1a065f3a0b8d') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-text {
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
}

/* About */
.about {
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 20px;
}

.about img {
  width: 50%;
  border-radius: 10px;
}

/* Services */
.services {
  padding: 40px 20px;
  text-align: center;
}

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

.service-card {
  background: #ffe6f0;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
}

.service-card:hover {
  transform: scale(1.05);
  background: #ffd6e9;
}

/* Booking */
.booking {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, select, button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  background: #d63384;
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  background: #b02a6d;
}

/* Calendar */
.calendar {
  margin-top: 30px;
  padding: 20px;
  background: #fff0f6;
  border-radius: 10px;
}

.calendar ul {
  list-style: none;
  padding: 0;
}

.calendar li {
  padding: 5px;
  color: green;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: #fff0f6;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }
  .about img {
    width: 100%;
  }
}
/* Calendar */
.calendar {
  margin-top: 30px;
  padding: 20px;
  background: #fff0f6;
  border-radius: 10px;
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: bold;
  margin-bottom: 10px;
}

#calendarGrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.date-cell {
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  background: #f2f2f2;
  transition: 0.3s;
}

.date-cell.available {
  background: #d4edda;
  color: green;
  font-weight: bold;
}

.date-cell.unavailable {
  background: #f8d7da;
  color: #721c24;
  cursor: not-allowed;
  opacity: 0.6;
}

.date-cell.selected {
  background: #d63384;
  color: white;
}
/* Parallax sections */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero {
  background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-text {
  background: rgba(0,0,0,0.5);
  padding: 30px;
  border-radius: 10px;
  animation: fadeIn 2s ease-in;
}

/* Highlights */
.highlights {
  padding: 60px 20px;
  text-align: center;
  background: #fffafc;
}

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

.highlight-card {
  background: #ffe6f0;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.highlight-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.highlight-card:hover {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: url("https://images.unsplash.com/photo-1505860125062-3ce932953cf6") no-repeat center center/cover;
  color: #fff;
  text-align: center;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.testimonial {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
}

/* Call to Action */
.cta {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffe6f0, #fff0f6);
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.5s ease forwards;
}
