/* ===== ALAP ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ===== FEJLÉC ===== */
.header {
  height: 300px;
  background-image: url('head.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  max-width: 1200px;
  width: 100%;
}

.header-logo img {
  height: 110px;
}

.header-title h1 {
  font-size: clamp(24px, 5vw, 46px);
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ===== MENÜ ===== */
nav {
  background-color: #222;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 10px 0;
}

nav li {
  margin: 0 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== OLDAL ===== */
.container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.main-slide {
  flex: 3;
  background-color: #eaeaea;
  padding: 25px;
  border-radius: 15px;
}

/* ===== SUPPORTERS ===== */
.supporters {
  flex: 1;
  background-color: #f7f7f7;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.supporters h3 {
  text-align: center;
  margin-bottom: 20px;
}

.supporters-logos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.supporters-logos img {
  width: 300px;
  max-width: 100%;
  filter: grayscale(100%);
  transition: transform 0.3s, filter 0.3s;
}

.supporters-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ===== KÁRTYÁK / BOXOK ===== */
.info-box,
.event,
.record-card,
.spot {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== LÁBLÉC ===== */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* ===== RESZPONZÍV ===== */
@media (max-width: 900px) {
  .records-grid,
  .spots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .header {
    height: auto;
    padding: 30px 0;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-logo img {
    height: 90px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  nav ul.open {
    display: flex;
  }

  nav li {
    margin: 10px 0;
  }

  .container {
    flex-direction: column;
  }
}