@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Defaults */
:root {
  --site-yellow: #ffbf00;
  --site-orange: #ff9900;
  --site-dark: #232323;
  --site-gray-light: #f8f9fa;
  --site-gray-dark: #444444;
}
body {
  font-family: "Inter", sans-serif;
  background: #fff !important;
  color: #212529;
  margin: 0;
  padding: 0;
}

/* Responsive Visibility */
.for-mobile {
  display: none;
}
.for-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .for-mobile {
    display: block;
  }
  .for-desktop {
    display: none;
  }
}

/* Site Specific Styles */
.cta {
  background: linear-gradient(
    90deg,
    var(--site-orange) 0%,
    var(--site-yellow) 100%
  ) !important;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 24px;
  width: auto;
}
.title {
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  color: var(--site-gray-dark);
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .title h2 {
    margin-top: 30px;
  }
}
#szolgaltatasok,
#referenciak,
#gyik {
  scroll-margin-top: 110px;
}
/* Hamburger */
.custom-hamburger .hamburger-lines {
  display: inline-block;
  width: 32px;
  height: 24px;
  position: relative;
}
.custom-hamburger .line {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease;
}
.custom-hamburger .line:nth-child(1) {
  top: 0;
}
.custom-hamburger .line:nth-child(2) {
  top: 10px;
}
.custom-hamburger .line:nth-child(3) {
  top: 20px;
}
.custom-hamburger[aria-expanded="true"] .line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.custom-hamburger[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}
.custom-hamburger[aria-expanded="true"] .line:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

/* Navbar Styles */
.navbar-custom {
  position: fixed;
  width: 100%;
  background: var(--site-dark) !important;
  background: linear-gradient(
    90deg,
    var(--site-gray-dark) 0%,
    var(--site-dark) 100%
  ) !important;
  z-index: 1000;
}
.navbar-custom .navbar-brand .logo {
  width: 110px;
  height: auto;
  margin-left: 15px;
}
.navbar-custom .navbar-brand .vr {
  height: 50px;
  width: 1px;
  margin-block: auto;
  background: #fff;
  display: inline-block;
  opacity: 1;
}
.navbar-custom .navbar-brand span {
  font-weight: 100;
  font-size: 18px;
  margin-left: 10px;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link,
.navbar-custom .navbar-toggler,
.navbar-custom .navbar-toggler-icon {
  text-transform: uppercase;
  color: #fff !important;
}
.navbar-nav {
  gap: 35px;
}
.navbar-custom .nav-link {
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    var(--site-yellow) 0%,
    var(--site-orange) 100%
  );
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-custom .nav-link:hover::after {
  width: 100%;
}

.navbar-custom .cta {
  margin-left: 35px !important;
  font-size: 12px;
  color: #212529;
}

.navbar-custom .cta:hover {
  background: var(--site-orange) !important;
  color: #212529 !important;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .navbar-custom .navbar-brand .logo {
    width: 90px;
  }
  .navbar-custom .navbar-nav {
    margin-top: 15px;
    text-align: center;
    gap: 10px;
  }
  .navbar-custom .nav-link {
    font-size: 16px;
  }
  .navbar-custom .nav-link::after {
    display: none;
  }
  .navbar-custom .cta {
    margin-left: 0px !important;
  }
  .vr.for-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 359px) {
  .navbar-custom .cta {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding-top: 100px;
  background: url("/img/banner.png") no-repeat center center;
  background-size: cover;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 191, 0, 0.8) 0%,

    rgba(255, 191, 0, 0) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  margin: 20px;
  width: 70%;
  border-radius: 10px;
}
.hero-content .logo-container {
  width: 200px;
  margin-inline: auto;
}
.hero-content .logo-container img {
  width: 100%;
  height: auto;
}
.hero-content .hero-title {
  font-size: 25px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 300;
  text-transform: uppercase;
}
.hero-content .hero-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 200;
}

.hero-content .cta {
  background: linear-gradient(
    90deg,
    var(--site-orange) 0%,
    var(--site-yellow) 100%
  ) !important;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  width: 280px;
  margin-inline: auto;
  margin-bottom: 15px;
}
.hero-content .cta img {
  height: 20px;
}
.hero-content .cta span {
  margin: 0;
  margin-left: 10px;
  font-weight: 300;
}
.hero-content .cta:hover {
  color: #212529 !important;
  text-decoration: none;
}

