/* ===== COMMON ===== */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  position: relative;
  padding: 100px 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

p {
  line-height: 1.75;
  color: var(--text-soft, rgba(255, 255, 255, 0.78));
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.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;
}

.section-tag,
.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  color: var(--primary-gold, #d4a017);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
  color: #fff;
}

.section-heading p {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary-gold, #d4a017);
  color: #111;
  border: 1px solid var(--primary-gold, #d4a017);
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(212, 160, 23, 0.25);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-outline:hover {
  border-color: rgba(212, 160, 23, 0.4);
  color: var(--primary-gold, #d4a017);
}

.btn-full {
  width: 100%;
}

/* ===== HERO ===== */
.videoedit-hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 160, 23, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at right center,
      rgba(212, 160, 23, 0.08),
      transparent 28%
    ),
    linear-gradient(rgba(0,0,0,0), rgba(8,8,8,0)),
}

.videoedit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0), rgba(8,8,8,0)),
    url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  z-index: -2;
}

.videoedit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(212, 160, 23, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 255, 255, 0.04),
      transparent 24%
    );
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 820px;
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 22px;
  color: #fff;
  line-height: 1.08;
}

.hero-lead {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft, rgba(255, 255, 255, 0.82));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ===== INTRO ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.intro-text h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
  color: #fff;
}

.intro-text p + p {
  margin-top: 16px;
}

.intro-card {
  padding: 32px;
}

.intro-card h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
  color: #fff;
}

.intro-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.intro-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft, rgba(255, 255, 255, 0.78));
  line-height: 1.65;
}

.intro-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-gold, #d4a017);
  box-shadow: 0 0 16px rgba(212, 160, 23, 0.45);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ===== VIDEO ===== */
.video-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.video-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
  color: #fff;
}

.video-embed {
  padding: 16px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== DETAILS ===== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.detail-card {
  padding: 28px;
}

.detail-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.24);
  color: var(--primary-gold, #d4a017);
  font-weight: 800;
}

.detail-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.35rem;
}

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

.price-card {
  padding: 34px 28px;
  position: relative;
}

.price-card.featured {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.32);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.34);
}

.price-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--primary-gold, #d4a017);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.price {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold, #d4a017);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft, rgba(255, 255, 255, 0.8));
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary-gold, #d4a017);
  font-size: 1.1rem;
}

/* ===== CTA ===== */
.cta-section {
  padding-top: 40px;
  padding-bottom: 120px;
}

.cta-card {
  padding: 50px 36px;
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
  color: #fff;
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/*Footer*/
.footer {
  background: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid var(--glass-border);
}

.footer .container.footer__content {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.footer__brand {
  justify-self: start;
}

.footer__brand h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.footer__brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 28px;
  flex-wrap: nowrap;
  margin: 0;
  transform: translateX(40px);
}

.footer__links a {
  white-space: nowrap;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 15px;
}

.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.3);
}

.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;
}

