.topbar-business-hours {
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ---------------------------
   Hero (Reservation Page)
---------------------------- */
.hero {
  background: url("assets/images/banner2.jpg") center/cover no-repeat;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75); /* dark overlay */
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
}

.hero p {
  color: #f1f5f9;
}

/* ---------------------------
   Reservation Form Wrapper
---------------------------- */
.google-form-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 130%; /* Adjust to match form height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  border-radius: 12px;
}
/* Reservation form wrapper */
#ff-compose {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: auto;
}

/* Labels */
#ff-compose label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Inputs, Selects, Textareas */
#ff-compose input,
#ff-compose select,
#ff-compose textarea {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}

/* Submit Button */
#ff-compose button[type="submit"] {
  background-color: #16a34a;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s ease;
}

#ff-compose button[type="submit"]:hover {
  background-color: #15803d;
}
