/* golf-responsive.css */

/* Tablet & Smaller Desktop (Max 1024px) */
@media (max-width: 1024px) {
  .golf-hero {
    padding: 60px 40px;
    min-height: 400px;
    margin-bottom: 60px;
  }
  
  .golf-hero-overlay {
    width: 80%;
  }
  
  .golf-hero-content h1 {
    font-size: 50px;
  }
  
  .golf-hero-content h2 {
    font-size: 20px;
  }
  
  .golf-transform-text h2 {
    font-size: 32px;
  }
  
  .golf-transform-text h3.text-green-light {
    font-size: 26px;
  }
  
  .golf-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Make the 3rd feature card span both columns to balance */
  .golf-feature-card:nth-child(3) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .golf-benefits {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .benefit-item {
    flex: 0 0 calc(50% - 15px);
  }
}

/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {
  .golf-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .golf-nav {
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .golf-hero {
    padding: 40px 30px;
    text-align: center;
    justify-content: center;
    min-height: auto;
  }
  
  .golf-hero-overlay {
    width: 100%;
    background: rgba(29, 131, 72, 0.85); /* Solid transparent overlay */
  }
  
  .golf-hero-content {
    max-width: 100%;
  }
  
  .golf-hero-content h1 {
    font-size: 42px;
  }
  
  .golf-transform-text h2 {
    font-size: 28px;
  }
  
  .golf-transform-text h3.text-green-light {
    font-size: 20px;
  }
  
  .golf-features-grid {
    grid-template-columns: 1fr;
  }
  
  .golf-feature-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .golf-feature-img-wrapper {
    height: 240px;
  }
  
  .benefit-item {
    flex: 0 0 100%;
  }

  .aihome-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .aihome-footer__meta, .aihome-footer__contact {
    margin-bottom: 15px;
  }
  
  .aihome-footer__right {
    align-items: center !important;
  }
}
