body {
  background-image: url("Images/cactusesimage1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0; 
}

.banner {
  position: sticky;
  top: 0;
  padding: 0px;
  margin: 0px;
}

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 5px;
  padding: 25px;
}

.floor{
  background-color: #1c182d;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.floor-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-links-group {
  display: flex;
  justify-content: center;
  gap: 150px;
  flex-wrap: wrap;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.contact-item h2 {
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-weight: normal;
  color: white;
}

.contact-item a {
  color: white;
  font-size: 16px;
  margin-top: 5px;
  text-decoration: none;
}

.title{
  display: flex;
  justify-content: center;
}

/* ---------------------------- */
/* 📱 Responsive Design Section */
/* ---------------------------- */
@media (max-width: 767px) {
  body {
    background-position: center; /* Shifts image toward the right */
  }

  .contact-links-group {
    flex-direction: column;
    gap: 10px; /* Reduced gap between items */
  }

  .contact-item h2 {
    font-size: 14px; /* Smaller font */
    margin-bottom: 2px;
  }

  .contact-item a {
    font-size: 13px;
  }

  .floor {
    padding: 5px 0; /* Less vertical padding */
  }

  .floor-content {
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Tablet-specific adjustments */

  .floor {
    flex-direction: column;
    padding: 10px 0;
  }

  .contact-links-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px; /* slightly tighter than desktop, looser than mobile */
  }

  .contact-item h2 {
    font-size: 16px;
  }

  .contact-item a {
    font-size: 15px;
  }

  .logo {
    max-width: 400px; /* slightly smaller than desktop logo */
    padding: 15px;
  }

  body {
    background-position: 20% center; /* Adjust background to look better on tablets */
  }
}











  