/* Alap */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #111;
  color: #eee;
  scroll-behavior: smooth;
}

/* Hero szekció */
.hero {
  position: relative;
  height: 100vh;
  background: url('kepek/hatter.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  pointer-events: none; /* 👉 hogy ne takarja a gombokat */
}

/* Navigáció */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo img {
  height: 200px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: crimson;
}

/* Mobil menü */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #222;
    padding: 1rem;
    border-radius: 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero tartalom */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: auto;
  margin-bottom: 5rem;
}

.hero-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: crimson;
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  margin: 1rem 0;
  font-size: 1.2rem;
  color: #ddd;
}

.btn {
  background: crimson;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #ff4444;
}

/* Szekciók */
main {
  max-width: 1000px;
  margin: auto;
  padding: 3rem 1rem;
}

h2 {
  color: crimson;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Heti menü szekció */
.menu-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.menu-box img {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid crimson;
  box-shadow: 0 0 15px rgba(220,20,60,0.5);
  transition: transform 0.3s;
}

.menu-box img:hover {
  transform: scale(1.02);
}

/* Étlap */
.etlap-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  justify-items: center;
}

.etlap-gallery img {
  width: 80%;
  max-width: 200px;
  border-radius: 8px;
  border: 2px solid crimson;
  box-shadow: 0 0 10px rgba(220,20,60,0.5);
  cursor: pointer;
  transition: transform 0.3s;
}

.etlap-gallery img:hover {
  transform: scale(1.05);
}

/* Rólunk */
.rolunk-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(220,20,60,0.3);
}
.rolunk-box p {
  margin-bottom: 1rem;
}

/* Galéria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  width: 100%;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  border: 2px solid crimson;
  box-shadow: 0 0 10px rgba(220,20,60,0.4);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox (galéria) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  object-fit: contain;
}

/* Lightbox zárás gomb */
.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* English menu gomb */
.english-btn-container {
  text-align: center;
  margin: 20px 0;
}

#englishMenuBtn {
  background-color: #ff4d6d;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

#englishMenuBtn:hover {
  background-color: #e03a56;
  transform: scale(1.05);
}

/* Kapcsolatok */
#kapcsolat a {
  color: #ff4d6d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

#kapcsolat a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Animációk */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lábléc */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-links img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s, filter 0.3s;
}

.social-links img:hover {
  transform: scale(1.2);
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(-20deg) saturate(5);
}

footer .copyright {
  font-size: 0.9rem;
  color: #aaa;
}

footer {
  background: #222;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 2px solid crimson;
}

/* --- English modal --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  object-fit: contain;
}

.modal .close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* --- Lightbox + English modal nyilak (egységes stílus) --- */
.lightbox .prev,
.lightbox .next,
#englishModal .prev,
#englishModal .next {
  position: fixed;        /* 👉 mindig a viewporthoz igazodik */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 0 15px;
  transition: color 0.3s;
  z-index: 2100;
}

.lightbox .prev,
#englishModal .prev { left: 20px; }

.lightbox .next,
#englishModal .next { right: 20px; }

.lightbox .prev:hover,
.lightbox .next:hover,
#englishModal .prev:hover,
#englishModal .next:hover {
  color: crimson;
}

.kapcsolat-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kapcsolat-info,
.nyitvatartas {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(220,20,60,0.3);
}

/* Számítógépen egymás mellé */
@media (min-width: 768px) {
  .kapcsolat-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .kapcsolat-info, .nyitvatartas {
    width: 48%;
  }
}