/* ===== RESPONSIVE ===== */
/* ===== LAPTOP ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
  .intro-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

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

}

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

  .videoedit-hero {
    padding: 150px 0 100px;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
}

/* ===== TELEFON ===== */
@media (min-width: 481px) and (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .videoedit-hero {
    padding: 140px 0 90px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

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

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .intro-card,
  .detail-card,
  .price-card,
  .cta-card {
    padding: 24px;
  }

  .section-heading h2,
  .intro-text h2,
  .video-copy h2,
  .cta-card h2 {
    font-size: 2rem;
  }
 
}

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

  section {
    padding: 60px 0;
  }

  .videoedit-hero {
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-lead,
  .section-heading p,
  .intro-card li,
  .price-card li,
  .cta-card p {
    font-size: 0.95rem;
  }

  .intro-card,
  .detail-card,
  .price-card,
  .cta-card {
    padding: 20px 18px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

 
}

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

  section {
    padding: 110px 0;
  }

  .videoedit-hero {
    padding: 170px 0 110px;
  }

  .intro-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .video-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

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

}


/* =========================================================
   VIDEÓ VÁGÁS OLDAL - RESPONSIVE OVERRIDE
   Mobil / tablet javítás
========================================================= */

/* ===== Tablet + mobil közös ===== */
@media (max-width: 1023px) {
  .container {
    width: calc(100% - 28px);
  }

  section {
    padding: 72px 0;
  }

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

  .intro-grid,
  .video-grid {
    gap: 34px;
  }

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

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

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

  .section-heading {
    max-width: 100%;
    margin-bottom: 38px;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .video-grid {
    align-items: start;
  }

  .video-embed {
    width: 100%;
  }

  .footer__links {
    transform: none;
  }
}

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

  section {
    padding: 60px 0;
  }

  .videoedit-hero {
    padding: 125px 0 76px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .section-tag,
  .hero-kicker,
  .price-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 7px 12px;
  }

  .hero-actions,
  .cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .btn-full {
    width: 100%;
  }

  .section-heading.center,
  .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .intro-text h2,
  .video-copy h2,
  .cta-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .section-heading p,
  .intro-text p,
  .video-copy p,
  .intro-card li,
  .detail-card p,
  .price-card li,
  .cta-card p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .intro-card,
  .detail-card,
  .price-card,
  .cta-card,
  .video-embed {
    padding: 22px;
    border-radius: 20px;
  }

  .intro-card h3 {
    font-size: 1.35rem;
  }

  .detail-card h3 {
    font-size: 1.25rem;
  }

  .price-card h3 {
    font-size: 1.45rem;
  }

  .price {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .detail-number {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 13px;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-item {
    border-radius: 18px;
  }

  .gallery-item img {
    height: 260px;
  }

  .video-embed {
    padding: 12px;
  }

  .video-wrapper {
    border-radius: 16px;
  }

  .cta-section {
    padding-top: 30px;
    padding-bottom: 78px;
  }

  .footer {
    padding: 44px 0 18px;
  }

  .footer .container.footer__content {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
    margin-bottom: 30px;
  }

  .footer__brand,
  .footer__links,
  .footer__social {
    justify-self: center;
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .footer__social {
    justify-content: center;
  }
}

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

  section {
    padding: 48px 0;
  }

  .videoedit-hero {
    padding: 110px 0 62px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .btn {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .intro-text h2,
  .video-copy h2,
  .cta-card h2 {
    font-size: 1.65rem;
  }

  .section-tag,
  .hero-kicker,
  .price-label {
    font-size: 0.68rem;
    letter-spacing: 0.045em;
    padding: 6px 10px;
  }

  .section-heading p,
  .intro-text p,
  .video-copy p,
  .intro-card li,
  .detail-card p,
  .price-card li,
  .cta-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .intro-card,
  .detail-card,
  .price-card,
  .cta-card {
    padding: 19px 16px;
    border-radius: 18px;
  }

  .video-embed {
    padding: 10px;
    border-radius: 18px;
  }

  .intro-card li {
    padding-left: 21px;
  }

  .intro-card li::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }

  .detail-number {
    width: 44px;
    height: 44px;
    font-size: 0.88rem;
  }

  .detail-card h3 {
    font-size: 1.18rem;
  }

  .price-card h3 {
    font-size: 1.28rem;
  }

  .price {
    font-size: 1.45rem;
  }

  .price-card ul {
    gap: 10px;
    margin-bottom: 22px;
  }

  .gallery-item img {
    height: 220px;
  }

  .cta-section {
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .footer__brand h3 {
    font-size: 1.3rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 12px;
  }

  .footer__bottom p {
    font-size: 0.78rem;
  }
}

@media (max-width: 1023px) {
  .intro-grid,
  .video-grid,
  .details-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

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

.videoedit-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.videoedit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.38));
  z-index: -1;
  pointer-events: none;
}

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

.videoedit-hero .hero-kicker {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 18px;
  font-weight: 700;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

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

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

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

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

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

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

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

  .videoedit-hero .hero-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

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

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

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

  .videoedit-hero .hero-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;
  }
}

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