img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-muted);
}

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

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

.subpage-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0), rgba(8, 8, 8, 0)),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}

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

.logo span {
  color: var(--primary-gold);
}

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

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

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

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

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

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

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

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

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

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

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

.intro-card img {
  border-radius: var(--radius);
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-contact-action {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.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: var(--shadow);
}

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

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

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

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

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

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

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

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

.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: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

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

.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 / kisebb asztali */
/* ===== LAPTOP ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

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

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

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

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

  .intro-card img {
    min-height: 420px;
  }

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

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

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

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

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

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

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

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

  .intro-card img {
    min-height: 360px;
  }

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

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

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

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

  .section {
    padding: 60px 0;
  }

  .section-head.center {
    margin: 0 auto 36px;
  }

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

  .subpage-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 16px;
  }

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

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

  .btn,
  .btn-block {
    width: 100%;
  }

  .intro-text h2,
  .video-text h2,
  .cta-box h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

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

  .price-top h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.7rem;
  }

  .gallery-item.large,
  .gallery-item img,
  .gallery-item.large img,
  .intro-card img {
    min-height: 260px;
  }

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

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

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

  .section {
    padding: 48px 0;
  }

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

  .hero-lead,
  .section-head p,
  .intro-text p,
  .video-text p,
  .detail-card p,
  .cta-box p,
  .price-card li {
    font-size: 0.95rem;
  }

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

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

  .gallery-item.large,
  .gallery-item img,
  .gallery-item.large img,
  .intro-card img {
    min-height: 220px;
  }

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

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

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

  .detail-grid,
  .pricing-grid {
    gap: 28px;
  }

  .gallery-grid {
    gap: 22px;
  }

  .video-box iframe {
    height: 480px;
  }
}

/* =========================================================
   RESPONSIVE FIX - Fotózás szervezés aloldal
   Mobilon minden fő blokk egymás alatt, szépen tördelve
========================================================= */

/* ===== Tablet és mobil közös ===== */
@media (max-width: 1023px) {
  .intro-grid,
  .video-grid,
  .detail-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid {
    gap: 16px;
  }

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

  .intro-card {
    order: -1;
  }

  .intro-card img {
    width: 100%;
    min-height: 320px;
    max-height: 460px;
    object-fit: cover;
  }

  .gallery-item.large {
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-item img,
  .gallery-item.large img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
  }

  .video-box iframe {
    width: 100%;
    height: 340px;
  }
}

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

  .section {
    padding: 58px 0;
  }

  .subpage-hero {
    min-height: auto;
    padding: 130px 0 80px;
    text-align: center;
  }

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

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

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

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

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

  .btn,
  .btn-block {
    width: 100%;
  }

  .section-head.center {
    margin-bottom: 34px;
  }

  .section-head h2,
  .intro-text h2,
  .video-text h2,
  .cta-box h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

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

  .check-list {
    gap: 10px;
    padding-left: 0;
  }

  .check-list li {
    line-height: 1.55;
  }

  .detail-card,
  .price-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

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

  .price-top h3 {
    font-size: 1.55rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .badge {
    top: 14px;
    right: 14px;
  }

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

  .gallery-item,
  .gallery-item.large {
    min-height: auto;
    border-radius: 16px;
  }

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

  .intro-card img {
    min-height: 280px;
    height: 320px;
    border-radius: 18px;
  }

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

  .cta-box {
    padding: 36px 22px;
    border-radius: 22px;
  }
}

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

  .section {
    padding: 46px 0;
  }

  .subpage-hero {
    padding: 115px 0 64px;
  }

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

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

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

  .section-head.center {
    margin-bottom: 28px;
  }

  .section-head h2,
  .intro-text h2,
  .video-text h2,
  .cta-box h2 {
    font-size: 1.7rem;
  }

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

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

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

  .intro-card img {
    height: 240px;
    min-height: 240px;
  }

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

  .price {
    font-size: 1.55rem;
  }
}

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

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

/* =========================================================
   FEATURED PROJECT - 1 db prémium referencia kártya
========================================================= */

/* ongoing projects*/

.ongoing-projects {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top, rgba(212, 160, 23, 0.08), transparent 30%),
    linear-gradient(180deg, #08090c 0%, #0d0f14 100%);
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4a017;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #fff;
}

.section-lead {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.ongoing-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.project-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  background: #121212;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.48);
  border-color: rgba(212, 160, 23, 0.28);
}

.project-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.7s ease;
  z-index: -3;
}

.project-card:hover .project-card__bg {
  transform: scale(1.07);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    to top,
    rgba(5, 6, 8, 0.92) 10%,
    rgba(5, 6, 8, 0.42) 55%,
    rgba(5, 6, 8, 0.2) 100%
  );
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), transparent 38%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card__content {
  position: relative;
  width: 100%;
  color: #fff;
}

.project-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3d48a;
  background: rgba(212, 160, 23, 0.14);
  border: 1px solid rgba(212, 160, 23, 0.22);
  backdrop-filter: blur(8px);
}

.project-card__title {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.15;
  color: #fff;
}

