/* Responsive Navigation Menu */


/* Hero Text Centering for Small Screens */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
    padding: 0 20px;
  }

  .hero-text h1,
  .hero-text p,
  .hero-text a {
    font-size: 90%;
  }

  .button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Responsive Grid for Rooms */
@media (max-width: 768px) {
  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-item-wrapper {
    width: 100%;
  }

  .products-item-image {
    width: 100%;
    height: auto;
  }

  .products-item-text-wrapper {
    padding: 10px;
  }

  .heading-h4 {
    font-size: 18px;
  }

  .product-list-description {
    font-size: 14px;
  }
}

/* Optional: Smaller screens like phones < 480px */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 16px;
  }
}
