.actors {
  padding: 120px 0;
  background: #0b0b0e;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

.section-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: auto;
}

.actors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.actor-card {
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.actor-card:hover {
  transform: translateY(-6px);
}

.actor-card img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */

.actors-hero {
  height: 60vh;

  background:
      linear-gradient(rgba(0,0,0,0), rgba(8,8,8,0)),
       url("images/actors-bg.jpg") center/cover;

  display: flex;

  align-items: center;

  position: relative;
}

.actors-hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.6);
}

.actors-hero-content {
  position: relative;

  color: white;

  max-width: 700px;
}

.hero-kicker {
  color: #d4a017;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-size: 0.9rem;

  margin-bottom: 15px;
}

.actors-hero h1 {
  font-size: 3.5rem;

  margin-bottom: 20px;
}

/* PROJEKT INFO */

.actors-about {
  padding: 100px 0;

  background: #101014;
}

.actors-about-grid {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 50px;
}

.actors-about-text p {
  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 20px;

  line-height: 1.7;
}

.info-card {
  background: #151518;

  padding: 25px;

  border-radius: 15px;

  margin-bottom: 20px;
}

.info-card span {
  display: block;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.8rem;

  margin-bottom: 6px;
}

/* CTA */

.actors-cta {
  padding: 120px 0;

  background: #0b0b0e;

  text-align: center;
}

.actors-cta h2 {
  font-size: 2.5rem;

  margin-bottom: 20px;
}

.actors-cta p {
  color: rgba(255, 255, 255, 0.7);

  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;

  background: #d4a017;

  color: black;

  padding: 14px 28px;

  border-radius: 30px;

  text-decoration: none;

  font-weight: 600;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.9);

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 1000;
}

.lightbox img {
  max-width: 90%;

  max-height: 90%;

  border-radius: 10px;
}

.lightbox.active {
  display: flex;
}

/* ===== LAPTOP ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
  .actors {
    padding: 100px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .actors-hero {
    height: 55vh;
  }

  .actors-hero-content {
    max-width: 640px;
  }

  .actors-hero h1 {
    font-size: 3rem;
  }

  .actors-about-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
  }

  .actors-cta {
    padding: 100px 0;
  }

  .actors-cta h2 {
    font-size: 2.2rem;
  }
  .mobile-hamburger {
    display: none;
  }
}

/* ===== TABLET ===== */
@media (min-width: 769px) and (max-width: 1023px) {
  .actors {
    padding: 90px 0;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .section-text {
    max-width: 680px;
  }

  .actors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .actors-hero {
    height: 50vh;
    min-height: 420px;
  }

  .actors-hero-content {
    max-width: 600px;
  }

  .actors-hero h1 {
    font-size: 2.7rem;
  }

  .actors-about {
    padding: 80px 0;
  }

  .actors-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .actors-cta {
    padding: 90px 0;
  }

  .actors-cta h2 {
    font-size: 2.1rem;
  }

 
}

/* ===== TELEFON ===== */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }

  .actors {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .section-text {
    font-size: 0.98rem;
  }

  .actors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .actors-hero {
    height: auto;
    min-height: auto;
    padding: 110px 0 70px;
  }

  .actors-hero-content {
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .actors-hero h1 {
    font-size: 2.3rem;
    margin-bottom: 16px;
  }

  .actors-about {
    padding: 72px 0;
  }

  .actors-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .actors-about-text p {
    margin-bottom: 16px;
  }

  .info-card {
    padding: 22px;
    margin-bottom: 16px;
  }

  .actors-cta {
    padding: 72px 0;
  }

  .actors-cta h2 {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }

  .actors-cta p {
    margin-bottom: 24px;
    font-size: 0.98rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 22px;
  }

  .lightbox img {
    max-width: 94%;
    max-height: 85%;
  }

 
}

/* ===== KIS TELEFON ===== */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }

  .actors {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .actors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .actor-card {
    border-radius: 16px;
  }

  .actors-hero {
    height: auto;
    min-height: auto;
    padding: 95px 0 60px;
  }

  .actors-hero-content {
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
  }

  .actors-hero h1 {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }

  .actors-about {
    padding: 56px 0;
  }

  .actors-about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .actors-about-text p {
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.65;
  }

  .info-card {
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .info-card span {
    font-size: 0.74rem;
  }

  .actors-cta {
    padding: 56px 0;
  }

  .actors-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .actors-cta p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
  }

  .lightbox img {
    max-width: 96%;
    max-height: 80%;
    border-radius: 8px;
  }

 
}

/* ===== PC ===== */
@media (min-width: 1200px) {
  .container {
    width: min(1200px, calc(100% - 60px));
  }

  .actors {
    padding: 120px 0;
  }

  .actors-grid {
    gap: 30px;
  }

  .actors-hero {
    height: 60vh;
  }

  .actors-hero-content {
    max-width: 700px;
  }

  .actors-about-grid {
    grid-template-columns: 2fr 1fr;
    gap: 50px;
  }

  .actors-cta {
    padding: 120px 0;
  }

}

/* =========================================================
   HERO EGYSÉGESÍTÉS - fotozas-szervezes.css stílus alapján
   Csak a hero megjelenését igazítja, a képeket és szövegeket nem módosítja.
========================================================= */

