
.hero {
  height: 100vh;
  background: url('photos/zyto.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 300%;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}


.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background: rgb(255, 122, 0, 0.5);
  border:  2px solid #fff;
  color: #fff;
}

.btn.primary:hover {
  background: #995112;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}


.about {
  background: #fff;
  color: #333;
  padding: 80px 20px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn.orange {
  display: inline-block;
  padding: 12px 25px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn.orange:hover {
  background: #e56b00;
}

.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
}


.why-us {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.underline2 {
  width: 60px;
  height: 4px;
  background: #ff7a00;
  margin: 15px auto;
  border-radius: 2px;
}

.subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 50px;
}

.why-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-box {
  flex: 1 1 280px;
  max-width: 22%;
}

.feature-box img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(1) saturate(2) hue-rotate(210deg);
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .underline{
    width:100%;
  }


  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: center;
    padding: 0 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.3rem;
    padding: 0 15px;
  }

  .hero-content .buttons .btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .about-text h2,
  .why-container h2 {
    font-size: 1.3rem;
    text-align: center;
  }

  .about-text p,
  .why-container p,
  .why-features p {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section li {
    font-size: 0.85rem;
    line-height: 1.3rem;
  }

  .map-container iframe {
    height: 180px;
  }



  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding: 25px 10px;
  }

  .footer-section {
    width: 100%;
    max-width: 300px;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .footer-section p,
  .footer-section li,
  .footer-section a {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .footer-logo {
    max-width: 150px;
    margin: 0 auto 10px auto;
  }

  .map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 10px;
    text-align: center;
  }
  .why-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    max-width: 90%;
  }
}

