* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #f0f0f0;
    line-height: 1.6;
  
  }
  h1, h2 {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  section {
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
  }


  .hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    
  }

  .site-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 40px 0;
    opacity: 0.3;
  }

  .hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    
  }
  
  .hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .hero-overlay img {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .hero-overlay h1 {
    font-size: 2.8rem;
    font-weight: 500;
    color: white;
  }
  
  .intro, .gallery, form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
   .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .gallery img:hover {
    transform: scale(1.03);
    opacity: 0.9;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input, textarea {
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
  }

  form input::placeholder,
  form textarea::placeholder {
    color: #666;
  }

  button {
    background-color: #ffffff10;
    color: #fff;
    border: 1px solid #444;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background-color: #ffffff20;
  }

  footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #888;
  }
  
  @media (max-width: 768px) {
    .hero-overlay h1 {
      font-size: 2rem;
    }
  
    .hero-overlay img {
      max-width: 80px;
    }
  
    .intro, .gallery, form {
      padding: 20px;
    }
  }
  
  #form-response {
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 10px;
    font-size: 1rem;
  }
  
  #form-response.show {
    opacity: 1;
  }
  
  #form-response.success {
    color: green;
  }
  
  #form-response.error {
    color: red;
  }
  

  .hero-logo {
    max-width: 200px;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeInZoom 0.7s ease-out forwards;
    mix-blend-mode: lighten;
    transition: opacity 0.5s ease, transform 0.3s ease;
  }

  .hero-logo-2 {
    max-width: 50px;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeInZoom 0.7s ease-out forwards;
    mix-blend-mode: lighten;
    transition: opacity 0.5s ease, transform 0.3s ease;
  }
  
  .hero-logo:hover {
    opacity: 1;
    transform: scale(2);
    
  }
  
  @keyframes logoFadeInZoom {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 0.85;
      transform: scale(2);
    }
  }
  
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 2200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .category-card {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .category-card img {
    width: 100%;
    height: 300px; /* ezt add hozzá vagy állítsd be */
    object-fit: cover; /* így nem torzul a kép */
    filter: brightness(0.6);
    transition: filter 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border-radius: 10px;
  }
  
  
  .category-card .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
  }
  
  .category-card .overlay span {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  }
  
  .category-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.4);
  }
  

  .gallery-section {
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .gallery-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.3;       
    padding: 0.5rem 0;       
    overflow: visible;        
  }
  .gallery-section:hover h2 {
    transform: scale(1.2);
  }
  
  
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery a {
    position: relative;
    border-radius: 8px;
    display: block;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .gallery a:hover img {
    transform: scale(1.05);
    opacity: 0.85;
  }

  .highlight-section {
    animation: highlightFade 2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: background-color 1s ease;
  }
  
  @keyframes highlightFade {
    0% {
      background-color: rgba(255, 255, 255, 0.15);
    }
    100% {
      background-color: transparent;
    }
  }
  
  .gallery-section.highlight-section {
    animation: highlightGlow 2s ease-in-out;
  }
  
  @keyframes highlightGlow {
    0% {
      background-color: rgba(255, 255, 255, 0.05);
    }
    50% {
      background-color: rgba(255, 255, 255, 0.1);
    }
    100% {
      background-color: transparent;
    }
  }
  
  .gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .gallery-section {
    flex: 1 1 calc(25% - 2rem); /* 4 elem egy sorban */
    min-width: 250px;
    padding: 2rem 1rem;
    border: none; /* ha nem kell alsó vonal */
  }

  html, body {
    overflow-x: hidden;
  }
  
  
  .back-button {
    margin: 20px;
    padding: 10px 15px;
    color:var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .back-button:hover {
    background-color: #004999;
  }


  .hidden-lightbox {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
  }
  

  .telefon {
    font-style: italic;
    color: #004999;
    text-underline-offset:calc(0);
  }

  .portrait-block {
  text-align: center;
  padding: 4rem 2rem;
}

.portrait-title {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #f0f0f0;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.portrait-image-wrapper {
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
  width: 220px;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.portrait-image {
  width: 100%;
  height: auto;
  display: block;
}

.escultura-portrait {
  text-align: center;
  padding: 4rem 2rem;
}

.escultura-image-container {
  position: relative;
  display: inline-block;
  max-width: 300px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.escultura-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.escultura-title {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
  mix-blend-mode: lighten;
}
/* Google Fonts hozzáadásához a <head> részbe: */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* Mobil reszponzivitás */
@media (max-width: 600px) {
  .escultura-title {
    font-size: 1.6rem;
    top: 6%;
  }

  .escultura-image-container {
    max-width: 220px;
  }
}

/* Animáció kulcsok */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* A cím kezdeti állapota */
.escultura-title {
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

.escultura-title.hidden {
  opacity: 0;
  transform: translate(-50%, 20px);
}

.escultura-title.show {
  animation: fadeUp 1.2s ease-out forwards;
}


.about-section {
  padding: 5rem 2rem;
  background-color: #0f0f0f;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap-reverse;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-image-wrapper {
  position: relative;
  flex: 1 1 500px;
  max-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}

.overlay-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  pointer-events: none;
  z-index: 2;
  text-transform: uppercase;
  mix-blend-mode: lighten;
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

/* Animáció */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Reszponzív mód */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
  }

  .overlay-title {
    font-size: 1.6rem;
    top: 6%;
  }

  .about-text p {
    text-align: center;
  }
}

/* Betűtípus import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');


.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
  flex-wrap: wrap;
}

.social-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-button.facebook {
  background-color: #1877f2;
}

.social-button.facebook:hover {
  background-color: #145dbf;
}

:root {
  --nav-height: 72px;
  --accent: #ffb400;
}

/* biztosítjuk, hogy a fixed nav ne takarja ki a tartalmat */
body {
  padding-top: var(--nav-height);
}

/* NAV alap */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9999;
  background: rgba(0,0,0,0.36);
  backdrop-filter: blur(8px);
  transition: background .25s ease, height .2s ease;
}

/* sötétebb háttér görgetéskor */
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
}

/* központosított belső konténer */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* logó balra */
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1.6px;
  flex: 0 0 auto;
}

