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

body {
  background-color: #000;
  /* vészmegoldás a villanás ellen */
  font-family: 'Segoe UI', sans-serif;
  background: url('fotozas-budapest.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;

}

.intro {
  position: fixed;
  background: black;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeOut 5s forwards 2s;
  text-align: center;
  padding: 1rem;
}


.intro-text {
  font-size: 6vw;
  max-width: 90vw;
  color: #F8333C;
  text-shadow: 0 0 10px #F8333C, 0 0 20px #F8333C;
  animation: textUp 2s ease-out forwards;
  text-align: center;
  line-height: 1.3;
  padding: 0 1rem;
  font-family: 'Dancing Script', cursive;
}

@keyframes textUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.main-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(to right, rgba(240, 237, 234, 0.95), rgba(244, 67, 54, 0.9));

  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
}

.header-right {
  justify-self: end;
}


.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}


.logo {
  font-family: 'Shadows Into Light', cursive;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.main-nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #F8333C;
}

.main-content {
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  min-height: auto;
  gap: 80px;
  z-index: 1;
  position: relative;
}

.hero {
  max-width: 900px;
  width: 100%;
}



.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 40px;
  max-width: 95vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-box {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  width: 80vw;
  max-width: 280px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px #F8333C, 0 0 20px #F8333C;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-box:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #F8333C, 0 0 60px #F8333C;
  z-index: 2;
}

.service-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #F8333C;
}

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

.service-box {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-box.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes neonPulseBox {
  0% {
    box-shadow: 0 0 10px #F8333C, 0 0 20px #F8333C;
  }

  100% {
    box-shadow: 0 0 25px #F8333C, 0 0 45px #F8333C;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-box {
  background: #111;
  border: 2px solid #F8333C;
  padding: 30px 20px;
  max-width: 90vw;
  width: 90%;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
  animation: neonPulseModal 2s ease-in-out infinite alternate;
  position: relative;
}

@keyframes neonPulseModal {
  0% {
    box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
  }

  100% {
    box-shadow: 0 0 30px #F8333C, 0 0 60px #F8333C;
  }
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #F8333C;
  font-size: 24px;
  cursor: pointer;
}

.modal-text {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}

.service-box.bg-test {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('fotozas-budapest.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  border: 2px solid #F8333C;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}


.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #000;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 100;
  border-top: 1px solid #111;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(41, 188, 180, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(41, 188, 180, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(41, 188, 180, 0);
  }
}


.messenger-button:hover {
  transform: scale(1.1);
}

.about-section {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 60px;
}

.about-box {
  max-width: 95vw;
  background: rgba(0, 0, 0, 0.8) url('fotozas-budapest.png') no-repeat center center;
  background-size: cover;
  border: 2px solid #F8333C;
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
  padding: 60px;
  border-radius: 16px;
  color: #fff;
  animation: neonPulseModal 2s infinite alternate;
  text-align: justify;
}

.about-box h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #F8333C;
  text-align: center;
}

.about-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 20px;
  /* Ez adja a kérdés-válasz párok közti szünetet */
}

.portfolio-section {
  padding: 100px 40px;
  text-align: center;
}

.portfolio-title {
  font-size: 3rem;
  font-weight: bold;
  color: #00f5ff;
  text-align: center;
  margin: 50px auto 40px auto;
  width: fit-content;
  text-shadow:
    0 0 6px #00f5ff,
    0 0 12px #00f5ff,
    0 0 24px #00f5ff,
    0 0 48px #00f5ff;
  z-index: 2;
  position: relative;
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
}

.photo-box {
  width: 320px;
  height: 210px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px #F8333C;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
}

@keyframes neonPulse {

  0%,
  100% {
    text-shadow:
      0 0 6px #00f5ff,
      0 0 12px #00f5ff,
      0 0 24px #00f5ff,
      0 0 48px #00f5ff;
  }

  50% {
    text-shadow:
      0 0 2px #00f5ff,
      0 0 8px #00f5ff,
      0 0 16px #00f5ff,
      0 0 32px #00f5ff;
  }
}

body.portfolio-page::before {
  display: none;
}

body.no-fatyol::before {
  display: none;
}

