/* ================================
   CONTACT PAGE WRAPPER
================================ */
.contact-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

/* ================================
   CONTACT FORM
================================ */
.contact-form {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h1 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select {
  margin-top: 5px;
  padding: 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
}

.contact-form input[readonly] {
  background: #222;
  color: #ccc;
  cursor: not-allowed;
}

.contact-form button {
  margin-top: 10px;
  padding: 10px;
  background: #c00;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}

.contact-form button:hover {
  background: #f00;
}

.form-status {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ================================
   MONTH CALENDAR (BOOKING)
================================ */
.calendar {
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
}

/* Header (month navigation) */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-header button {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 5px;
}

.calendar-header button:hover {
  color: #f00;
}

#monthLabel {
  font-weight: bold;
  font-size: 1.1rem;
  user-select: none;
}

/* Calendar grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 15px;
}

/* Day cell */
.calendar-day {
  padding: 8px;
  text-align: center;
  border-radius: 5px;
  background: #222;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Available hover */
.calendar-day.available:hover {
  background: #444;
}

/* Booked day */
.calendar-day.booked {
  background: #a00000;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Selected day */
.calendar-day.selected {
  background: #0a7a0a;
  font-weight: bold;
}

/* Empty cells (month offset) */
.calendar-grid > div:empty {
  background: transparent;
  cursor: default;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .calendar {
    width: 100%;
    max-width: 360px;
  }
}

.contact-wrapper {
  flex-direction: row-reverse;
}