/* MENÜ: GRID, jobbra igazítva, kitölti a felső sáv jobb részét */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 menüpont egyenlő szélességben */
  gap: 0;
  width: 60%;           /* jobbra foglalja a helyet; módosítható ha kell */
  margin-left: auto;    /* ez tolja jobbra a menüt, a logó marad balon */
  align-items: center;
}

/* minden menüpont középre igazítva a cellában */
.nav-menu li {
  text-align: center;
}

.nav-menu a {
  display: block;
  padding: 0.6rem 0;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color .18s ease, background .18s ease;
  user-select: none;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--accent);
  outline: none;
}

/* HAMBURGER (asztali rejtett) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}

/* hamburger rudak */
.bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: transform .25s ease, opacity .2s ease;
}

/* animált X effekt */
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  /* hamburger látható */
  .nav-toggle { display: flex; }

  /* a menü teljesen jobbról lenyíló panel lesz */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: rgba(0,0,0,0.98);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    transform: translateX(100%);
    transition: transform .28s ease;
    padding-top: 20px;
  }
  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    padding: 14px 22px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 1rem;
  }

  .nav-menu li { text-align: left; }

  /* nagyon kicsi képernyőn a menü szélessége korlátozva */
  @media (max-width: 420px) {
    .nav-menu { width: 100%; }
  }
}

.kicker
{color:var(--accent);text-transform:uppercase;font-weight:700;letter-spacing:2px;font-size:.85rem;}


/* Pricing layout */
    .container{max-width:1200px;margin:48px auto;padding:0 24px;}
    .kicker{color:var(--accent);text-transform:uppercase;font-weight:700;letter-spacing:2px;font-size:.85rem;}
    .lead{font-size:1.05rem;color:var(--muted);margin-top:6px}

    .pricing-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
      margin-top:28px;
    }

    .card{
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border:1px solid rgba(255,255,255,0.04);
      padding:28px;
      border-radius:14px;
      box-shadow: 0 6px 20px rgba(2,2,2,0.6);
      display:flex;
      flex-direction:column;
      min-height:360px;
    }

    .card .title{font-weight:700;font-size:1.1rem;margin-bottom:8px;}
    .card .price{font-weight:800;font-size:2rem;margin:8px 0;color:var(--accent);}
    .card ul{list-style:none;padding:0;margin:12px 0 18px 0;color:var(--muted);flex:1;}
    .card ul li{padding:8px 0;border-bottom:1px dashed rgba(255,255,255,0.03);}

    .card .cta{
      display:inline-block;
      padding:12px 18px;
      border-radius:10px;
      background:linear-gradient(90deg,var(--accent), #ff9e25);
      color:#111;
      font-weight:700;
      text-decoration:none;
      text-align:center;
      box-shadow:0 6px 18px rgba(255,180,64,0.12);
    }

    .card.recommended{
      transform:scale(1.03);
      border:1px solid rgba(255,180,64,0.18);
    }

    /* Notes and FAQ */
    .notes{margin-top:28px;color:var(--muted);font-size:.95rem;}
    .faq{margin-top:28px;display:grid;gap:14px;}
    .faq-item{background:var(--glass);padding:14px;border-radius:10px;border:1px solid rgba(255,255,255,0.02);}
    .faq-item h4{margin:0 0 6px 0;}
    .faq-item p{margin:0;color:var(--muted);font-size:.95rem;}

    /* small gallery strip */
    .strip{display:flex;gap:12px;margin-top:30px;overflow:hidden;}
    .strip img{width:130px;height:80px;object-fit:cover;border-radius:8px;border:1px solid rgba(255,255,255,0.03);cursor:pointer;}

    footer{margin:48px 0 80px 0;color:var(--muted);text-align:center;font-size:.9rem}

    /* responsive */
    @media (max-width:992px){
      .pricing-grid{grid-template-columns:repeat(2,1fr);}
    }
    @media (max-width:680px){
      .pricing-grid{grid-template-columns:1fr;}
      .hero{height:160px}
      .nav-menu{display:none}
      .nav-toggle{display:block}
    }
