.video-page-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0), rgba(8,8,8,0)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}

.video-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.video-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.video-page-kicker,
.video-section-kicker {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.video-page-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin-bottom: 20px;
}

.video-page-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.video-page-actions,
.video-cta-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.video-intro__grid,
.video-showcase__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: center;
}

.video-intro__text p,
.video-showcase__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.video-check-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.video-check-list li {
  position: relative;
  padding-left: 26px;
  color: #f0f0f0;
}

.video-check-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: -1px;
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.video-intro__card img {
  border-radius: 20px;
  min-height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.video-gallery-item,
.video-gallery-item--large {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: #111;
}

.video-gallery-item--large {
  grid-row: span 2;
  min-height: 560px;
}

.video-gallery-item img,
.video-gallery-item--large img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-gallery-item:hover img,
.video-gallery-item--large:hover img {
  transform: scale(1.06);
}

.video-showcase {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
}

.video-embed-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #0a0a0a;
}

.video-embed-box iframe {
  width: 100%;
  height: 430px;
  display: block;
}

.video-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-detail-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.video-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.35);
}

.video-detail-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.video-detail-card p {
  color: var(--text-muted);
}

.video-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-price-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-price-card--featured {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-8px);
}

.video-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212, 160, 23, 0.13);
  color: var(--primary-gold);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.video-price-label {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.video-price-top h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.video-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.video-price-card ul {
  margin-bottom: 26px;
  display: grid;
  gap: 12px;
}

.video-price-card li {
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.video-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-gold);
}

.video-cta-box {
  text-align: center;
  padding: 56px 32px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.025)
    ),
    radial-gradient(circle at top, rgba(212, 160, 23, 0.11), transparent 45%);
  border: 1px solid rgba(212, 160, 23, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-cta-box p:last-of-type {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}
.video-embed {
  padding: 16px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
}

/* ===== LAPTOP ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
  .video-page-hero__content {
    max-width: 760px;
  }

  .video-page-title {
    font-size: clamp(2.5rem, 6vw, 4.4rem);
  }

  .video-intro__grid,
  .video-showcase__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .video-details-grid,
  .video-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-gallery-item--large {
    grid-row: span 1;
    min-height: 420px;
  }

  .video-intro__card img {
    min-height: 420px;
  }

  .video-embed-box iframe {
    height: 380px;
  }

  .video-price-card--featured {
    transform: none;
  }
}

/* ===== TABLET ===== */
@media (min-width: 769px) and (max-width: 1023px) {
  .video-page-hero {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .video-page-hero__content {
    max-width: 100%;
  }

  .video-page-title {
    font-size: clamp(2.3rem, 6vw, 4rem);
  }

  .video-page-lead {
    font-size: 1rem;
  }

  .video-intro__grid,
  .video-showcase__grid,
  .video-gallery-grid,
  .video-pricing-grid {
    grid-template-columns: 1fr;
  }

  .video-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-gallery-item--large {
    min-height: 340px;
  }

  .video-gallery-item img,
  .video-gallery-item--large img {
    min-height: 240px;
  }

  .video-intro__card img {
    min-height: 360px;
  }

  .video-embed-box iframe {
    height: 320px;
  }

  .video-price-card--featured {
    transform: none;
  }

  .video-cta-box {
    padding: 44px 26px;
  }

 
}

/* ===== TELEFON ===== */
@media (min-width: 481px) and (max-width: 768px) {
  .video-page-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .video-page-hero__content {
    max-width: 100%;
  }

  .video-page-kicker,
  .video-section-kicker,
  .video-price-label,
  .video-price-badge {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .video-page-title {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 16px;
  }

  .video-page-lead {
    font-size: 0.96rem;
  }

  .video-page-actions,
  .video-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .video-intro__grid,
  .video-showcase__grid,
  .video-details-grid,
  .video-pricing-grid,
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-gallery-grid {
    gap: 14px;
  }

  .video-gallery-item--large,
  .video-gallery-item img,
  .video-gallery-item--large img,
  .video-intro__card img {
    min-height: 260px;
  }

  .video-section-title,
  .video-detail-card h3,
  .video-price-top h3 {
    line-height: 1.2;
  }

  .video-section-title {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .video-detail-card,
  .video-price-card,
  .video-cta-box {
    padding: 22px;
  }

  .video-price {
    font-size: 1.7rem;
  }

  .video-embed-box iframe {
    height: 260px;
  }

  .video-cta-box {
    padding: 34px 20px;
    border-radius: 22px;
  }

 
}

/* ===== KIS TELEFON ===== */
@media (max-width: 480px) {
  .video-page-hero {
    min-height: auto;
    padding: 105px 0 70px;
  }

  .video-page-hero__content {
    max-width: 100%;
  }

  .video-page-title {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .video-page-lead,
  .video-intro__text p,
  .video-showcase__text p,
  .video-detail-card p,
  .video-cta-box p:last-of-type,
  .video-price-card li,
  .video-check-list li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .video-page-actions,
  .video-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .video-intro__grid,
  .video-showcase__grid,
  .video-details-grid,
  .video-pricing-grid,
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-gallery-grid {
    gap: 12px;
  }

  .video-gallery-item--large,
  .video-gallery-item img,
  .video-gallery-item--large img,
  .video-intro__card img {
    min-height: 220px;
  }

  .video-section-title {
    font-size: 1.65rem;
  }

  .video-detail-card,
  .video-price-card,
  .video-cta-box {
    padding: 20px 16px;
  }

  .video-price-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .video-price {
    font-size: 1.5rem;
  }

  .video-embed-box iframe {
    height: 220px;
  }

  
}

/* ===== PC ===== */
@media (min-width: 1200px) {
  .video-page-hero__content {
    max-width: 860px;
  }

  .video-intro__grid,
  .video-showcase__grid {
    gap: 42px;
  }

  .video-details-grid,
  .video-pricing-grid {
    gap: 24px;
  }

  .video-gallery-grid {
    gap: 18px;
  }

  .video-embed-box iframe {
    height: 430px;
  }

}

/* =========================================================
   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.
========================================================= */

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

.video-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.38));
}

.video-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

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

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

.video-page-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.video-page-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .video-page-hero__content {
    max-width: 100%;
  }

  .video-page-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .video-page-title {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    margin-bottom: 18px;
  }

  .video-page-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .video-page-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

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

  .video-page-title {
    font-size: 2rem;
  }

  .video-page-lead {
    font-size: 0.94rem;
  }
}

/* =========================================================
   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;
  }
}


/* =========================================================
   HERO GOMBOK + ELRENDEZÉS JAVÍTÁS
   A fotózás szervezés hero kinézetéhez igazítva.
   Kép és szöveg nem változik.
========================================================= */

.video-page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 !important;
}

