/* Therapy Images Grid Styles */

.therapy-images-section {
  padding: 80px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .therapy-images-section {
    display: none;
  }
}

@media (min-width: 768px) {
  .therapy-section {
    display: none;
  }
}

.therapy-heading {
  font-family: var(--font-inter, sans-serif);
  font-weight: 700;
  font-size: 3rem;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

/* Add desktop grid layout styles */
.therapy-desktop-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
}

.therapy-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.therapy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.therapy-image:hover img {
  transform: scale(1.05);
}

.therapy-images-top {
  display: flex;
  gap: 40px;
  height: 80vh; /* Tall, full viewport height */
}

.therapy-image-top-left,
.therapy-image-top-right {
  flex: 1;
  height: 100%;
}

.therapy-image-bottom {
  height: 700px; /* Taller bottom image */
  width: 100%;
}

/* Responsive styles for grid */
@media (max-width: 1200px) {
  .therapy-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .therapy-heading {
    font-size: 2.2rem;
  }
  
  .therapy-images-top {
    height: 70vh;
  }
  
  .therapy-image-bottom {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .therapy-images-section {
    padding: 60px 0;
  }
  
  .therapy-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .therapy-images-top {
    height: 60vh;
  }
  
  .therapy-image-bottom {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .therapy-images-section {
    padding: 40px 0;
  }
  
  .therapy-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .therapy-images-top {
    flex-direction: column;
    height: auto;
  }
  
  .therapy-image-top-left,
  .therapy-image-top-right {
    height: 40vh;
  }
  
  .therapy-image-bottom {
    height: 350px;
  }
} 