h1 {
background-color: antiquewhite; text-align:center; font-family:fantasy; color: darkslategrey;
}
p {
    text-align: center;
}
div {
    text-align: center;
}
a {
  text-decoration: none;
  color:darkolivegreen;
}
.gallery {
  display: flex;
  justify-content: center; /* centers images as a row */
  flex-wrap: wrap;         /* makes them wrap to next line if screen is small */
  gap: 20px;               /* spacing between images */
}

.gallery img {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
form {
  max-width: 500px;
  margin: 0 auto;          /* center the form */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

label {
font-family:cursive;
font-weight:lighter;
display: block;          /* puts each label on its own line */
margin-top: 10px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  font-weight: 100;
  padding: 20px;
  background-color: #f7dbdb;
  color: #333;
}
input, select, button {
  width: 95%;             /* makes them all stretch nicely */
  padding: 10px 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

/* === Button Styling === */
.booking-button {
  background-color: #8b5e3c;   /* henna brown shade */
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 15px;
}
.booking-button:hover {
  background-color: #6b4224;   /* darker on hover */
}

.main-btn {
  text-decoration: none;
  background-color: #d98c59;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: block;           /* block for margin auto to work */
  width: 200px;             /* set desired width */
  margin: 15px auto;        /* center horizontally */
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
}
.main-btn:hover {
  background-color: #74ad74; /* darker coral on hover */
}
.hidden {
  display: none;
}
.highlight-date {
  background: #ffedcc !important;  /* soft orange highlight */
  border-radius: 50%;
  color: black !important;
  font-weight: bold;
}