/* Gallery specific styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.gallery-filters {
  margin-bottom: 2rem;
}

.filter-btn {
  background: none;
  border: 2px solid var(--bs-primary);
  color: var(--bs-primary);
  padding: 0.5rem 1.5rem;
  margin: 0 0.25rem 0.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--bs-primary);
  color: white;
}

/* Stats Cards */
.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Photo Submission Form */
.photo-submission-form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Styles */
.dark-mode .gallery-item {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .gallery-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dark-mode .photo-submission-form {
  background-color: #2d2d2d;
  color: #f0f0f0;
}

.dark-mode .form-control {
  background-color: #333;
  border-color: #444;
  color: #f0f0f0;
}

.dark-mode .form-text {
  color: #adb5bd;
}

/* Media Appearance Cards */
.media-appearance-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px;
}

.media-appearance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.media-appearance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-appearance-card:hover img {
  transform: scale(1.05);
}

.media-appearance-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
}

.media-appearance-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.media-appearance-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Enhanced About Page Styles */
.profile-image-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-image-container:hover .profile-image {
  transform: scale(1.1);
}

.profile-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1rem;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.personal-info-card,
.skills-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personal-info-card:hover,
.skills-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.personal-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.personal-info li i {
  width: 30px;
  height: 30px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}

.social-links-enhanced {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.social-link-enhanced:hover {
  background-color: var(--bs-primary);
  color: white;
  transform: translateY(-3px);
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

.interest-item-enhanced {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.interest-item-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.interest-icon-enhanced {
  width: 80px;
  height: 80px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.interest-item-enhanced:hover .interest-icon-enhanced {
  transform: rotateY(180deg);
  background-color: var(--bs-primary);
  color: white;
}

.quote-section-enhanced {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.quote-container {
  position: relative;
  padding: 3rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 3rem;
  color: var(--bs-primary);
  opacity: 0.2;
}

.blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.blockquote-footer {
  font-size: 1rem;
  text-align: left;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  font-size: 1.5rem;
}

.achievement-content {
  flex: 1;
}

.achievement-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.achievement-content p {
  margin-bottom: 0;
  color: #6c757d;
}

.download-cv-enhanced {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.download-cv-enhanced:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

.download-cv-enhanced:hover:before {
  width: 100%;
}

.download-cv-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.international-relations {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.dark-mode .quote-section-enhanced {
  background-color: #1a1a1a;
}

.dark-mode .quote-container {
  background-color: #2d2d2d;
  color: #f0f0f0;
}

.dark-mode .interest-item-enhanced {
  background-color: #2d2d2d;
  color: #f0f0f0;
}

.dark-mode .achievement-item {
  background-color: #2d2d2d;
  color: #f0f0f0;
}

.dark-mode .achievement-content p {
  color: #adb5bd;
}

