/* Háttér videó */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

/* Betöltő képernyő */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e0f7fa; /* Világos kék háttér */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.loader {
  border: 8px solid #b2ebf2; /* Világoskék szegély */
  border-top: 8px solid #007bb5; /* Sötétkék szín a loader tetején */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content { opacity: 100; transition: 1.2s; }

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #e0f7fa; /* Világos kék háttér */
  color: #004d6f; /* Sötétkék szöveg a világos háttérhez */
  text-align: center;
}

/* Menü */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #007bb5; /* Sötétkék háttér */
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Finom árnyék a menünek */
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #ffffff; /* Fehér link szín */
  text-decoration: none;
  padding: 15px;
  display: inline-block;
  transition: 0.3s;
  font-weight: bold;
}

nav ul li a:hover {
  color: #fff;
  background: #004d6f; /* Sötétkék háttér hover állapotban */
  border-radius: 5px;
}

/* Content blokkok */
.content-block {
  background: #ffffff; /* Fehér háttér */
  margin: 40px auto;
  padding: 25px;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Finom árnyék */
  transition: 0.3s;
  color: #004d6f; /* Sötétkék szöveg */
}

.content-block:hover {
  background: #f0f8ff; /* Világosabb kék háttér hover állapotban */
  transform: scale(1.04);
}

.anim-btn {
  padding: 12px 25px;
  background: #007bb5; /* Sötétkék háttér */
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.anim-btn:hover {
  background: #004d6f; /* Mélyebb kék szín hover állapotban */
}

/* Footer */
footer {
  background: #007bb5; /* Sötétkék háttér */
  padding: 35px;
  color: #ffffff; /* Fehér szöveg */
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Finom árnyék a footernek */
}
