/* Alapbeállítások */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*outline: 1px solid red !important;*/
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000000;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 20px
  );
  color: #333;
  position: relative;
  line-height: 1.4;
  overflow-x: scroll !important;
}

/* Konténer */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* Navigációs menü stílusok */
.site-header {
  background: rgba(246, 218, 189, 0.50);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100% ;
}

.site-header .logo img {
  max-width: 50px;
  border-radius: 50px;
  margin-top: 6px;
}

/* Hamburger menu (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle .hamburger {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  position: relative;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  width: 25px;
  height: 3px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-toggle .hamburger::before {
  top: -8px;
}

.nav-toggle .hamburger::after {
  top: 8px;
}

.site-header .main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}

.site-header .main-nav ul li {
  margin-left: 25px;
}

.site-header .main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 0;
  font-family: sans-serif;
  font-weight: bold;
}

.site-header .main-nav ul li a:hover {
  color: #F69344;
  font-family: Comic Sans MS, Comic Sans, cursive
}

/* Hero szekció */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(255, 225, 184, 0), rgba(246, 147, 68, 0.1), rgba(246, 147, 68, 1)),
              url('./assets/images/logo.png') center/cover no-repeat;
  overflow: hidden;
  padding-top: 100px; /* hogy a fix navigáció ne takarja el */
}

.hero-content {
  text-align: center;
  z-index: 2;
  color: #ffffff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
}

.plane-container {
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: translateX(-50%);
  z-index: 1;
}

.plane {
  width: 140px;
}

/* Vertikális feliratok */
.vertical-text,
.vertical-text-right {
  position: fixed;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 0;
  font-family: cursive;
}

.vertical-text {
  left: 1%;
  top: 100%;
}

.vertical-text-right {
  right: 1%;
  top: 250%;
}

.vertical-text span,
.vertical-text-right span {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.45);
  margin: 3px 0;
}

.vertical-text span.visible,
.vertical-text-right span.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Headings Modern Style */
section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F69344, #e58338);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Szolgáltatások (our-services) */
.our-services {
  min-height: 60vh;
  padding: 60px 50px;
  background: linear-gradient(
    to bottom,
    rgba(246, 147, 68, 1) 0%,
    rgba(251, 218, 180, 0.832) 100%
  );
  text-align: center;
}

/* .hbox {
  max-width: 40%;
}*/

.service-details {
  min-height: 60vh;
  padding: 69px 50px;
  background: linear-gradient(
    to bottom,
    rgba(246, 147, 68, 1) 40%,
    rgba(0, 0, 0, 0.832) 100%
  );
  text-align: left;
  font-family: "Montserrat", sans-serif;
}

.service-details h2 {
  color: black;
  font-style: italic;
  font-size: 1.8rem;
}

.service-details h3 {
  color: black;
  font-style: italic;
  font-size: 1.6rem;
}

.service-details p {
  color: white;
  font-style: italic;
  font-size: 1.2rem;
}

.service-details ul li {
  color: whte;
  font-style:normal;
  font-size: 1.2rem;
}

/* Gomb stílus (Uiverse.io mintából) */
.servb {
  position: relative;
  margin: auto;
  margin-left: 5px;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.servb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  /*background: #b1dae7; */
  background: #fff;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.servb span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #234567;
}

.servb svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* stroke: #234567; */
  stroke: #f8f6f4;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.servb:hover:before {
  width: 100%;
  background: #ea7d34;
}

.servb:hover svg {
  transform: translateX(0);
}

.servb:active {
  transform: scale(0.95);
}

/*.service:hover {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}*/

/* Folyamataink (our-process) */
.our-process {
  min-height: 60vh;
  padding: 60px 50px;
  background: linear-gradient(
    to bottom,
    rgba(251, 218, 180, 0.832) 0%,
    rgba(113, 127, 253, 0.91) 100%
  );
  text-align: center;
}

.our-process hr {
  border: none;
  height: 2px;
  background: #563838;
  width: 50px;
  margin: 20px auto;
}
#inithr {
  border: none;
  height: 2px;
  background: #563838;
  width: 300px;
  margin: 0px auto;
}
#serviceinithr {
  border: none;
  height: 2px;
  background: #563838;
  width: 310px;
  margin: 0px auto;
}

#lefthrproc {
  border: none;
  height: 4px;
  width: 60%; /* initial width */
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-left: 20px;
  background: linear-gradient(to right, transparent, #F69344)
}

#righthrproc {
  border: none;
  height: 4px;
  width: 50%; /* initial width */
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
  margin-left: auto;
  background: linear-gradient(to right, #F69344, transparent)
}

/* process-step layout */
.process-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
}

.process-step.reverse {
  flex-direction: row-reverse;
}

.step-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
  text-align: left;
}

.step-text h3 {
  font-size: 1.45rem;
  margin-bottom: 15px;
  color: #333;
}

.step-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  text-justify: inter-word;
}

.step-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.step-image img {
  max-width: 60%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Rólunk rész */
.about-us {
  min-height: 60vh;
  padding: 60px 20px;
  background: linear-gradient(
    to top,
    rgba(113, 127, 253, 0.671) 0%,
    rgb(113, 127, 253, 0.91) 100%
  );
  text-align: center;
}

#abouthrinit {
  border: none;
  height: 2px;
  background: #fdfdfd;
  width: 300px;
  margin: 0px auto;
}

.team-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.team-bubble {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.team-bubble img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-bubble h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: inherit;
}

