/* Additional responsive image adjustments */

/* Base image styles for all images */
img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Logo specific adjustments */
.logo-img {
  max-height: 50px;
  width: auto;
  vertical-align: middle;
}

/* About image enhancements */
.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.about-image {
  display: block;
  width: 100%;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.03);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image-container:hover .about-image-overlay {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-image-container {
    max-width: 90%;
    margin: 0 auto 2rem;
  }
}

@media (max-width: 767px) {
  .logo-img {
    max-height: 45px;
  }
  
  .about-image-container {
    max-width: 85%;
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 575px) {
  .logo-img {
    max-height: 40px;
  }
  
  .about-image-container {
    max-width: 90%;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-height: 35px;
  }
}