/* ===== ALAP ===== */
body {
  margin: 0;
  background-color: #F6F4EF;
  color: #2E2E2E;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;

/* VÍZJEL */
.vizjel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 0.8;      /* halvány */
  pointer-events: none;

  z-index: -1;         /* ⬅️ ez a lényeg: a háttérbe kerül */
}

header {
  background: #1C7583;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);

  position: fixed;   /* FIXÁLÁS */
  top: 0;
  left: 0;
  width: 100%;       /* teljes szélesség */
  box-sizing: border-box; /* padding beleszámít a szélességbe */
  z-index: 999;
}

.logo {
  height: 50px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #F08683;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #FFFFFF;
	font-size: 19px;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #F08683;
}

/* Menü link aláhúzás hoverkor (főmenü) */
.menu > li > a:hover {
    position: relative;
	text-decoration: none;
}

.menu > li > a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background-color: #F08683;
    border-radius: 2px;
}

/* Submenu doboz */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  white-space: nowrap;
  box-shadow: 0 4px 10px #F08675;
  border-left: 4px solid #F08683;
  border-radius: 0 5px 5px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.menu li:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.submenu li {
  border-bottom: 1px solid #e0e0e0;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  padding: 8px 20px;
  display: block;
  color: #333;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.submenu a:hover {
  background-color: #F08683;
  color: white;
}
/* ===== TARTALOM ===== */
.tartalom {
  max-width: 1200px;
  margin: 140px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.tartalom h1 {
  color: #1C7583;
  margin-bottom: 40px;
}

/* ===== VIDEÓK ===== */
.video-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.video-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 420px;
}

.video-box h2 {
  color: #1C7583;
  margin-bottom: 15px;
}

.video-box iframe {
  width: 100%;
  height: 290px;
  border-radius: 10px;
}

/* ===== LETÖLTÉS ===== */
.letoltes {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.letoltes h2 {
  color: #1C7583;
  margin-bottom: 20px;
}

.letoltes-gomb {
  display: inline-block;
  background-color: #F08683;
  color: white;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.letoltes-gomb:hover {
  background-color: #e06e6b;
  transform: translateY(-2px);
}

}.gallery-wrapper {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.gallery {
    display: inline-flex;
    gap: 15px;
}

.gallery img {
    height: 120px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}