.team-bubble p {
  font-size: 0.95rem;
  color: inherit;
}

/* Kiemelt tulajdonosok */
.team-bubble.featured {
  width: 280px;
  padding: 30px;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Alkalmazottak */
.team-bubble.employee {
  width: 200px;
  padding: 15px;
  font-size: 0.9rem;
}


/* Referenciák */
.references {
  min-height: 60vh;
  padding: 60px 20px;
  background: linear-gradient(
    to bottom,
    rgb(113, 127, 253, 0.671) 0%,
    rgb(0, 0, 0) 100%
  );
  text-align: center;
  color: #fff;
}

.references .process-step .step-text h3,
.references .process-step .step-text p {
  color: #fff;
}

#portfoliohrinit {
  border: none;
  height: 2px;
  background: #fdfdfd;
  width: 200px;
  margin: 0px auto;
}

#lefthr {
  border: none;
  height: 2px;
  background: #ffffff;
  width: 50%;
  margin: 20px auto;
  margin-left: 20px;
}

#righthr {
  border: none;
  height: 2px;
  background: #ffffff;
  width: 50%;
  margin: 20px auto;
  margin-right: 20px;
}

/* Gomb */
button {
  background: #F69344;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

button:hover {
  background: #e58338;
}

/* Reszponzív */
@media (max-width: 800px) {
  body {
    font-family: "Montserrat", sans-serif;
    background: #000000;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.02) 0,
        rgba(0, 0, 0, 0.02) 1px,
        transparent 1px,
        transparent 20px
    );
    color: #333;
    position: relative;
    line-height: 1.4;
  }
  body h2 {
    font-size: 1.8rem;
  }
  .process-step {
    flex-direction: column;
  }
  .process-step.reverse {
    flex-direction: column;
  }
  
  .step-text {
    text-align: center;
  }
  
  .step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .step-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
  }

  .team-bubble {
    width: 90%;
  }

  .reference-item {
    width: 90%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }

  /* Mobile Navigation */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246,218,189,0.9);
    display: none;
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  .main-nav.active {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    margin: 0;
  }
  .main-nav ul li {
    margin: 10px 0;
  }
  .site-header .main-nav ul li a {
    font-family: "Montserrat", sans-serif;
  }
  
  /* Show hamburger on mobile */
  .nav-toggle {
    display: block;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  
  .footer-nav ul {
    flex-direction: column;
    margin: 10px 0;
    padding: 0;
  }
  
  .footer-nav ul li {
    margin: 5px 0;
  }
  
  .footer-social {
    margin: 10px 0;
  }
  
  .footer-copy p {
    font-size: 0.75rem;
    margin: 10px 0;
    text-align: center;
  }
  .hero {
    padding-top: 500px;
    min-height: auto; /* Allow the section to shrink if needed */
    height: auto;
  }

  /* Portfolio Carousel Styles */
.carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: calc(100% / 4);
  flex-shrink: 0;
  border-radius: 20px;
  padding: 5px;
}
}

/* Footer */
.site-footer {
  background: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 0%,
    rgb(0, 0, 0) 100%
  );
  color: #fff;
  padding: 20px 20px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-top: 20px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #F69344;
}

.footer-content {
  width: 100%;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 15px 0;
}

.footer-nav ul li {
  margin: 0 10px;
}

.footer-social a {
  margin: 0 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-social img {
  width: 28px;
  height: 28px;
}

.footer-copy p {
  margin-top: 15px;
  font-size: 0.85rem;
}

/* Animációk */
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 1.3s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Új animációs osztályok: vízszintes csúszás */
.hidden-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 1.3s ease;
}

.hidden-left.show {
  opacity: 1;
  transform: translateX(0);
}

.hidden-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 1.3s ease;
}

.hidden-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Kétoszlopos szakasz: bal oldalon a szöveg, jobb oldalon a kép */
.service-highlight {
  background: #f8f6f4;
  padding: 60px 20px;
}

.service-highlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.service-highlight-text {
  flex: 1;
  margin-right: 40px;
  max-width: 600px;
}

.service-highlight-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-transform: uppercase;
  text-align: left;
}

.service-highlight-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.service-highlight-price {
  font-weight: bold;
  color: #F69344;
  font-size: 1.2rem;
  margin-top: 10px;
}

.service-highlight-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-highlight-image img {
  max-width: 80%;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
  .service-highlight-content {
    flex-direction: column;
  }
  .service-highlight-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .service-highlight-image {
    margin-bottom: 20px;
  }
}

/* Portfolio Carousel Styles */
.carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: calc(100% / 4);
  flex-shrink: 0;
  border-radius: 20px;
  padding: 5px;
}

/* Új ügyfélvélemény szekció */
.testimonials {
  min-height: 40vh;
  padding: 60px 20px;
  background-color: #000000;
  text-align: center;
}

.testimonial-carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.testimonial-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  width: calc(100% / 2);
  flex-shrink: 0;
  border-radius: 20px;
  padding: 5px;
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  text-align: center;
  background: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Testimonial item szerző + szöveg stílus */
.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 8px;
}

.testimonial-author h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #bcbcbc;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #ffffff;
  text-align: left;
  max-width: 90%;
  line-height: 1.4;
}


/* Reszponzív testimonial carousel */
@media (max-width: 800px) {
  .testimonial-item {
    width: calc(100% / 1);
  flex-shrink: 0;
  border-radius: 20px;
  padding: 5px;
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  text-align: center;
  background: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
}