@import url('styles.css');

/* About Hero Section */
.about-hero {
  text-align: center;
  padding: 2rem 0;
}

.about-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-hero p {
  font-size: 1.3rem;
  color: #555;
  margin-top: 1.5rem;
}

/* Full-Width Video Section */
.about-video {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.about-video video {
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* About Content Section */
.about-content {
  margin-top: 3rem;
  padding: 3rem 0;
  opacity: 0;
  animation: fade-up 0.5s ease-out forwards;
}

.about-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.4rem;
  }

  .about-text {
    font-size: 1.1rem;
  }

  .about-video video {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-video video {
    max-height: 50vh;
  }
}

/* Grid Style for Last Two Images */
.about-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.about-image-grid img:hover {
  transform: scale(1.05);
}

/* Treatment Images (Rounded) */
.treatment-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.treatment-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.treatment-images img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .treatment-images img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .treatment-images img {
    height: 200px;
  }
}