.video-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.video-page-kicker {
  display: block !important;
  width: fit-content;
  margin: 0 auto 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
}

.video-page-title {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: center;
}

.video-page-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.video-page-actions {
  margin-top: 36px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  width: 100%;
}

.video-page-actions .btn,
.video-page-actions a {
  width: auto !important;
  max-width: none !important;
  min-width: 220px;
  min-height: 50px;
  padding: 0 34px !important;
  border-radius: 0 !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-page-actions .btn-primary,
.video-page-actions .btn--primary,
.video-page-actions a:first-child {
  background: var(--primary-gold) !important;
  color: #000 !important;
  border-color: var(--primary-gold) !important;
}

.video-page-actions .btn-outline,
.video-page-actions .btn--outline,
.video-page-actions .btn-secondary,
.video-page-actions a:last-child {
  background: rgba(0, 0, 0, 0.34) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.22) !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .video-page-hero {
    min-height: auto;
    padding: 130px 0 80px !important;
  }

  .video-page-hero__content {
    max-width: 100% !important;
  }

  .video-page-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .video-page-title {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    margin-bottom: 18px;
  }

  .video-page-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .video-page-actions {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
  }

  .video-page-actions .btn,
  .video-page-actions a {
    width: 100% !important;
    max-width: 320px !important;
    min-width: 0;
    min-height: 48px;
    padding: 0 22px !important;
  }
}

@media (max-width: 480px) {
  .video-page-hero {
    padding: 115px 0 64px !important;
  }

  .video-page-title {
    font-size: 2rem;
  }

  .video-page-lead {
    font-size: 0.94rem;
  }
}

/* =========================================================
   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;
  }
}