.actors-hero {
  min-height: 100vh;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

.actors-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.38));
}

.actors-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: white;
}

.actors-hero .hero-kicker {
  color: var(--primary-gold, #d4a017);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.actors-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .actors-hero {
    min-height: auto;
    padding: 130px 0 80px;
    text-align: center;
  }

  .actors-hero-content {
    max-width: 100%;
  }

  .actors-hero .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .actors-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .actors-hero {
    padding: 115px 0 64px;
  }

  .actors-hero h1 {
    font-size: 2rem;
  }
}

/* =========================================================
   HERO BUTTON + OVERLAY EGYSÉGESÍTÉS
   Csak a hero overlayeket és a hero gombokat egységesíti.
   A képek, szövegek és a szekciók szerkezete nem változik.
========================================================= */

/* Egységes hero overlay minden aloldalon */
.subpage-hero .hero-overlay,
.podcast-hero::after,
.adshoot-hero::after,
.stab-hero::after,
.studio-hero-overlay,
.actors-hero-overlay,
.video-page-hero__overlay,
.videoedit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.92)
    ),
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.42)
    );
  pointer-events: none;
}

/* Pseudo-elemes overlayeknél maradjon a háttérkép mögött, de a tartalom alatt */
.podcast-hero::after,
.adshoot-hero::after,
.stab-hero::after,
.videoedit-hero::after {
  z-index: -1;
}

/* Normál overlay div-eknél a tartalom alatt legyen */
.subpage-hero .hero-overlay,
.studio-hero-overlay,
.actors-hero-overlay,
.video-page-hero__overlay {
  z-index: 1;
}

/* Hero tartalom mindig overlay fölött */
.subpage-hero .hero-content,
.podcast-hero .hero-content,
.adshoot-hero .hero-content,
.stab-hero .hero-content,
.stab-hero .stab-hero__content,
.studio-hero .hero-content,
.actors-hero-content,
.video-page-hero__content,
.videoedit-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Egységes hero gomb alap */
.hero-actions .btn,
.hero-actions a,
.video-page-actions .btn,
.video-page-actions a,
.actors-hero .btn,
.actors-hero a.btn,
.subpage-hero .btn,
.podcast-hero .btn,
.adshoot-hero .btn,
.stab-hero .btn,
.studio-hero .btn,
.videoedit-hero .btn {
  min-height: 50px;
  padding: 0 34px;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

/* Egységes elsődleges hero gomb */
.hero-actions .btn-primary,
.hero-actions .btn--primary,
.video-page-actions .btn-primary,
.video-page-actions .btn--primary,
.actors-hero .btn-primary,
.subpage-hero .btn-primary,
.podcast-hero .btn-primary,
.adshoot-hero .btn-primary,
.stab-hero .btn-primary,
.studio-hero .btn-primary,
.videoedit-hero .btn-primary {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
  box-shadow: 0 14px 34px rgba(212, 160, 23, 0.22);
}

/* Egységes másodlagos / outline hero gomb */
.hero-actions .btn-outline,
.hero-actions .btn--outline,
.hero-actions .btn-secondary,
.video-page-actions .btn-outline,
.video-page-actions .btn--outline,
.video-page-actions .btn-secondary,
.subpage-hero .btn-outline,
.podcast-hero .btn-outline,
.adshoot-hero .btn-outline,
.stab-hero .btn-outline,
.studio-hero .btn-outline,
.videoedit-hero .btn-outline {
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

/* Egységes hover */
.hero-actions .btn:hover,
.video-page-actions .btn:hover,
.actors-hero .btn:hover,
.subpage-hero .btn:hover,
.podcast-hero .btn:hover,
.adshoot-hero .btn:hover,
.stab-hero .btn:hover,
.studio-hero .btn:hover,
.videoedit-hero .btn:hover {
  transform: translateY(-2px);
}

.hero-actions .btn-outline:hover,
.hero-actions .btn--outline:hover,
.hero-actions .btn-secondary:hover,
.video-page-actions .btn-outline:hover,
.video-page-actions .btn--outline:hover,
.video-page-actions .btn-secondary:hover,
.subpage-hero .btn-outline:hover,
.podcast-hero .btn-outline:hover,
.adshoot-hero .btn-outline:hover,
.stab-hero .btn-outline:hover,
.studio-hero .btn-outline:hover,
.videoedit-hero .btn-outline:hover {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.44);
}

@media (max-width: 768px) {
  .hero-actions .btn,
  .hero-actions a,
  .video-page-actions .btn,
  .video-page-actions a,
  .actors-hero .btn,
  .subpage-hero .btn,
  .podcast-hero .btn,
  .adshoot-hero .btn,
  .stab-hero .btn,
  .studio-hero .btn,
  .videoedit-hero .btn {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 0 22px;
  }
}

/* =========================================================
   FOOTER VISIBILITY FIX - subpages
   Desktop footer ne latszodjon mobilon, mobil footer ne latszodjon desktopon
========================================================= */
.footer__mobile {
  display: none !important;
}

@media (min-width: 769px) {
  .footer__mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .footer__brand,
  .footer__links,
  .footer__social,
  .footer__social--desktop {
    display: none !important;
  }

  .footer__mobile {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .footer__mobile-social {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .footer__content,
  .footer .container.footer__content {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
