body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('../kepek/kaszi.png');
  color: #333;
}

header, footer {
  background-color: #4caf50;
  color: white;
  text-align: center;
  padding: 1rem;
}

main {
  padding: 1rem;
  max-width: 960px;
  margin: auto;
}

h1, h2 {
  color: #222;
}

section {
  margin-bottom: 2rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.bonus-list .bonus {
  background-color: #e7ffe7;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
  border-left: 4px solid #4caf50;
}

form input, form textarea, form button {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.75rem;
  font-size: 1rem;
}

button {
  background: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #388e3c;
}

.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

/* Reszponzív elrendezés */
@media (max-width: 600px) {
  header, main, footer {
    padding: 0.5rem;
  }
  .popup-content {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.navbar-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  z-index: 2;
}


.navbar-title {
  font-weight: bold;
  font-size: 1.2rem;
  flex-grow: 1;
  text-align: center;
  color: #4caf50;
}

.navbar-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  text-decoration: none;
  color: #fff1f1;
  font-weight: 500;
}

.navbar-menu li a:hover {
  text-decoration: underline;
}

/* Mobil nézet */
@media (max-width: 900px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 1rem;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-title {
    text-align: center;
    flex-grow: unset;
  }
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #4caf50;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-media a:hover {
  background-color: #4caf50;
  transform: scale(1.1);
}

.social-media a img {
  width: 30px;
  height: 30px;
}

.slot-banner {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 150px;
  background-image: url('../kepek/banner.png'); /* vagy slot.png */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.slot-banner.left {
  left: 0;
}

.slot-banner.right {
  right: 0;
}

@media (max-width: 1250px) {
  .slot-banner {
    display: none;
  }

  body {
    padding-left: 0;
    padding-right: 0;
  }
}

.styled-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem; /* távolság a sorok között */
  margin: 1rem 0;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.styled-table thead {
  background-color: #2e4692;
  color: white;
}

.styled-table th {
  padding: 1rem;
  text-align: center;
  background-color: #2e4692;
  border-radius: 8px 8px 0 0;
}

.styled-table td {
  padding: 1rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.styled-table tr:nth-child(even) td {
  background-color: #f9f9f9;
}


.styled-table td {
  border-right: 1px solid #ddd;
}
.styled-table td:last-child {
  border-right: none;
}


.submit-button-container {
  text-align: center;
  margin-top: 1.5rem;
}

.submit-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.submit-link:hover {
  background-color: #388e3c;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0 1rem 0;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.checkbox-group label {
  margin-bottom: 0.5rem;
}

form {
  max-width: 600px;
  margin: auto;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  font-size: 1rem;
  box-sizing: border-box;
}

form input.short-input {
  max-width: 200px;
}

form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  resize: vertical;
  box-sizing: border-box;
}

form .form-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

form .form-buttons button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form .form-buttons button:hover {
  background-color: #388e3c;
}

@media (max-width: 768px) {
  body.menu-open .navbar-title {
    display: none;
  }
  
}
.thumbnail-gallery {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.thumbnail-gallery img {
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s;
}
.thumbnail-gallery img:hover {
  transform: scale(1.05);
  border-color: #4caf50;
}
.menu-open .navbar-title {
  display: none;
}

body.high-contrast {
  background-color: #000 !important;
  color: #000000 !important;
  font-size: 1.2em;
  font-family: Arial, sans-serif;
}

a {
  color: #FFFF00 !important;
  text-decoration: underline;
}

h1, h2, h3, h4 {
  text-transform: uppercase;
}

button, input, label {
  font-size: 1.1em;
}

#accessibility-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #222;
  color: rgb(255, 255, 255);
  padding: 10px 14px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

#accessibility-toggle:hover {
  background-color: #444;
}

.responsive-video {
  width: 100%;
  height: 315px;
}


