/* Booking Page Styles */
.booking-hero {
  background: url('images/Booking Page/IMG_1605.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0 2rem 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.booking-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(143, 139, 139, 0.8);
  z-index: 1;
}

.booking-hero > * {
  position: relative;
  z-index: 2;
}

.booking-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  color: #000000;
  margin-bottom: 1rem;
}

.booking-hero p.subheading {
  font-size: 1.25rem;
  color: #232136;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}

.booking-text {
  font-size: 1.1rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

.booking-note {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.8rem;
  padding: 1rem 2.5rem;
  cursor: pointer;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.booking-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: #000000;
}

.calendar-embed {
  max-width: 700px;
  margin: 2rem auto 0 auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(140,197,252,0.08);
  padding: 1.5rem;
}

/* Calendar Modal Styles */
.calendar-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 32px;
  border-bottom: 1px solid #e5e7eb;
}

.header-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.header-icon {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.header-content h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.header-content p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.more-info {
  color: #3b82f6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.close-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  transition: background-color 0.2s;
}

.close-btn:hover {
  background: #f3f4f6;
}

.calendar-section {
  padding: 24px 32px;
}

.calendar-container {
  display: flex;
  justify-content: center;
}

.month-calendar {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 350px;
}

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

.month-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.month-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  font-size: 12px;
}

.nav-btn:hover {
  background: #f3f4f6;
}

.calendar-grid {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.weekdays span {
  padding: 8px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.days span {
  padding: 8px 4px;
  text-align: center;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  border-radius: 4px;
  margin: 2px;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s;
}

.days span:hover {
  background: #f3f4f6;
}

.days span.other-month {
  color: #d1d5db;
}

.days span.selected {
  background: #111827;
  color: #fff;
}

.days span.hoverable:hover {
  background: #e5e7eb;
}

.time-customization {
  padding: 24px 32px;
  border-top: 1px solid #e5e7eb;
}

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

.time-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-label {
  font-size: 14px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #3b82f6;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.time-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
}

.remove-slot {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.time-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.time-inputs span {
  font-size: 14px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
}

.time-input {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #fff;
}

.arrow {
  color: #6b7280;
  font-weight: 500;
}

.add-slot {
  width: 24px;
  height: 24px;
  border: none;
  background: #3b82f6;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.calendar-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px 32px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.btn-cancel {
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s;
}

.btn-cancel:hover {
  background: #f3f4f6;
}

.btn-create {
  padding: 10px 20px;
  border: none;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s;
}

.btn-create:hover {
  background: #374151;
}

/* Responsive Design */
@media (max-width: 700px) {
  .calendar-embed { 
    padding: 0.5rem; 
  }
  
  .booking-hero h1 { 
    font-size: 2rem; 
  }
  
  .booking-hero p.subheading { 
    font-size: 1.05rem; 
  }
  
  .calendar-container {
    justify-content: center;
  }
  
  .calendar-header,
  .calendar-section,
  .time-customization,
  .calendar-footer {
    padding: 16px;
  }
  
  .header-left {
    flex-direction: column;
    gap: 12px;
  }
  
  .time-inputs {
    flex-wrap: wrap;
  }
  
  .month-calendar {
    max-width: 100%;
  }
}
