/**
 * Photo Styles - Custom implementation without Webflow dependencies
 */

/* Desktop photo column */
.intro-photo-col {
  flex-shrink: 0;
  width: 240px;
  max-height: 100%;
  padding: 0;
}

#profilePhoto {
  width: 100%;
  height: 320px;
  max-height: 320px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 5%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#profilePhoto:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .intro-photo-col {
    width: 200px;
  }

  #profilePhoto {
    height: 360px;
    max-height: 360px;
  }
}

@media (max-width: 991px) {
  .intro-photo-col {
    width: 180px;
  }

  #profilePhoto {
    height: 400px;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .intro-photo-col {
    width: 160px;
  }

  #profilePhoto {
    height: 440px;
    max-height: 440px;
  }
}

/* Mobile - circular avatar at top */
@media (max-width: 600px) {
  .intro-photo-col {
    width: 100px;
    height: 100px;
    order: -1;
  }

  #profilePhoto {
    width: 100px;
    height: 100px;
    max-height: none;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
  }
}

@media (max-width: 360px) {
  .intro-photo-col {
    width: 80px;
    height: 80px;
  }

  #profilePhoto {
    width: 80px;
    height: 80px;
  }
}

