/* Általános */
body {
  scroll-padding-top: 0px;
}

/* Navbar */
.navbar {
  height: 80px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar .logo {
  width: 25%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.navbar .motto {
  font-size: 0.95rem;
  color: #333;
}

/* Aktív menü pont */
.nav-link.active {
  font-weight: bold;
  color: #0d6efd !important;
}

/* Hero section */
#hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  bottom: 30%;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
}

/* Szolgáltatások */
.service-box {
  transition: transform 0.3s;
  background-color: #fff;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-box .btn {
  width: 100%;
  margin-top: 10px;
}

/* Modal */
.cta-button {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Referencia képek */
#references img {
  transition: transform 0.3s ease;
}
#references img:hover {
  transform: scale(1.03);
}

/* Kapcsolat */
#contactForm {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#formStatus .alert {
  margin-top: 10px;
}

#contactForm select {
  cursor: pointer;
}
.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.contact-info {
  font-size: 1.1rem;
}

a.no-underline {
  text-decoration: none;
}

.contact-info .contact-line {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.contact-info i {
  font-size: 1.4rem;
}

/* Footer */
.footer-section {
  border-top: 1px solid #dee2e6;
  background-color: #f8f9fa;
  color: #6c757d;
  font-size: 0.95rem;
}

.footer-section img {
  max-height: 60px;
}

.footer-section .footer-text {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Mobil optimalizálás */
@media (max-width: 992px) {
  .navbar .logo {
    width: 25%;
    max-height: 60px;
  }

  .navbar-collapse {
    background-color: #fff;
  }

  .navbar-collapse.show {
    animation: dropdownFade 0.3s ease-in-out;
  }

  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption {
    bottom: 20%;
  }

  .carousel-caption .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .navbar .motto {
    font-size: 0.85rem;
  }
}
