* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base (no full-page background anymore) */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: white; /* fallback page bg */
}

/* Hero section with background image + overlay */
.hero {
  position: relative;
  height: 450px;
  background: center / cover no-repeat;
  isolation: isolate;
  display: flex;   
   align-items: center;
    justify-content: space-around;
}

/* Use inline style or CSS variable to provide image; this supports both */
.hero[data-bg] {
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 46%; /* 70% down the image, lowers the image visually */
}

.services_offered{
  color:black;
  width:100% !important;
  padding:20px;
}

.phone_button{
      background-color: lightgreen;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}
.phone_button a{
  text-decoration: none;
  color:black;
  font-size:18px;
  font-weight:Bold;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* overlay strength */
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.hero__title {
  font-size: clamp(28px, 5vw, 80px);
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.1;
}

.hero__tagline {
  font-size: clamp(14px, 2.5vw, 40px);
  opacity: 0.95;
  margin: 0;
}














header {
  padding: 2rem;
  background: white;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header .additionalMenu{
  display:flex;
  flex-direction: row;
}
header .additionalMenu .menuItem{
  margin-right:15px;
}






















.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}



.header-container h1 {
  font-size: 2rem;
  font-weight: bold;
}

.phone-number {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #ffd700;
}

.notice-box {
  position: relative;
  z-index: 1;
  margin: 2rem auto;
  max-width: 700px;
  padding: 1rem 2rem;
  background: rgba(220, 53, 69, 0.95);
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

main {
     display: flex;
    flex-direction: row;
    align-items: baseline;
    padding: 2rem;
    position: relative;
    z-index: 1;
    justify-content: space-around;
    width:70%;
    margin:auto;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem; /* tighter spacing */
  max-width: 700px;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}






.contact-form button:hover {
  background-color: #e0a800;
}
.call-button {
  margin-top: 2rem;
  background: #28a745;
  color: white;
  padding: 1rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.call-button:hover {
  background: #218838;
}

.status-message {
  background: rgba(40, 167, 69, 0.9); /* green success */
  color: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}
.status-message:has-text('❌') {
  background: rgba(220, 53, 69, 0.9); /* red error */
}




/* =========================
   Modern Reservation Form
========================= */
.reservation-form {
  width: 100%;
}

.form-card {
  max-width: 860px;
  margin: 28px auto;
  padding: 26px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.92);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.form-card__header {
  margin-bottom: 18px;
}

.form-card__title {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
}

.form-card__subtitle {
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 16px;
}

@media (min-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .field--full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  color: #fff;
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input::placeholder {
  color: rgba(255,255,255,0.55);
}

.input:focus {
  border-color: rgba(255, 193, 7, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

.textarea {
  resize: vertical;
  min-height: 110px;
}

.hint {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.75;
  color: rgba(255,255,255,0.8);
}

.error {
  margin-top: 6px;
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
}

.input.is-invalid {
  border-color: rgba(255, 107, 107, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.btn--primary {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  background-color: #ffc107;
  color: #000;
  border: none;
  cursor: pointer;
  transition: transform 0.06s ease, filter 0.15s ease;
}

.btn--primary:hover {
  filter: brightness(0.95);
}

.btn--primary:active {
  transform: translateY(1px);
}

.form-status {
  font-size: 13px;
  opacity: 0.85;
  color: rgba(255,255,255,0.9);
}

/* Make Google Places dropdown match dark UI */
.pac-container {
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
.pac-item {
  padding: 10px 12px !important;
}
.pac-item:hover {
  background: rgba(255, 193, 7, 0.12) !important;
}

/* Layout fix: your <main> is currently forcing weird spacing */
main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: block; /* stop flex fighting the form */
}




/* Mobile responsiveness */
@media (max-width: 768px) {
  
}