.project-card__text {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 95%;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d4a017;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.project-card__link::after {
  content: "→";
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.project-card:hover .project-card__link {
  transform: translateX(4px);
  color: #f0c35a;
}

.project-card:hover .project-card__link::after {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .ongoing-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ongoing-projects {
    padding: 90px 0;
  }

  .ongoing-projects__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-card {
    min-height: 380px;
    padding: 24px;
  }

  .project-card__title {
    font-size: 1.5rem;
  }

  .project-card__text {
    font-size: 0.96rem;
  }
}

/* =========================================================
   REFERENCIA GLAMOUR FOTÓZÁS OLDAL
========================================================= */

.reference-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: url("../assets/referenciak/glamour-fotozas/hero.jpg") center /
    cover no-repeat;
  overflow: hidden;
}

.reference-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.94)
    ),
    radial-gradient(
      circle at 50% 30%,
      rgba(212, 160, 23, 0.18),
      transparent 42%
    );
  z-index: 1;
}

.reference-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
}

.reference-hero-content h1 {
  margin: 14px 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.04;
  color: #fff;
}

.reference-hero-content p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.reference-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.reference-intro-text h2,
.reference-story-box h2,
.reference-studio-box h2 {
  margin: 12px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #fff;
}

.reference-intro-text p,
.reference-story-box p,
.reference-studio-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.reference-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  color: #f4c542;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.24);
  font-size: 0.85rem;
  font-weight: 700;
}

.reference-intro-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.reference-intro-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.reference-video-box {
  padding: 16px;
  border-radius: 28px;
}

.reference-video-box iframe {
  width: 100%;
  height: 560px;
  display: block;
  border-radius: 20px;
  background: #080808;
}

.reference-story-box {
  max-width: 900px;
  padding: 52px;
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.02)
    ),
    radial-gradient(
      circle at top left,
      rgba(212, 160, 23, 0.12),
      transparent 38%
    );
  border: 1px solid rgba(212, 160, 23, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.reference-story-box .btn {
  margin-top: 16px;
}

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

.reference-gallery-grid a {
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.18);
  background: #111;
}

.reference-gallery-grid a:first-child {
  grid-row: span 2;
  min-height: 580px;
}

.reference-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.reference-gallery-grid a:hover img {
  transform: scale(1.06);
  filter: brightness(0.76);
}

.reference-studio-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px;
  border-radius: 30px;
  border-color: rgba(212, 160, 23, 0.22);
}

.reference-studio-box p {
  max-width: 620px;
  margin-bottom: 0;
}

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

  .reference-gallery-grid a:first-child {
    grid-row: auto;
    min-height: 320px;
  }

  .reference-gallery-grid a,
  .reference-gallery-grid img {
    min-height: 300px;
  }

  .reference-video-box iframe {
    height: 420px;
  }

  .reference-studio-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .reference-hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .reference-hero-content p {
    font-size: 0.98rem;
  }

  .reference-intro-card img {
    height: 340px;
  }

  .reference-story-box,
  .reference-studio-box {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .reference-video-box iframe {
    height: 280px;
  }

  .reference-gallery-grid a,
  .reference-gallery-grid img,
  .reference-gallery-grid a:first-child {
    min-height: 260px;
  }
}

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

  .reference-video-box {
    padding: 10px;
  }

  .reference-video-box iframe {
    height: 220px;
    border-radius: 16px;
  }

  .reference-intro-card img {
    height: 260px;
  }

  .reference-gallery-grid a,
  .reference-gallery-grid img,
  .reference-gallery-grid a:first-child {
    min-height: 220px;
  }
}

/* =========================================================
   GALLERY LIGHTBOX
========================================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 80px 90px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(212, 160, 23, 0.28);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.75);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 34px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 160, 23, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #f4c542;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.lightbox-close:hover {
  background: #f4c542;
  color: #050505;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translateY(-50%);
  border: 1px solid rgba(212, 160, 23, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #f4c542;
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.lightbox-arrow:hover {
  background: #f4c542;
  color: #050505;
}

.lightbox-arrow-left {
  left: 34px;
}

.lightbox-arrow-right {
  right: 34px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-lightbox {
    padding: 70px 18px;
  }

  .gallery-lightbox img {
    max-height: 76vh;
    border-radius: 16px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 2.4rem;
    background: rgba(0, 0, 0, 0.72);
  }

  .lightbox-arrow-left {
    left: 12px;
  }

  .lightbox-arrow-right {
    right: 12px;
  }
}

/* =========================================================
   REFERENCE STORY BACKGROUND + OVERLAY
========================================================= */

.reference-story-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.reference-story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.70) 50%,
      rgba(0, 0, 0, 0.80) 100%
    ),
    radial-gradient(
      circle at 30% 20%,
      rgba(212, 160, 23, 0.13),
      transparent 36%
    );
}

.reference-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.reference-story-box {
  padding: 52px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(212, 160, 23, 0.24);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.reference-story-box h2 {
  margin: 12px 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #fff;
}

.reference-story-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.reference-story-box .section-kicker:not(:first-child) {
  margin-top: 34px;
}

.reference-story-box .btn {
  margin-top: 18px;
}

@media (max-width: 768px) {
  .reference-story-bg {
    background-attachment: scroll;
  }

  .reference-story-box {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .reference-story-box p {
    font-size: 0.96rem;
  }
}

@media (max-width: 480px) {
  .reference-story-box {
    padding: 28px 20px;
  }
}