.booking-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.booking-box input,
.booking-box textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #555;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 100%;
}

.booking-box input::placeholder,
.booking-box textarea::placeholder {
  color: #ccc;
}

.booking-box button {
  padding: 10px;
  font-size: 1rem;
  background: #F8333C;
  border: none;
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-box button:hover {
  background: #00d9d9;
}

.booking-box form button {
  margin: 0 auto;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  background: #F8333C;
  color: #000;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px #F8333C, 0 0 20px #F8333C;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.booking-box form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
}

.booking-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.booking-button-wrapper button {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  background: #F8333C;
  color: #000;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px #F8333C, 0 0 20px #F8333C;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-button-wrapper button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 30px;
  max-width: 90vw;
  margin: 0 auto;
  color: #fff;
}

.booking-form label {
  font-weight: bold;
  color: #F8333C;
  margin-bottom: 4px;
}

.booking-form input,
.booking-form textarea {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #F8333C;
  box-shadow: 0 0 8px #F8333C;
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.booking-box {
  background: rgba(0, 0, 0, 0.8) url('fotozas-budapest.png') no-repeat center center;
  background-size: cover;
  border: 2px solid #F8333C;
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
  padding: 40px;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  color: #fff;
  animation: neonPulseModal 2s infinite alternate;
}

.booking-box h1 {
  text-align: center;
  color: #F8333C;
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking-info {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ddd;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form label {
  font-weight: bold;
  color: #F8333C;
}

.booking-form input,
.booking-form textarea {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #F8333C;
  box-shadow: 0 0 8px #F8333C;
}

.booking-button-wrapper {
  text-align: center;
  margin-top: 10px;
}

.booking-button-wrapper button {
  background: #000;
  border: 2px solid #F8333C;
  padding: 10px 25px;
  color: #F8333C;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #F8333C;
}

.booking-button-wrapper button:hover {
  background: #F8333C;
  color: #000;
  box-shadow: 0 0 15px #F8333C, 0 0 30px #F8333C;
}

.form-box {
  max-width: 90vw;
  background: rgba(0, 0, 0, 0.85) url('fotozas-budapest.png') no-repeat center center;
  background-size: cover;
  border: 2px solid #F8333C;
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
  padding: 60px;
  border-radius: 16px;
  color: #fff;
  animation: neonPulseModal 2s infinite alternate;
  text-align: left;
}

.form-title {
  text-align: center;
  color: #00f5ff;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.form-description {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 25px;
  text-align: justify;
}

.form-box form label {
  display: block;
  margin-bottom: 6px;
  margin-top: 15px;
  font-weight: bold;
}

.form-box form input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  color: #000;
  font-size: 1rem;
}

.neon-button {
  background: #000;
  color: #F8333C;
  padding: 12px 20px;
  border: 2px solid #F8333C;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 10px #F8333C;
  transition: all 0.3s ease;
}

.neon-button:hover {
  background: #F8333C;
  color: #000;
  box-shadow: 0 0 20px #F8333C, 0 0 40px #F8333C;
}

.contact-details-box {
  text-align: center;
  padding: 30px;
  color: #fff;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.contact-info-list li strong {
  color: #F8333C;
}

.contact-note {
  font-size: 1rem;
  color: #ccc;
  margin-top: 10px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px auto;
  max-width: 600px;
  text-align: left;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.1rem;
}

.contact-label {
  font-weight: bold;
  color: #F8333C;
  min-width: 120px;
}

.contact-value {
  color: #ddd;
  flex: 1;
}

.contact-note {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-top: 20px;
}

/* Lightbox háttér */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Kép nagyban */
.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 0 30px #F8333C;
  border-radius: 10px;
}

/* Bezárás gomb */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #F8333C;
  cursor: pointer;
  text-shadow: 0 0 10px #F8333C;
  z-index: 1000;
}

.modal-image-box {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.modal-image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px #F8333C;
}

.fade-out {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.fade-out.fade {
  opacity: 0;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.fade.fade-out {
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* 🔹 Globális reszponzív képek */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 🔹 Alap elrendezés beállítása */
body {
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  background: #fff;
  /* sötétszürke jól kontrasztál */
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  /* halvány glow */
}


.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9998;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-overlay.active {
  display: flex;
  animation: fadeIn 0.5s ease forwards;
}

.overlay-nav a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  margin: 15px 0;
  text-shadow: 0 0 10px #0FF;
  transition: transform 0.3s ease;
}

.overlay-nav a:hover {
  transform: scale(1.2);
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  /* Ez fontos */
  gap: 30px;
  font-size: 1.8rem;
  color: #F0FF;
  text-align: center;
}

@keyframes pulseBurger {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.menu-toggle {
  animation: pulseBurger 2s infinite ease-in-out;
}

.tmg-tooltip {
  position: relative;
  cursor: help;
  color: #0FF;
  font-weight: bold;
  text-decoration: underline dotted;
}

/* 🔹 Mobilnézet (max. 768px szélesség alatt) */
@media (max-width: 768px) {

  .main-header {
    flex-direction: column;
    padding: 10px 20px;
    text-align: center;
  }

  .header-left,
  .header-center {
    justify-content: center;
    margin-bottom: 10px;
  }

  .social-icons-header a svg {
    margin: 0 8px;
  }

  .main-content {
    padding: 80px 20px;
    gap: 40px;
  }


  .services {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }

  .portfolio-gallery {
    flex-direction: column;
    align-items: center;
  }

  .photo-box {
    width: 90%;
    height: auto;
  }

  .about-box,
  .booking-box,
  .form-box {
    padding: 30px 20px;
    width: 90%;
  }

  .contact-grid {
    gap: 20px;
  }


  .menu-toggle {
    top: 15px;
    right: 15px;
  }
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #F8333C;
  cursor: pointer;
  user-select: none;
  text-shadow: 0 0 10px #F8333C;
  z-index: 1001;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #F8333C;
  cursor: pointer;
  user-select: none;
  text-shadow: 0 0 10px #F8333C;
  z-index: 1001;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.seo-text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.seo-text a:hover {
  color: #F8333C;
  text-shadow: 0 0 10px #F8333C;
}

h1 {
  font-family: 'Shadows Into Light', cursive;
}

/* ----- Slide alatti bemutatkozó box ----- */
.main-intro-box {
  background: rgba(255, 255, 255, 0.15);
  /* áttetsző háttér */
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.main-intro-box .intro-content {
  max-width: 95vw;
  width: 100%;
  color: #111;
  text-align: center;
  background: transparent;
}

.main-intro-box h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: 'Shadows Into Light', cursive;
  color: #f44336;
}


.main-intro-box p {
  font-size: 24px;
  margin-bottom: 15px;
}

.call-cta {
  display: inline-block;
  margin-top: 25px;
  background-color: #ff5c1c;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.call-cta:hover {
  background-color: #e0490f;
}

.call-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  border-radius: 8px;
  background-color: #FB6107;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  animation: pulseScale 2.5s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-family: 'Shadows Into Light', cursive;
  font-size: 2.5rem;
  color: #f44336;
  text-align: center;
  margin-bottom: 40px;
}


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

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.service-info {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px;
  text-align: center;
  font-family: 'Noto Sans Display', sans-serif;
  color: #333;
  min-height: 100px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #f44336;
}

.circle-arrow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FB6107;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  cursor: pointer;
}

.circle-arrow:hover {
  background: #ff7b35;
}

.process-steps {
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.process-steps h2 {
  font-size: 2.5rem;
  color: #f44336;
  margin-bottom: 40px;
  font-family: 'Shadows Into Light', cursive;
}


.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.step-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 22%;
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-number {
  background-color: #f44336;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.step-box p {
  font-size: 1rem;
  color: #555;
}

.vipclean-hero {
  position: relative;
  background-image: url("takarito-bg.png");
  background-size: cover;
  /* ⬅️ cover helyett contain */
  background-repeat: no-repeat;
  /* ⬅️ ne ismétlődjön */
  background-position: top center;
  /* ⬅️ középre igazítva felülről */
  height: 100vh;
  /* ⬅️ a szekció magassága kitölti a nézetet */
  padding: 0;
  /* ⬅️ csak oldalirányú padding, fent és lent nem kell */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}


.hero-text {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
}

.hero-text h1 {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}




@media (max-width: 1024px) and (min-width: 769px) {
  .vipclean-hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: right;
    background-size: cover;
    height: auto;
    padding: 0;
    text-align: center;
  }


  .hero-text {
    max-width: 90%;
    margin-top: 20px;
  }
}


@media (max-width: 768px) {
  .vipclean-hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: right;
    background-size: cover;
    height: 100vh;
    padding: 0;
  }
}


.hero-text {
  max-width: 90%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}


@media (max-width: 768px) {
  .hero {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


.hero-button:hover {
  background-color: #d32f2f;
}


.vipclean-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-slide-box {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}


.hero-slides {
  font-size: 3.2rem;
  font-weight: bold;
  color: #FFF;
  min-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  margin-top: -360px;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: inline;
  animation: fadeIn 0.5s ease-in-out;
}

.hero-button {
  position: absolute;
  top: 350px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  min-width: 250px;
  max-width: 90vw;
  text-align: center;
  background-color: #f44336;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  animation: buttonPulse 2s ease-in-out infinite;
}



@media (max-width: 768px) {
  .hero-slide-box {
    text-align: center;
  }

}

@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .logo {
    white-space: nowrap;
    font-size: 1.3rem;
    /* opcionálisan csökkenthető */
  }
}

@media (max-width: 768px) {
  .hero-slide {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    padding: 0 16px;
    /* biztosítja a belső margót */
  }

  .hero-slides {
    white-space: normal;
    /* ⬅️ ez engedi a sortörést */
    word-break: break-word;
    font-size: 1.4rem;
    margin-top: 40px !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-slides {
    font-size: 2.4rem;
    /* kisebb betű, ha kell */
    margin-top: 40px;
    /* ne legyen túl fent vagy lent */
    white-space: nowrap;
    overflow: hidden;
    display: block !important;
  }

  .hero-slide {
    display: none;
  }

  .hero-slide.active {
    display: inline;
  }
}

@keyframes buttonPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.03);
  }
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-box {
    width: 100%;
    max-width: 400px;
  }
}

.phone-cta {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Noto Sans Display', sans-serif;
}

.phone-cta p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.phone-cta a {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.3rem;
  color: #f44336;
  text-decoration: underline;
  margin-left: 5px;
  transition: color 0.3s ease;
}


.phone-cta a:hover {
  color: #d32f2f;
}

@media (max-width: 768px) {
  .phone-cta p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.trust-section {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url('szonyeg-bg.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 20px;
}

.trust-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.trust-text {
  flex: 1 1 45%;
  padding: 20px;
}

.trust-intro {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f44336
}

.trust-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

.trust-points {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-point {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: #000;
}

.check-icon {
  font-size: 1.8rem;
  margin-right: 10px;
}

.advantages-section {
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    url('szonyeg-bg.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: 'Shadows Into Light', cursive;
  color: #f44336;
}


.advantage-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.advantage-card {
  background-color: white;
  color: #333;
  border-radius: 12px;
  padding: 30px 20px;
  width: 180px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.advantage-card img {
  height: 40px;
  margin-bottom: 15px;
}

.advantage-card.highlight {
  background-color: #ff5722;
  color: white;
}

.phone-link-box {
  font-size: 1.1rem;
  color: #000;
}

.phone-highlight {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.3rem;
  color: #ff5722;
  text-decoration: none;
  border-bottom: 2px solid #ff5722;
}

.cta-transparent {
  background: rgba(255, 255, 255, 0.15);
  /* halvány türkiz áttetsző */
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-top: 0;
}

.cta-transparent p {
  margin: 0;
}

.cta-transparent .phone-highlight {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.3rem;
  color: #ff5722;
  text-decoration: none;
  border-bottom: 2px solid #ff5722;
}

.scroll-offset {
  position: relative;
}

.scroll-offset::before {
  content: "";
  display: block;
  height: 120px;
  /* vagy amekkora a menüsáv magassága */
  margin-top: -120px;
  visibility: hidden;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -120px;
  /* állítsd be pontosan a menü magasságának megfelelően */
  height: 1px;
  visibility: hidden;
}

#miertmi {
  scroll-margin-top: 120px;
}

.kapcsolat-szekcio {
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

.kapcsolat-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex-wrap: wrap;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.kapcsolat-form {
  flex: 1;
  padding: 40px;
  min-width: 300px;
  box-sizing: border-box;
}

.kapcsolat-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #222;
}

.kapcsolat-form form input,
.kapcsolat-form form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  height: 70px;

}


.kapcsolat-form form button {
  background-color: #ff5c1c;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0 auto;

}

.kapcsolat-kepdoboz {
  flex: 1;
  background-color: #29bcb4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  min-width: 300px;
  box-sizing: border-box;
}

.kapcsolat-kepdoboz img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.kapcsolat-kepdoboz p {
  padding: 20px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

/* Reszponzív */
@media (max-width: 768px) {
  .kapcsolat-container {
    flex-direction: column;
  }

  .kapcsolat-form,
  .kapcsolat-kepdoboz {
    width: 100%;
  }

  .kapcsolat-form {
    padding: 20px;
  }

  .kapcsolat-kepdoboz p {
    font-size: 15px;
  }
}

.arak-szekcio {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.arak-box {
  max-width: 700px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);

  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Noto Sans Display', sans-serif;
  color: #333;
}

.arak-box h2 {
  font-family: 'Shadows Into Light', cursive;
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff5c1c;
}

.arak-box h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.arak-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.arak-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.arak-box ul li ul {
  margin-top: 5px;
  padding-left: 20px;
}

.arak-box p {
  margin-top: 20px;
  font-size: 16px;
}

.arak-box a.arak-cta {
  display: inline-block;
  margin-top: 25px;
  background: #ff5c1c;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.arak-box a.arak-cta:hover {
  background: #e64a11;
}

@media (max-width: 768px) {
  .arak-box {
    padding: 25px 20px;
  }

  .arak-box h2 {
    font-size: 28px;
  }

  .arak-box h3 {
    font-size: 20px;
  }

  .arak-box ul li {
    font-size: 15px;
  }

  .arak-box a.arak-cta {
    font-size: 15px;
    padding: 12px 24px;
  }
}

.price-table {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px 0;
  font-size: 16px;
  color: #333;
}

.price-row .service {
  flex: 1;
  text-align: right;
  padding-right: 10px;
}

.price-row .price {
  flex: 1;
  text-align: left;
  padding-left: 10px;
}

.price-row.full {
  justify-content: center;
  text-align: center;
  padding-top: 10px;
}

.full-row {
  font-size: 14px;
  color: #555;
  text-align: center;
}

.price small {
  font-size: 12px;
  display: block;
  color: #777;
  margin-top: 3px;
}

.vipclean-logo-link {
  text-decoration: none;
  color: #FFFFFF;
  font-family: sans-serif;
  font-size: 24px;
}

.vipclean-logo-link:hover {
  opacity: 0.8;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
}

.advantage-item img {
  width: 40px;
  height: auto;
}

.advantage-item h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  font-weight: 600;
}

/* Mobilnézet (480px alatt) */
@media (max-width: 480px) {
  .messenger-button {
    bottom: 80px;
    right: 20px;
    padding: 10px;
  }
}

/* Tablet nézet (768px alatt) */
@media (max-width: 768px) {
  .messenger-button {
    bottom: 70px;
    right: 25px;
    padding: 12px;
  }
}

/* Alapértelmezett (asztali) */
.messenger-button {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 9999;
  animation: pulse 2s infinite;
  background-color: white;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 0 10px rgba(41, 188, 180, 0.5);
  transition: transform 0.3s ease;
}

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.service-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.6;
}

.service-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-modal-content {
  background: rgba(244, 67, 54, 0.8);
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.6;
}

/* Bezáró gomb alapértelmezett stílusa – minden nézetre */
.popup-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Mobil nézet (480px alatt) */
@media (max-width: 480px) {
  .popup-modal-content {
    max-width: 90%;
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Pulzálás CSAK mobilon */
  .popup-modal .modal-close {
    animation: modalPulse 2s infinite ease-in-out;
  }
}

/* Tablet nézet (768px alatt) */
@media (max-width: 768px) {
  .popup-modal-content {
    max-width: 90%;
    padding: 24px;
  }
}

@keyframes modalPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}