/* Hover Effects */

/* About Section Hover */
.about-image-wrapper {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.about-image-wrapper:hover {
  transform: scale(1.05);
}

.about-image-wrapper:hover .about-image {
  filter: brightness(1.1);
}

.about-image {
  transition: filter 0.3s ease;
}

/* Social Icons Hover */
.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2) rotate(5deg);
}

/* Form Inputs Hover & Focus */
.contact-form input,
.contact-form textarea {
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(255, 157, 0, 0.2);
  outline: none;
}

/* Filter Buttons Hover */
.filter-btn {
  transition: all 0.3s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 157, 0, 0.3);
}

/* Logo Hover */
.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation Links Hover */
.main-nav a {
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}
