/* === Responsive Styles === */

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 60px;
    line-height: 70px;
  }

  .hero p {
    font-size: 1.2em;
    max-width: 70%;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
    line-height: 58px;
  }

  .hero p {
    font-size: 1.1em;
    max-width: 80%;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .pLeft, .pRight {
    padding-left: 0;
    padding-right: 0;
  }
  .btn {
    display: block;
  }


  .listings-grid {

    grid-template-columns: repeat(1, 1fr);

}




}

@media (max-width: 800px) {





  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: var(--bg-light);
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    color: var(--text-light);
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .container {
    width: 90%;
  }

  .footer-top, .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .contact-flex {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }
}

/* Add any breakpoint-specific layout or font adjustments here */
