* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f1115;
  color: #e5e5e5;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
}

/* FEJLÉC */
.header {
  text-align: center;
  padding: 90px 20px 70px;
}

.header h1 {
  font-family: 'Poppins', serif;
  font-size: 3.2rem;
  letter-spacing: 2px;
}

.header p {
  margin: 20px 0;
  color: #aaa;
}

/* GOMB */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #e6c36a, #b88a3c);
  color: #111;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* SZEKCIÓK */
.section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section h2 {
  font-family: 'Purple Purse', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  border-left: 4px solid #c9a24d;
  padding-left: 15px;
}

/* KAPCSOLAT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 6px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #888;
}

/* ANIMÁCIÓ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease,transform 0,7s ease;
}
 

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* Finom belépő animációk */
.hero h1,
.hero h2,
.hero p {
  animation: fadeUp 0.8s ease forwards;
}

.hero p {
  animation-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Szolgáltatás lista hover */
.services li {
  transition: transform 0.25s ease, color 0.25s ease;
}

.services li:hover {
  transform: translateX(6px);
  color: #c9a24d;
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

@media (min-width: 1024px) {
  .services-grid {
    max-width: 900px;
    margin: 0 auto;
  }
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,77,0.25);
  padding: 26px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #c9a24d;
  font-size: 1.1rem;
}

.service-card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.05);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  max-height: 320px;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

/* Animációk */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  .hero {
    padding: 80px 20px 60px;
    text-align: center;
  }

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

  .hero p {
    font-size: 1rem;
    margin-top: 12px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {

  .services {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services li {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 768px) {

  #lightbox img {
    max-width: 95%;
    max-height: 85%;
  }
}
.contact-form {
  max-width: 520px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,77,0.35);
  padding: 14px;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 6px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9a24d;
  background: rgba(255,255,255,0.08);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

/* + ikon */
.zoom-icon {
pointer-events: none;
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #c9a24d;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}
/* Scroll animáció alap */

.hero {
  width: 100%;
  height: 90vh;

  background-image: url("img/hero.jpg");
  background-size: cover;      /* kitölti, profi */
  background-position: center; /* nem csúszik */
  background-repeat: no-repeat;

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

  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* finom sötétítés */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 28px;
  opacity: 0.95;
}
.hero .btn {
  margin-top: 20px;
}
.hero h1 {
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.hero {
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to   { background-size: 108%; }
}
.hero::before {
  background: rgba(0,0,0,0.15);
}
.contact-info {
  margin-bottom: 30px;
  color: #ddd;
  font-size: 1.05rem;
}

.contact-info p {
  margin: 6px 0;
}

.contact-info strong {
  color: #c9a24d;
}
.intro-section {
  background: linear-gradient(180deg, #1e2329, #232a31);
  padding: 80px 20px;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
  color: #e6e6e6;
}

.intro-container h2 {
  font-family: 'Purple Purse', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
}

.intro-container h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 80%;
  background: #c9a14a; /* arany hangsúly */
}

.intro-container p {
  font-family: 'Purple Purse', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #d6d6d6;
}

.intro-highlight {
  margin-top: 30px;
  font-weight: 600;
  color: #ffffff;
}
.intro-text {
  max-width: 900px;
  margin: 30px auto 60px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dcdcdc;
}

.intro-text p {
  margin-bottom: 18px;
}
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.service-card {
  transition-delay: 0s;
}

.service-card.reveal.active:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card.reveal.active:nth-child(2) {
  transition-delay: 0.25s;
}
.service-card.reveal.active:nth-child(3) {
  transition-delay: 0.4s;
}
/* Scroll animáció alap */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
body {
  font-family: 'Poppins', sans-serif;
}
#bemutatkozas,
#bemutatkozas * {
  font-family: 'Poppins', sans-serif !important;
}

section {
  font-family: 'Poppins', sans-serif;
}
#bemutatkozas .about-box,
#bemutatkozas .about-content,
#bemutatkozas .intro {
  background: none;
  border: none;
  padding: 0;
}
/* FORCE FONT – BEMUTATKOZÁS */
#bemutatkozas p,
#bemutatkozas span,
#bemutatkozas strong,
#bemutatkozas em {
  font-family: 'Poppins', sans-serif !important;
}
#bemutatkozas p {
  color: red !important;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

p {
  font-weight: 400;
}
/* ===== BEMUTATKOZÁS – BETŰTÍPUS EGYSÉGESÍTÉS ===== */

.intro-section,
.intro-section * {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif !important;
}

/* Címsor (Bemutatkozás) */
.intro-container h2 {
  font-family: 'Purple Purse', serif;
  font-size: 2rem;
  margin-bottom: 30px;
  padding-left: 15px;
}

/* Szöveg */
.intro-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dcdcdc;
}
/* ===== BEMUTATKOZÁS – TIPOGRÁFIA ===== */

.intro-section {
  font-family: 'Poppins', sans-serif;
}

.intro-container h2 {
  font-family: 'Purple Purse', serif;
  font-size: 2rem;
}

.intro-container p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d6d6d6;
}

.hero-bg {
  filter: brightness(1.3) contrast(1.05) saturate(1.1)  ;
}

}
@media (max-width: 768px) {
  .hero {
    min-height: 45vh;
    height: auto;
    background-position: center top;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
  }
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-secondary {
  margin-top: 20px;
}
.section h3 {
  margin-top: 80px;   /* távolság az előző galériától */
  margin-bottom: 25px;
}
.section h3 {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
}
.section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c9a24d, transparent);
  border-radius: 2px;
}

.section h3 {
  letter-spacing: 0.5px;
  color: #e6e6e6;
}
.gallery-block {
  padding: 70px 0;
}

.gallery-block:nth-of-type(odd) {
  background: #141821;
}

.gallery-block:nth-of-type(even) {
  background: #10141c;
}
/* === GALÉRIA SCROLL ANIMÁCIÓ === */
.gallery-item {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}
/* === GALÉRIA HOVER ARANY KERET === */
.gallery-item {
  position: relative;
  border-radius: 14px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(201,162,77,0);
  transition: border-color 0.35s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(201,162,77,0.8);
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #c9a24d;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .hero {
    min-height: 45vh;
    height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item img {
    border-radius: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-title {
    font-size: 1.2rem;
    margin-top: 60px;
  }

  .gallery-title::after {
    width: 50px;
  }

  .gallery-title.active::after {
    width: 90px;
  }
}
@media (hover: none) {
  .gallery-item:hover {
    transform: none;
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .gallery-item {
    touch-action: manipulation;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  p {
    line-height: 1.6;
  }
}