body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #e0e6e1 10%, #bbddec 25%, #b1c9c9 50%);
  background-attachment: fixed;
  margin: 20px;
  min-height: 100vh;
}

/* Logo Header */
.logo-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.logo-header a {
  display: inline-block;
  text-decoration: none;
}

.fest-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
}

.logo-header a:hover .fest-logo {
  transform: scale(1.05);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery a {
  display: block;
  cursor: pointer;
}

/* Hide lightbox subtitle/caption */
.lg-sub-html {
  display: none !important;
}
