body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #1e1e2f;
  color: #fff;
}


header {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 275px;
  display: block;
  margin: 0 auto 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.features, .gallery, .booking-form {
  padding: 30px;
  text-align: center;
}

.features-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  min-height: 260px;
}

.features-flex ul {
  list-style-type: none;
  padding: 0 20px;
  margin: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.features-flex li {
  padding: 14px 0;
  font-size: 1.2em;
  text-align: center;
}

.features ul {
  list-style-type: none;
  padding: 0;
}

.features li {
  padding: 10px 0;
  font-size: 1.2em;
}

.features-side-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: none;
  background: #222;
}

.features-side-img.vr-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

/* Constrain features content without shrinking section */
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}


.gallery-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-images img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ff00cc;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  background: #ff00cc;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

footer {
  background-color: #333;
  color: #aaa;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

.calendly-wrapper {
  background-color: #222;
  padding: 20px;
  border-radius: 12px;
  display: block;       /* full block */
  margin: 0 auto;       /* centers horizontally */
  max-width: 1200px;     /* optional: limits width */
}



/* ---------------------------
   Mobile fixes (desktop unchanged)
   Add this at the bottom of style.css
---------------------------- */

@media (max-width: 768px) {
  header {
    padding: 16px;
  }

  .logo {
    max-width: 210px;
    margin-bottom: 12px;
  }

  /* Make nav wrap cleanly and be tappable */
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    margin: 0;                 /* overrides margin: 0 15px; */
    padding: 10px 12px;        /* adds tap space */
    border-radius: 10px;
    display: inline-block;
  }

  /* Reduce section padding on mobile */
  .features, .gallery, .booking-form {
    padding: 18px;
  }

  /* Stack the features section nicely on mobile */
  .features-flex {
    flex-direction: column;
    gap: 18px;                 /* overrides 60px gap */
    min-height: auto;
  }

  .features-flex li {
    font-size: 1.05em;
    padding: 10px 0;
  }

  /* Prevent images from feeling huge on phones */
  .features-side-img {
    width: 160px;
    height: 160px;
  }

  .features-side-img.vr-img {
    width: 180px;
    height: 180px;
  }

  /* Gallery: responsive sizing */
  .gallery-images img {
    width: min(92vw, 340px);
  }

  /* Forms: make sure inputs fit nicely */
  form {
    max-width: 100%;
  }

  input, textarea, button {
    font-size: 1rem;
  }

  /* Calendly wrapper: reduce padding for small screens */
  .calendly-wrapper {
    padding: 14px;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  /* Extra-small phones: tighten nav further */
  nav a {
    width: min(92vw, 320px);
    text-align: center;
  }
}

/* Mobile-only: put all 4 logos in a 2x2 grid under the text */
@media (max-width: 768px) {

  /* Make the offer list appear first and stay readable */
  .features-flex {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .features-flex .offer-list {
    width: 100%;
    max-width: 520px;
    padding: 0 10px;
    margin: 0;
  }

  /* 2x2 logo grid under the text */
  .features-flex .logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin-top: 8px;
    align-items: center;
    justify-items: center;
  }

    /* Mobile-only: list first, then 2x2 logo grid */
  .features-flex .offer-list {
    order: 1;
    width: 100%;
    max-width: 520px;
    margin: 0;
  }

  .features-flex .logo-grid {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 12px auto 0;
    justify-items: center;
    align-items: center;
  }

  .features-flex .logo-grid .features-side-img,
  .features-flex .logo-grid .features-side-img.vr-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
  }

  .features-flex .logo-grid img {
    width: 140px;
    height: 140px;
    object-fit: contain;
  }

  /* VR logo was bigger on desktop; normalize it for the grid on mobile */
  .features-flex .logo-grid img.vr-img {
    width: 140px;
    height: 140px;
  }
}
