/* Reset alapok */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Konténer */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* 📞📧 Felső sáv */
.topbar {
  background-image: url('letöltés.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Jobbra toljuk a gombokat */
.topbar .cta-group {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

/* Gombok a felső sávban */
.cta-btn {
  background-color: #005f73;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #94d2bd;
  color: #000;
}

/* Hero szakasz */
.hero-container {
  text-align: center;
  padding: 60px 20px 40px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #005f73;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0a9396;
}

/* 🎯 Gomb */
.btn {
  display: inline-block;
  background: #ee9b00;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: #ca6702;
  transform: translateY(-2px);
}

/* Szekciók */
section {
  background: white;
  margin: 30px 0;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}

/* Szolgáltatások */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-item {
  flex: 1 1 280px;
  background: #e0fbfc;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Galéria */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 30%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Kapcsolat form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #0a9396;
  outline: none;
}

/* Footer */
footer {
  background: #005f73;
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.footer-cta {
  margin-top: 15px;
}

.footer-cta .btn {
  margin: 10px 5px 0;
}

/* 📱 Sticky mobil CTA sáv */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ee9b00;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.mobile-cta a {
  color: white;
  font-weight: bold;
  font-size: 16px;
  background: #ca6702;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.mobile-cta a:hover {
  background: #bb3e03;
}

/* Reszponzivitás */
@media screen and (max-width: 768px) {
  .service-grid {
    flex-direction: column;
  }

  .gallery img {
    width: 100%;
  }

  .topbar .container {
    flex-direction: column;
    gap: 10px;
  }

  .topbar .cta-group {
    margin-left: 0;
    justify-content: center;
  }
}
