/* css styles */
.photo-modal-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  background: rgba(0, 0, 0, 0.65);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  line-height: 1.4;
  text-align: center;
}

/* Language switcher styles */
#language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

#language-switcher button {
  background: white;
  border: 2px solid #333;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
}

#language-switcher button:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

#language-switcher button[style*="font-weight: bold"] {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

/* Profile section styles */
#hero-heading {
  margin-bottom: 3rem;
}

#hero-heading h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

#hero-heading h3 {
  color: #34495e;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Section dividers */
hr {
  margin: 3rem 0;
  border: none;
  border-top: 2px solid #e0e0e0;
}

/* Responsive design */
@media (max-width: 768px) {
  #language-switcher {
    top: 10px;
    right: 10px;
    flex-direction: column;
    gap: 5px;
  }
  
  #language-switcher button {
    padding: 6px 10px;
    font-size: 12px;
  }
}
