/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0b0b;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 14px 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* =========================
   HERO SECTION (HOME)
========================= */
.hero {
  height: 100vh;
  background: url('../assets/images/houston-bg.jpg') center / cover no-repeat;
  background-attachment: fixed; /* 🔥 THIS IS THE KEY LINE */
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  letter-spacing: 4px;
}

.hero p {
  margin: 15px 0 30px;
  font-size: 1.2rem;
  color: #cccccc;
}

/* =========================
   GENERAL SECTIONS
========================= */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* =========================
   ABOUT SECTION
========================= */
.about p {
  max-width: 700px;
  margin: auto;
  color: #bbbbbb;
  font-size: 1.05rem;
}

/* =========================
   SERVICES
========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-color: #111111;
  border: 1px solid #222222;
  padding: 30px;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card span {
  color: #aaaaaa;
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: auto;           /* shows full image (no crop) */
  object-fit: contain;    /* ensures nothing gets cut off */
  border-radius: 10px;
  display: block;
}

/* Optional: keep hover but without “zoom-crop” vibes */
.gallery-grid img:hover {
  transform: none;
}

/* =========================
   CALL TO ACTION
========================= */
.cta {
  background-color: #111111;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #777777;
}

/* =========================
   BOOKING PAGE HERO
========================= */
.booking-hero {
  height: 50vh;
  background: linear-gradient(to bottom, #000000, #111111);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.booking-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 3px;
}

.booking-hero p {
  color: #bbbbbb;
  margin-top: 10px;
}

/* =========================
   BOOKING FORM
========================= */
.booking-form-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.booking-form {
  width: 100%;
  max-width: 500px;
  background-color: #111111;
  padding: 40px;
  border: 1px solid #222222;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #cccccc;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  background-color: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffffff;
}

/* =========================
   STATUS MESSAGE
========================= */
#statusMessage {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #7CFC00;
  text-align: center;
}

/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .booking-hero h1 {
    font-size: 3rem;
  }
}
/* =========================
   MOBILE-FIRST IMPROVEMENTS
========================= */

/* Stop iOS/Safari weirdness with fixed backgrounds */
@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
  }
}

/* General mobile layout polish */
@media (max-width: 600px) {

  /* Better overall spacing */
  section {
    padding: 55px 16px;
    text-align: center;
  }

  /* Hero: avoid 100vh bugs on mobile browsers */
  .hero {
    height: auto;
    min-height: 100svh; /* modern mobile safe viewport */
  }

  .hero-content {
    padding: 28px 16px;
  }

  .hero h1 {
    font-size: 3.1rem;
    letter-spacing: 2px;
    line-height: 1.0;
  }

  .hero p {
    font-size: 1.05rem;
    margin: 12px 0 22px;
  }

  /* Buttons should feel tappable */
  .btn {
    width: 100%;
    max-width: 420px;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  /* Headings scale nicer */
  h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  /* Service cards: stack name + price */
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px;
    font-size: 1rem;
  }

  .service-card span {
    font-size: 0.95rem;
  }

  /* Gallery: 1 column on mobile (NO image height limits) */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  /* Booking page form spacing */
  .booking-form-section {
    padding: 40px 16px;
  }

  .booking-form {
    padding: 22px;
  }

  .booking-hero {
    height: auto;
    padding: 50px 16px;
  }

  .booking-hero h1 {
    font-size: 2.6rem;
  }

  /* Make inputs easier to tap */
  .form-group input,
  .form-group select {
    padding: 14px;
    font-size: 1rem;
  }
}

/* Optional: style the booking note text if you want it to stand out */
.booking-note {
  margin-top: 14px;
  color: #bbbbbb;
  font-size: 0.95rem;
  text-align: center;
}

/* Send Request button – premium dark style */
.booking-form .btn.full {
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.6),
    inset 0 0 0 rgba(255, 255, 255, 0);

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease,
    border-color 0.25s ease;
}

.booking-form .btn.full:hover {
  background: linear-gradient(180deg, #222222, #151515);
  border-color: rgba(255, 255, 255, 0.25);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08);

  transform: translateY(-2px);
}

.booking-form .btn.full:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.7);
}