.hero-content .extras {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 200;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.hero-content .extras li {
  list-style: none;
}
.hero-content .extras li img {
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.hero-content .extras li span {
  vertical-align: middle;
}

.hero .hero-overlay {
  position: relative;
  background: #fff;
  z-index: 1;
  height: 100px;
  width: 100%;
  border-top-left-radius: 40vw 0px;
  border-top-right-radius: 40vw 0px;
  clip-path: ellipse(60% 100% at 50% 100%);
}

@media screen and (max-width: 768px) {
  .hero-content {
    width: 90%;
  }
  .hero-content .hero-title {
    font-size: 20px;
  }
  .hero-content .hero-subtitle {
    font-size: 20px;
  }
  .hero-content .cta {
    width: 220px;
  }
  .hero-content .cta span {
    font-size: 16px;
  }
  .hero-content .extras {
    flex-direction: column;
    gap: 5px;
  }
}

/* Services Section */
.services {
  position: relative;
}

.services .title h2 {
  margin-bottom: 50px;
}

.services .card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.services .card {
  background: #fff;
  width: 300px;
  height: auto;
  padding: 0px;
  text-align: center;
  border: none !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.services .card-container .card .card-title {
  background-color: #383737;
  color: var(--site-yellow);
  text-transform: uppercase;
  padding-block: 25px;
  margin-bottom: 0px;
}
.services .card-container .card .card-title h3 {
  font-size: 20px;
  margin: 0;
}
.services .card-container .card .card-content {
  margin-top: 0px;
  padding: 20px;
  height: 230px;
  color: #000;
  border-left: var(--site-yellow) 12px solid;
  border-right: var(--site-yellow) 12px solid;
  border-bottom: var(--site-yellow) 12px solid;
  display: flex;
  flex-direction: column;
  justify-content: top;
}
.services .card-container .card .card-content .icon-container {
  width: 40px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 15px;
}
.services .card-container .card .card-content .icon-container img {
  width: 100%;
  height: auto;
  margin-inline: auto;
}
.services .card-container .card .card-content h4 {
  font-size: 16px;
  text-transform: uppercase;
}
.services .card-container .card .card-content h4 span {
  text-transform: none;
}
.services .card-container .card .card-content p {
  font-size: 14px;
}

.services .services-overlay {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--site-yellow);
  z-index: 0;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .services .card-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 12px;

    padding: 0 12px 10px;
  }

  .services .card-container::-webkit-scrollbar {
    display: none;
  }

  .services .card-container .card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* Gallery Section */
.gallery {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.gallery-swiper {
  padding: 0 12px 28px;
}

.gallery .swiper-slide {
  height: auto;
}

.gallery-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
}

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

@media (min-width: 769px) {
  .gallery-swiper {
    padding: 0 0 18px;
  }
}

/* FAQ Section */
.gyik {
  margin-top: 50px;
  padding-bottom: 10px;
  background: url("/img/gallery/Rectangle 4.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}
.gyik::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    240deg,
    rgba(255, 191, 0, 0.8) 0%,
    rgba(255, 191, 0, 0) 100%
  );
  z-index: -1;
}
.why {
  padding: 30px 0;
  text-align: center;
  z-index: 1;
  background: rgba(255, 191, 0, 0.9);
}
.why .title h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}
.why ul {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  font-size: 18px;
  text-transform: uppercase;
}
.why ul li {
  padding-left: 20px;
}
.why ul li:nth-child(1) {
  list-style: none;
}
.experience {
  padding-top: 40px;
  padding-bottom: 25px;
  text-align: center;
  background-color: #202020;
}
.experience .title h2 {
  font-size: 22px;
  color: var(--site-yellow);
}
.questions {
  margin-top: 30px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.6);
}
.questions .question-title {
  text-align: center;
  padding-top: 20px;
}
.questions .question-title h2 {
  background-color: #fff;
  padding-block: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--site-gray-dark);
}

.questions .accordion {
  margin-inline: auto;
  padding-bottom: 20px;
}
.questions .accordion .accordion-item {
  border-radius: 0px !important;
  border: 1px solid var(--site-dark) !important;
}
.questions .accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--site-yellow) !important;
  color: var(--site-gray-dark) !important;
  border-radius: 0px !important;
}
.questions
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:focus {
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .gyik {
    padding-bottom: 0px;
  }
  .why {
    padding-top: 5px;
    padding-bottom: 10px;
    background: var(--site-yellow);
  }
  .why .title h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .why ul {
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
  }
  .why ul li {
    list-style: none;
  }
  .experience {
    padding-top: 5px;
    padding-bottom: 25px;
  }
  .experience .title h2 {
    font-size: 18px;
  }
  .questions {
    margin: 0px !important;
    padding: 0px !important;
  }

  .questions .question-title {
    padding-top: 0px;
  }
  .questions .question-title h2 {
    font-size: 20px;
    padding-block: 15px;
    margin-bottom: 0px;
  }
  .questions .accordion {
    padding-bottom: 0px;
  }
}

/* Footer Section */
.site-footer {
  color: rgba(255, 255, 255, 0.92);
  padding: 34px 0;
  position: relative;
  background: var(--site-dark);

  /*
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url("/img/footer-texture.jpg") center/cover no-repeat; */
}

.callback {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  margin-top: 0px;
  width: 100%;
}
.callback .cta {
  font-weight: 400;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 500px;
  margin-inline: auto;
}

.footer-left {
  flex: 1 1 auto;
  min-width: 320px;
}

.footer-title {
  text-align: center;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0 0 14px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.95;
}
.footer-list li img {
  height: 18px;
  width: auto;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-fb {
  display: flex;
  justify-content: center;
  margin-right: 20px;
}
.footer-fb i {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.92);
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-right {
  flex: 0 0 auto;
}

.footer-map-card {
  width: 300px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.footer-map-card iframe,
.footer-map-card img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .site-footer {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .footer-left {
    min-width: unset;
    width: 100%;
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
    text-align: center;
  }

  .footer-map-card {
    width: min(360px, 92vw);
    height: 150px;
    margin: 0 auto;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-fb {
    margin: 0;
  }
}
