*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111014;
  --pink: #f582c5;
  --text: #f0eaf2;
  --muted: #9a8fa0;
  --border: rgba(245, 130, 197, 0.2);
}

html, body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(ellipse at center, rgba(180, 60, 130, 0.3) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text);
}

.gomb {
  font-size: 1.2rem; /* FIXED */
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  padding: 6px 14px;
  margin: 8px;
  border: 2px solid #ff69c0;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none; 
}

.gomb:visited {
  color: #fff;
}

.gomb::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    rgba(0, 255, 255, 0) 70%
  );
  transition: 0.4s;
  transform: scale(0);
}

.gomb:hover::before {
  transform: scale(1);
}

.gomb:hover {
  color: #000;
  background: #ff6ac1;
  box-shadow: 0 0 8px #ff6ac1, 0 0 30px #ff6ac1, 0 0 60px #ff6ac1;
}

.gomb:active {
  transform: scale(0.95);
}

.gyujtemeny {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 48px;
}

.gyujtemeny > h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}

.szekció {
  margin-bottom: 64px;
}

.szekció h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.foto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.foto-grid a,
.foto-grid .foto-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
}

.foto-grid a:hover {
  transform: translateY(-4px);
}

.foto-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.2s;
}

.foto-grid a:hover img {
  filter: brightness(1);
}

.plakat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.plakat-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.plakat-grid img:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
}

@media (max-width: 700px) {
  .gyujtemeny {
    padding: 0 20px;
    margin: 48px auto;
  }

  .foto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plakat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}