/* =========================
   STÚDIÓMUNKA OLDAL
   Breakpoints:
   Mobile: 0 - 768px
   Tablet: 769px - 992px
   Laptop: 993px - 1200px
   PC: 1201px+
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary-gold);
  color: #000;
  box-shadow: 0 10px 30px var(--primary-gold-glow);
}

.btn-primary:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.192);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-block {
  width: 100%;
}

/* ===== HERO ===== */
.studio-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 90px;
  background: 
      linear-gradient(rgba(0,0,0,0), rgba(8,8,8,0)),
      url("https://images.unsplash.com/photo-1524253482453-3fed8d2fe12b?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
}

.studio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.92)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-kicker {
  margin-bottom: 16px;
}

.studio-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== COMMON ===== */
.studio-intro,
.studio-gallery,
.studio-video,
.studio-pricing {
  position: relative;
}

.studio-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.studio-list {
  margin-top: 24px;
  padding-left: 20px;
}

.studio-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.studio-image img,
.studio-gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== INTRO GRID ===== */
.studio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.studio-image img {
  border-radius: 16px;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ===== GALLERY ===== */
.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.studio-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
}

/* ===== VIDEO SECTION ===== */
.studio-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.studio-video-grid p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.video-wrapper {
  width: 100%;
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

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

.price-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 32px 26px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  height: 100%;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0 22px;
  color: var(--primary-gold);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.price-card li {
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.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;
}
/* =========================
   PC - 1200px felett
========================= */
@media (min-width: 1200px) {
  .studio-hero {
    padding: 150px 0 100px;
  }

  .hero-content {
    max-width: 920px;
  }

  .studio-grid,
  .studio-video-grid {
    gap: 70px;
  }

  .studio-gallery-grid {
    gap: 24px;
  }

  .pricing-grid {
    gap: 32px;
  }
}

/* =========================
   LAPTOP - 1024px - 1199px
========================= */
@media (min-width: 1024px) and (max-width: 1199px) {
  .studio-hero {
    padding: 140px 0 90px;
  }

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

  .studio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .studio-video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .studio-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

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

  .price-card {
    padding: 28px 22px;
  }

  .video-wrapper iframe {
    height: 320px;
  }
}

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

  .hero-content {
    max-width: 720px;
  }

  .studio-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 34px;
  }

  .studio-grid,
  .studio-video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .studio-text,
  .studio-video-grid > div:first-child {
    text-align: left;
  }

  .studio-image img {
    min-height: auto;
    max-height: 480px;
  }

  .studio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .video-wrapper iframe {
    height: 360px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 620px;
    margin: 0 auto;
  }

  .price-card {
    padding: 30px 24px;
  }
}

/* =========================
   MOBILE - 0px - 768px
========================= */
@media (max-width: 768px) {
  .studio-hero {
    min-height: auto;
    padding: 120px 0 70px;
    background-position: center center;
  }

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

  .studio-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0 auto 28px;
  }

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

  .hero-actions .btn,
  .hero-actions a {
    width: 100%;
    max-width: 320px;
  }

  .studio-grid,
  .studio-video-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .studio-text {
    text-align: left;
  }

  .studio-text h2,
  .studio-video h2,
  .studio-pricing h2,
  .studio-gallery h2 {
    line-height: 1.2;
  }

  .studio-image img {
    min-height: auto;
    max-height: 360px;
    border-radius: 14px;
  }

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

  .studio-gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .video-wrapper iframe {
    height: 220px;
    border-radius: 12px;
  }

  .price-card {
    padding: 26px 20px;
    border-radius: 14px;
  }

  .price {
    font-size: 1.55rem;
  }

  .studio-list {
    padding-left: 18px;
  }
}

/* =========================
   EXTRA SMALL - nagyon kis mobil
========================= */
@media (max-width: 480px) {
  .studio-hero {
    padding: 110px 0 60px;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

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

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .studio-text p,
  .studio-video-grid p,
  .studio-list li,
  .price-card li {
    font-size: 0.95rem;
  }

  .video-wrapper iframe {
    height: 200px;
  }

  .price-card {
    padding: 24px 18px;
  }

  .price {
    font-size: 1.45rem;
  }
  .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.94rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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