.hero {
  background-image: url("images/hero1.webp");
  background-size: cover;
  background-position: center;
}



.hero-content {
  position: relative; 
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 28px;
}

.hero p {
  font-size: 16px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero p {
    font-size: 18px;
  }
}

}.hero {
  background-image: url("images/hero1.webp");
  background-size: cover;
  background-position: center;
}.social-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #222;
    background: #fff;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2e2e2e, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    color: #fff;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* TEXT */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #7a7a7a;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #9a9a9a;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.gray {
    background: #f4f4f4;
}

.services {
    list-style: none;
    margin-top: 20px;
}

.services li {
    font-size: 1.1rem;
    padding: 10px 0;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .brand {
        flex-direction: column;
    }

    .brand-name {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .logo {
        width: 60px;
    }
}/* MIÉRT MINKET */
.why-us {
    background: #1f1f1f;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.why-us ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.why-us li {
    font-size: 18px;
    padding: 10px 0;
}

/* KAPCSOLAT ŰRLAP */
.contact {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact textarea {
    min-height: 120px;
    resize: vertical;
}

.contact button {
    padding: 15px;
    font-size: 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact button:hover {
    background: #555;
}
.references {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.references h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.reference-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.reference-grid img:hover {
    transform: scale(1.05);
}

/* ===== TELEFONOS MENÜ ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #2b2b2b;
        flex-direction: column;
        text-align: center;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px;
        border-top: 1px solid #444;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== HÍVÁS / EMAIL GOMBOK ===== */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: #f2f2f2;
}

.btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.btn.call {
    background: #2ecc71;
}

.btn.email {
    background: #3498db;
}
.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #2f2f2f;
    z-index: 1000;
}

.top-inner {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
}

.top-logo img {
    height: 40px;
}

.top-nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.call-btn {
    background: #6b7280;
    padding: 8px 14px;
    border-radius: 20px;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* MOBIL */
@media (max-width: 768px) {
    .top-nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #2f2f2f;
        padding: 20px;
        border-radius: 10px;
    }

    .top-nav.active {
        display: block;
    }

    .top-nav a {
        display: block;
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* HERO LEJJEBB TOLÁSA */
.hero {
    margin-top: 90px;
}
@media (max-width: 768px) {
    .brand-name {
        font-size: 26px;
    }
}
Te küldted
.brand-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.brand-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}
/* CONTACT FORM */
.contact {
  background: #f5f5f5;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact textarea {
  min-height: 120px;
  resize: vertical;
}

.contact button {
  background: #4fa3ff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
}

.contact button:hover {
  background: #2f8ae0;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* MOBIL */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .top-nav {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 15px;
    border-radius: 10px;
  }

  .top-nav.active {
    display: flex;
  }

  .top-nav a {
    padding: 10px;
    color: white;
    text-decoration: none;
  }

  .call-btn {
    background: #2ecc71;
    color: black;
    border-radius: 6px;
    text-align: center;
  }
}
/* ===== MOBIL NÉZET ===== */
@media (max-width: 768px) {

  .top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  .top-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .top-nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .top-nav.active {
    display: flex;
  }
}

/* ===== ASZTALI NÉZET ===== */
@media (min-width: 769px) {

  .menu-toggle {
    display: none;
  }

  .top-nav {
    display: flex;
    gap: 20px;
  }
}
/* ===== MOBIL MENÜ JAVÍTÁS ===== */
@media (max-width: 768px) {
  .top-nav {
    background: #ffffff;
  }

  .top-nav a {
    color: #111 !important;
    font-size: 18px;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid #eee;
  }

  .top-nav a.call-btn {
    background: #2ecc71;
    color: white !important;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
  }
}
.faq {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.faq details {
  margin-bottom: 14px;
}

.faq summary {
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  background: #f4f4f4;
  border-radius: 12px;
  cursor: pointer;
}

.faq details[open] summary {
  background: #e6e6e6;
}

.faq p {
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.6;
}