/* Alapbeállítások (nem változott) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  max-width: 200px; /* A logó maximális szélessége 200 pixel legyen */
  height: auto; /* A magasság automatikusan arányosan igazodjon a szélességhez */
}

/* Navbar (nem változott lényegesen, hozzáadtam a Font Awesome ikont) */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
}

.logo img {
  margin-right: 10px;
  border-radius: 50%;
}

.nav-links a {
  color: #fff;
  margin-left: 30px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  color: #fff;
  cursor: pointer;
}

/* Hero Szekció (nem változott) */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1570188656649-01c045e7f1a3?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w1NjYwMjl8MHwxfHNlYXJjaHw1Nnx8bHV4dXJ5JTIwdHJhdmVsJTIwcHJpdmF0ZSUyMHZpbGxhJTIwYmVhY2glMjBzdW5zZXR8ZW58MHx8fHwxNzA3NjQ1NTk2fDA&ixlib=rb-4.0.3&q=80&w=1080');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.cta-button i {
  /* Messenger ikon stílusa */
  margin-right: 10px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  display: block;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Új szekciók a tartalomhoz és videókhoz */
.content-section {
  padding: 80px 0;
  text-align: center;
}

.content-section.light-background {
  background-color: #2a2a2a; /* Enyhén eltérő háttér a vizuális elkülönítéshez */
  color: #f0f0f0;
}

.content-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px; /* Elemek közötti távolság */
  flex-wrap: wrap; /* Tördelés kisebb képernyőkön */
}

.content-section .container.reverse-layout {
  flex-direction: row-reverse; /* Megfordítja az elemek sorrendjét */
}

.content-text {
  flex: 1; /* Egyenlő arányban osztozik a helyen */
  min-width: 300px; /* Minimális szélesség, mielőtt törne */
  text-align: left;
}

.content-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffd700; /* Arany szín kiemelésként */
}

.content-text p {
  font-size: 1.1em;
  opacity: 0.9;
}

.video-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative; /* A felirat pozícionálásához */
}

mux-player {
  width: 100%;
  max-width: 600px; /* Maximum szélesség korlátozása, hogy ne legyen túl nagy */
  aspect-ratio: 16 / 9; /* Videó arányának megtartása */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-caption {
  margin-top: 15px;
  font-size: 0.9em;
  color: #ccc;
}

/* CTA Szekció (külön stílus a nagy gombhoz) */
.cta-section {
  background-color: #111; /* Sötétebb háttér */
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 50px auto;
  opacity: 0.8;
}

.large-cta {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Footer */
.footer {
  background-color: #000;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9em;
}

.footer-links a {
  color: #ccc;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer p {
  margin-top: 20px;
}

/* Reszponzivitás mobilra (kiegészítve a videó szekciókkal) */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 20px 0;
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 15px 0;
  }

  .hamburger-menu {
    display: block;
  }

  .navbar .container {
    justify-content: space-between;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .content-section .container,
  .content-section .container.reverse-layout {
    flex-direction: column; /* Egymás alá kerülnek a tartalom és videó mobil nézetben */
    gap: 40px;
  }

  .content-text,
  .video-wrapper {
    min-width: unset; /* Töröljük a minimális szélességet mobilon */
    width: 100%; /* Teljes szélesség mobilon */
  }

  .content-text {
    text-align: center; /* Mobilon középre igazítjuk a szöveget */
  }

  .content-text h2 {
    font-size: 2em;
  }

  .content-text p {
    font-size: 1em;
  }

  .cta-section h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 0.9em;
  }

  .content-text h2 {
    font-size: 1.8em;
  }

  .content-text p {
    font-size: 0.9em;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .large-cta {
    padding: 15px 30px;
    font-size: 1em;
  }
  .footer-links a {
    display: block;
    margin: 10px 0;
  }
}
