/* --- ALAP STÍLUSOK --- */
body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  color: #222;
  background-color: #f8fafc;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  color: #0d1b2a;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- NAVIGÁCIÓ --- */
.navbar {
  transition: background 0.4s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #1e90ff;
}

/* Lapozás alatt áttetsző helyett sötétebb fix háttér */
.navbar.bg-dark {
  background-color: rgba(20, 20, 30, 0.95) !important;
}

/* --- HERO SZEKCIÓ --- */
.hero-section {
  position: relative;
  background: url('header-image.jpg') center/cover no-repeat;
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-section .content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  padding: 1rem;
}

.hero-section h1 {
  font-size: 3rem;
  letter-spacing: 0.5px;
}

.hero-section p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* --- VIDEÓK --- */
#videos iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- GALÉRIA --- */
#gallery img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* --- LIGHTBOX --- */
.modal-content {
  border-radius: 8px;
  overflow: hidden;
}

/* --- KAPCSOLAT --- */
#contact {
  background: #ffffff;
  border-top: 3px solid #1e90ff;
  border-bottom: 3px solid #1e90ff;
}

#contact h2 {
  color: #0d1b2a;
}

#contact .form-control {
  border-radius: 6px;
  border: 1px solid #cfdbe2;
  transition: border-color 0.2s ease;
}

#contact .form-control:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 4px rgba(30,144,255,0.3);
}

#contact button {
  background-color: #1e90ff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 20px;
  transition: background 0.3s ease;
}

#contact button:hover {
  background-color: #0a74d1;
}

/* --- SZEMÉLYEK --- */
.contact-person {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 15px 20px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-person:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- LÁBLÉC --- */
footer {
  background: #0d1b2a;
  color: #ddd;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

footer small {
  opacity: 0.8;
}

/* --- RESPONSZÍV FINOMÍTÁSOK --- */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}

/* --- KAPCSOLAT SZEKCIÓ ÚJ STÍLUS --- */
#contact {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#contact h2 {
  color: #0d1b2a;
  letter-spacing: 0.5px;
}

/* Kontakt személy kártyák */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-card {
  padding: 25px 30px !important;
}
.contact-card h5 {
  font-size: 1.25rem;
}

.profile-pic {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1e90ff;
}

/* Kontakt űrlap */
.contact-form {
  transition: box-shadow 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #cfdbe2;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 6px rgba(30,144,255,0.25);
}

.contact-form button {
  border-radius: 8px;
  background: linear-gradient(90deg, #1e90ff, #007bff);
  border: none;
  transition: background 0.3s ease, transform 0.1s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #1c86ee, #006be0);
  transform: translateY(-1px);
}

/* HEADER SLIDER */
.header-slider {
  margin-top: 56px; /* navbar helye */
}

.slider-img {
  height: 449px;
  object-fit: cover;
  object-position: center;
}

/* Carousel fade animation finomítása */
.carousel.carousel-fade .carousel-item {
  transition: opacity 1s ease;
}

/* Mobil optimalizálás (ha kell kisebb magasság) */
@media (max-width: 768px) {
  .slider-img {
    height: 260px;
  }
}

.company-info {
  background: #f8fafc;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.company-info h5 {
  font-size: 1.25rem;
}

.company-info a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.company-info a:hover {
  text-decoration: underline;
}

.company-info p {
  line-height: 1.5;
}
.footer-custom {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  background-color: #0d1b2a;
  color: #ccc;
  border-top: 2px solid #1e90ff;
}

.footer-custom a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.footer-custom a:hover {
  text-decoration: underline;
  color: #63b3ff;
}
#about {
  line-height: 1.75;
  font-size: 1.05rem;
}

#about h2 {
  font-size: 1.75rem;
  color: #0d1b2a;
}

@media (max-width: 768px) {
  #about .lead {
    font-size: 1rem;
  }
}


body {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  color: #333;
}

/* Header Slider */
.header-slider { position: relative; margin-top: 66px; }
.slider-img { height: 480px; object-fit: cover; }
.header-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
}
.header-overlay h1 { font-weight: 700; font-size: 2rem; }
.header-overlay p { font-size: 1.1rem; }

/* Services */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery-item { cursor: pointer; transition: transform 0.3s ease; }
.gallery-item:hover { transform: scale(1.05); }

/* Contact */
.profile-pic {
  width: 110px; height: 110px; object-fit: cover;
  border-radius: 50%; border: 4px solid #1e90ff;
}
.contact-form .form-control:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 4px rgba(30,144,255,0.3);
}

/* Company Info */
.company-info {
  background: #f8fafc; border-radius: 8px;
  padding: 30px 20px; max-width: 600px; margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.company-info a {
  color: #1e90ff; text-decoration: none; font-weight: 500;
}
.company-info a:hover { text-decoration: underline; }

/* Footer */
.footer-custom {
  font-size: 0.9rem; letter-spacing: 0.3px;
  background-color: #0d1b2a; color: #ccc;
  border-top: 3px solid #1e90ff;
}
.footer-custom a { color: #1e90ff; text-decoration: none; }
.footer-custom a:hover { text-decoration: underline; color: #63b3ff; }

/* Map Container */
.map-container iframe { width: 100%; height: 400px; border: none; }

/* Responsive */
@media (max-width:768px) {
  .slider-img { height: 260px; }
  .header-overlay h1 { font-size: 1.5rem; }
}


#videos video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #000;
}

#videos h2 {
  letter-spacing: 0.5px;
}

#videos p {
  font-size: 1.05rem;
}
