/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
  top: 100%;
  left: 0;
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Gallery Options Styles */
.gallery-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.gallery-option {
  text-decoration: none;
  color: inherit;
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  max-width: 400px;
}

.gallery-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-option h2 {
  margin-bottom: 1rem;
  color: #333;
}

.gallery-option p {
  color: #666;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery-options {
    flex-direction: column;
    align-items: center;
  }

  .gallery-option {
    width: 100%;
    max-width: 100%;
  }
} 