.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
 overflow: visible;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 0 50px;

  background: rgba(0, 0, 0, 0,8);
  backdrop-filter: blur(6px);

  z-index: 1000;
  transition: all 0.4s cubic-bezier(.22,.61,.36,1);
  will-change: height, background;
}
/* BAL OLDALI BRAND BLOKK */

.brand-box {
  display: flex;
  align-items: center;
  gap: 22px;

  padding: 12px 28px;

  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;

  overflow: visible;
}

.monogram {
  font-family: 'Allura', cursive;
  font-size: 66px;
  font-weight: 400;

  display: inline-block;

  line-height: 1.2;
  letter-spacing: 2px;

  padding-right: 14px;
  padding-left: 4px;

  background: linear-gradient(45deg, #b8902f, #ffd77a, #b8902f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transform: translateY(3px);
}


/* Név */

.brand-text .name {
  font-size: 22px;
  letter-spacing: 4px;
  color: #d4af37;
  font-weight: 500;

   background: linear-gradient(45deg, #b8902f, #ffd77a, #b8902f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fotográfus */

.brand-text .title {
  font-size: 18px;
  letter-spacing: 3px;
  color: rgba(212, 175, 55, 0.8);
  text-transform: lowercase;
   background: linear-gradient(45deg, #b8902f, #ffd77a, #b8902f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MENÜ */

.nav-left {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.nav-right {
  display: flex;
}

.nav-left a,
.nav-right a {
  text-decoration: none;

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

  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;

  position: relative;
  padding-bottom: 6px;

  transition: all 0.35s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #d4af37;

  text-shadow: 0 0 6px rgba(212,175,55,0.4);
}
.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0%;
  height: 2px;

  background: linear-gradient(
    90deg,
    #b8902f,
    #ffd77a,
    #b8902f
  );

  transition: 0.4s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

.nav-left a.active {
  color: #d4af37;
}

.nav-left a.active::after {
  width: 100%;
}


body {
  font-family: 'Montserrat', sans-serif;
}

.brand-box {
  overflow: visible;
}

.monogram-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;

  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transition: 0.6s ease;
}

.monogram-wrapper:hover::after {
  left: 150%;
}

.monogram-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.monogram-logo {
  height: 86px;
  width: auto;

  display: block;
  object-fit: contain;

  transition: all 0.4s ease;

  transform-origin: center center;
  transform: translateY(1px);
}

.monogram-logo:hover {
  transform: scale(1.05) translateY(6px);

  
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
}

..main-header {
  overflow: visible;
}

.custom-dropdown {
  position: relative;
  padding-bottom: 25px;
}

.custom-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 25px;
}
.custom-dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;

  min-width: 200px;

  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);

  border-radius: 12px;
  padding: 10px 0;

  opacity: 0;
  pointer-events: none;

  transform: translateY(10px);

  transition: opacity 0.18s ease-out, transform 0.25s cubic-bezier(.22,.61,.36,1);

  box-shadow: 0 10px 30px rgba(0,0,0,0.6);

  z-index: 9999;
}

.custom-dropdown-menu a {
  display: block;
  width: 100%;

  padding: 10px 22px;

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

  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;

  white-space: nowrap;
}

.custom-dropdown-menu a:hover {
  color: #d4af37;
  background: rgba(255,255,255,0.06);
}

.custom-dropdown:hover .custom-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.main-header.shrink {
  height: 75px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

/* Brand blokk kisebb */

.main-header.shrink .brand-box {
  padding: 6px 20px;
}

/* Logó kisebb */

.main-header.shrink .monogram-logo {
  height: 62px;
}

/* Szövegek finom shrink */

.main-header.shrink .brand-text .name {
  font-size: 18px;
}

.main-header.shrink .brand-text .title {
  font-size: 14px;
}

/* Menü shrink */

.main-header.shrink .nav-left a,
.main-header.shrink .nav-right a {
  font-size: 15px;
}


.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ikon alap állapot */

.contact-btn i {
  font-size: 16px;
  opacity: 0.8;

  transition: all 0.35s ease;
}

/* hover effekt */

.contact-btn:hover i {
  color: #d4af37;
  opacity: 1;

  transform: translateX(3px);

  filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}

.contact-btn:hover {
  letter-spacing: 4px;
}

.hero-image-full {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section {
  background: #000;
  padding: 0 20px 120px;
}

.about-card {
  max-width: 900px;
  margin: -120px auto 0;

  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);

  padding: 60px 70px;
  border-radius: 20px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.about-card .intro {
  font-size: 20px;
  line-height: 1.8;
  color: #d4af37;
  margin-bottom: 20px;
}

.about-card p {
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

.signature-section {
  background: #000;
  padding-bottom: 120px;
}

.signature-box {
  max-width: 900px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 50px;

  border-top: 1px solid rgba(212,175,55,0.25);
}

.sig-name {
  font-size: 22px;
  letter-spacing: 5px;

  background: linear-gradient(45deg,#b8902f,#ffd77a,#b8902f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sig-title {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(212,175,55,0.7);
}

/* SIGNATURE BUTTONS */

.signature-buttons {
  display: flex;
  gap: 20px;
}

/* GOLD BUTTON */

.btn-gold {
  padding: 14px 36px;
  border-radius: 40px;

  background: linear-gradient(45deg,#b8902f,#ffd77a,#b8902f);

  color: #000;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;

  transition: all 0.35s ease;

  box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

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

  box-shadow:
    0 0 20px rgba(212,175,55,0.6),
    0 10px 30px rgba(0,0,0,0.6);
}

/* OUTLINE BUTTON */

.btn-outline {
  padding: 14px 36px;
  border-radius: 40px;

  border: 1px solid rgba(212,175,55,0.6);

  color: #d4af37;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;

  background: transparent;

  transition: all 0.35s ease;
}

.btn-outline:hover {
  background: rgba(212,175,55,0.08);

  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.signature-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* IMAGE FRAME */

.signature-image {
  width: 80px;
  height: 80px;

  border-radius: 16px;

  padding: 3px;

  background: linear-gradient(45deg,#b8902f,#ffd77a,#b8902f);

  display: flex;
  align-items: center;
  justify-content: center;
}

.signature-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 50%;
}

/* Hover micro effect */

.signature-image:hover {
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.main-footer {
  background: #0b0b0b;

  padding: 40px 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-top: 1px solid rgba(212,175,55,0.15);
}

/* SOCIAL LINK */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

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

  font-size: 14px;
  letter-spacing: 2px;

  transition: all 0.3s ease;
}

/* ICON */

.footer-social i {
  font-size: 18px;

  color: #d4af37;

  transition: all 0.3s ease;
}

/* HOVER */

.footer-social:hover {
  color: #d4af37;
}

.footer-social:hover i {
  transform: scale(1.1);

  filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

.gallery-hero {
  padding: 180px 20px 130px;

  text-align: center;

  background: radial-gradient(circle at top, #111, #000);
}

.gallery-hero-inner {
  max-width: 800px;
  margin: auto;
}

/* CÍM */

.gallery-hero h1 {
  font-size: 64px;
  letter-spacing: 8px;

  background: linear-gradient(45deg,#b8902f,#ffd77a,#b8902f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 25px;
}

/* ARANY VONAL */

.hero-line {
  width: 120px;
  height: 2px;

  margin: 0 auto 30px;

  background: linear-gradient(90deg,#b8902f,#ffd77a,#b8902f);
}

/* ALÁÍRÁS */

.gallery-hero p {
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  font-size: 15px;
}



.gallery-cards {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;

  padding-bottom: 120px;
}

/* CARD */

.gallery-card.vertical {
  display: flex;
  flex-direction: column;

  text-decoration: none;

 background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,55,0.12);

  overflow: hidden;

  transition: all 0.4s ease;

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* IMAGE */

.gallery-card.vertical .card-image {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;

  position: relative;
}

.gallery-card.vertical img {s
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

/* GOLD FRAME */

.gallery-card.vertical .card-image::after {
  content: "";
  position: absolute;

  inset: 10px;

  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 12px;

  pointer-events: none;
}

/* CONTENT */

.gallery-card.vertical .card-content {
  padding: 30px;
}

.gallery-card.vertical h2 {
  font-size: 26px;

  letter-spacing: 4px;

  color: #d4af37;
}

.gallery-card.vertical p {
  margin-top: 12px;
font-weight: bold;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 15px;
}

/* HOVER */

.gallery-card.vertical:hover {
  transform: translateY(-10px);
}

.gallery-card.vertical:hover img {
  transform: scale(1.08);
}

.portrait-series {
  background: #000;
  padding: 0 20px 140px;
}

.portrait-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* CARD */

.portrait-card {
  text-decoration: none;
  color: inherit;

  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  overflow: hidden;

  transition: all 0.4s ease;

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* IMAGE */

.portrait-image {
  position: relative;
  height: 520px;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.6s ease;
}

/* GOLD FRAME */

.portrait-image::after {
  content: "";
  position: absolute;
  inset: 14px;

  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 16px;

  pointer-events: none;
}

/* INFO */

.portrait-info {
  padding: 28px;
}

.portrait-info h2 {
  font-size: 22px;
  letter-spacing: 4px;

  color: #d4af37;
}

.portrait-info span {
  display: block;
  margin-top: 8px;

  font-size: 14px;
  letter-spacing: 2px;

  color: rgba(255,255,255,0.6);
}

/* HOVER */

.portrait-card:hover {
  transform: translateY(-10px);
}

.portrait-card:hover img {
  transform: scale(1.06);
}

.portrait-page {
  min-height: 100vh;
  padding: 160px 20px 120px;
  background: #0b0b0b;
  color: #fff;
}

/* fejléc */

.portrait-header {
  text-align: center;
  margin-bottom: 80px;
}

.portrait-header h1 {
  font-size: 56px;
  letter-spacing: 3px;
  font-weight: 300;
}

.portrait-header p {
  color: rgba(255,255,255,0.6);
  margin-top: 15px;
}

/* galéria */

.portrait-view {
  text-align: center;
}

.portrait-main {
  max-width: 900px;
  margin: auto;
}

.portrait-main img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;

  box-shadow: 0 40px 90px rgba(0,0,0,0.9);
  transition: opacity 0.4s ease;
}

/* navigáció */

.portrait-controls {
  margin-top: 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;

  color: rgba(255,255,255,0.6);
}

.portrait-controls button {
  background: none;
  border: none;
  font-size: 38px;
  color: #d4af37;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portrait-controls button:hover {
  transform: scale(1.2);
}

/* vissza link */

.back-link {
  display: block;
  margin-top: 80px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.back-link:hover {
  color: #d4af37;
}

.portrait-gallery {
  background: #f6f2e9; /* vajszín */
  padding: 160px 80px;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 300px;
  gap: 40px;
}

.portrait-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(212,175,55,0.45);
  padding: 8px;
}

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

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

.portrait-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.lightbox-controls {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  color: #d4af37;
}

.lightbox button {
  background: none;
  border: none;
  font-size: 36px;
  color: #d4af37;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 42px;
  color: #d4af37;
  cursor: pointer;
}

.portrait-gallery.portrait-only .portrait-grid {
  grid-auto-rows: 360px;
}

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

.portrait-gallery.square-only .portrait-grid {
  grid-auto-rows: 260px;
}

.portrait-gallery.square-only .portrait-item.tall {
  grid-row: span 1;
}

.portrait-only .portrait-item img {
  object-position: center top;
}

/* TERMÉK / NÉGYZETES GALÉRIA */

.gallery-square .portrait-grid {
  grid-auto-rows: 260px;
}

.gallery-square .portrait-item.tall {
  grid-row: span 1; /* tiltjuk a magas elemeket */
}

/* BRAND LINK */
.brand-link {
  text-decoration: none;
  display: inline-block;
}

/* ne legyen aláhúzás/hover "linkes" */
.brand-link:hover .name,
.brand-link:hover .title {
  text-decoration: none;
}
.brand-anim{
  position: relative;
  display: inline-block;
  line-height: 1.25;         /* kicsit nagyobb sormagasság */
  padding-bottom: 2px;      /* adunk levegőt alul */

  background: linear-gradient(90deg, #b8902f, #ffd77a, #b8902f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FÉNYCSÍK RÉTEG */
.brand-anim::after{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.55) 45%,
    transparent 60%
  );

  transform: translateX(-140%);
  animation: brandSweep 3.8s ease-in-out infinite;

  /* a trükk: csak a szövegen látszódjon */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  pointer-events: none;
}

@keyframes brandSweep{
  0%   { transform: translateX(-140%); }
  45%  { transform: translateX(140%); }
  100% { transform: translateX(140%); }
}


.brand-link {
  color: inherit;
}

.brand-link {
  display: block;         /* inline-block helyett */
  line-height: 1;         /* ne legyen extra sormagasság */
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-link,
.brand-link:hover,
.brand-link:focus,
.brand-link:active,
.brand-link:visited {
  text-decoration: none;
  color: inherit;
}


/* HERO BANNER A GALÉRIA OLDALRA */

.gallery-hero-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.gallery-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),   /* fent világosabb */
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75)    /* alul marad sötétebb */
  );
}

.gallery-hero-banner .gallery-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  transform: translateY(-220px);  /* feljebb 30px */
}
.gallery-cards {
  margin-top: -480px;       /* felúszik a hero alá */
  position: relative;
  z-index: 3;

  padding: 0 20px 120px;   /* oldalsó levegő + bottom */
}

body {
  background: #000;
}

.gallery-card.vertical .card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(0,0,0,0.35));
  pointer-events: none;
}


/* FIX: card képek kerekítése és egységes render */
.gallery-card.vertical { border-radius: 20px; }

.gallery-card.vertical .card-image {
  border-radius: 18px;
  overflow: hidden;
}

.gallery-card.vertical .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  display: block;
}

/* FIX: hero overlay rendesen fedjen */
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75)
  );
}
