/* About Page Styling */

/* Profile Photo */
.about-profile-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.about-profile-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #d4af37;
}

/* Inline GIF Icons */
.icon-gif {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Introduction Section */
.about-intro {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.about-intro p {
  margin-bottom: 25px;
  color: #4a5568;
}

.about-intro .icon {
  font-size: 20px;
  margin-right: 8px;
}

.about-intro strong {
  color: #2d3748;
  font-weight: 600;
}

.about-intro a {
  color: #c9a227;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.about-intro a:hover {
  border-bottom-color: #c9a227;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary {
  background: #4a5568;
  color: white;
}

.btn-primary:hover {
  background: #2d3748;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: white;
  color: #4a5568;
  border: 2px solid #4a5568;
}

.btn-secondary:hover {
  background: #f7fafc;
  transform: translateY(-1px);
}

/* Accolades Grid */
.accolades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.accolade-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolade-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.accolade-item img {
  width: 100%;
  height: auto;
  max-width: 120px;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.cert-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cert-item img {
  width: 100%;
  height: auto;
  max-width: 120px;
}

.cert-name {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

/* GIF Lightbox */
.gif-lightbox {
  cursor: zoom-in;
}

.gif-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.gif-lightbox-overlay.active {
  display: flex;
}

.gif-lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-buttons {
    flex-direction: column;
  }
  
  .btn {
    text-align: center;
  }
  
  .accolades-grid,
  .certifications-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}