* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HERO ===== */
.gallery-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-bottom: 3rem;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/gallery-hero.jpg") center/cover no-repeat;
  filter: brightness(0.5);
  z-index: 1;
}

.gallery-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .gallery-hero h1 { font-size: 2rem; letter-spacing: 1px; }
}

/* ===== GALÉRIA ===== */
.gallery-section {
  padding: 5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery a {
  position: relative;
  border-radius: 8px;
  display: block;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery a:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* ===== LÁBLÉC ===== */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
}


.alairas {
height: auto;
width: auto;
position: fixed;


}