* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* HEADER */

.header {
  min-height: 120px;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 70px;
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 220px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

nav a:hover {
  color: #d4af37;
}

.phone {
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

/* HERO */

.hero {
  min-height: 650px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.25)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 70px;
}

.hero-text {
  max-width: 780px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #d4af37;
}

.hero p {
  font-size: 28px;
  color: #e5e5e5;
  margin-bottom: 35px;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f6d365, #d4af37);
  color: #000;
  padding: 18px 34px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

.hero-btn:hover {
  background: #fff;
}

/* FEATURES */

.features {
  background: #080808;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 45px 70px;
  text-align: center;
  gap: 20px;
}

.feature {
  border-right: 1px solid #333;
  padding: 20px;
}

.feature:last-child {
  border-right: none;
}

.feature h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 10px;
}

.feature p {
  color: #ccc;
  font-size: 16px;
}

/* LEISTUNGEN */

.leistungen,
.projekte,
.about,
.contact {
  padding: 80px 70px;
  background: #000;
}

.leistungen small,
.projekte small,
.about small,
.contact small {
  color: #d4af37;
  font-weight: bold;
  letter-spacing: 2px;
}

.leistungen h2,
.projekte h2,
.about h2,
.contact h2 {
  font-size: 42px;
  margin: 12px 0 35px;
}

.section-text {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 750px;
  line-height: 1.6;
}

/* SERVICE CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  height: 230px;
  border: 1px solid #333;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  font-size: 24px;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
  z-index: 1;
}

.card span {
  position: relative;
  z-index: 2;
}

.card:hover {
  transform: scale(1.04);
  border-color: #d4af37;
}

.card1 {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=80");
}

.card2 {
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1200&q=80");
}

.card3 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
}

.card4 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80");
}

/* PROJECT GALLERY */

.projekte {
  background: #050505;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  height: 270px;
  border-radius: 10px;
  border: 1px solid #333;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
  z-index: 1;
}

.gallery-item span {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gallery-item:hover {
  transform: scale(1.04);
  border-color: #d4af37;
}

.gallery1 {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80");
}

.gallery2 {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80");
}

.gallery3 {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=80");
}

.gallery4 {
  background-image: url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1200&q=80");
}

.gallery5 {
  background-image: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1200&q=80");
}

.gallery6 {
  background-image: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1200&q=80");
}

/* ABOUT */

.about {
  background: #000;
}

.about p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 18px;
}

/* CONTACT */

.contact {
  background: #050505;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 35px;
}

.contact-info {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 35px;
}

.contact-info h3 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  color: #ddd;
  line-height: 1.6;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #000 !important;
  padding: 15px 24px;
  border-radius: 6px;
  font-weight: bold;
}

.contact-form {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(135deg, #f6d365, #d4af37);
  color: #000;
  border: none;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #fff;
}

/* FOOTER */

.footer {
  background: #000;
  text-align: center;
  padding: 25px;
  color: #aaa;
  border-top: 1px solid #1f1f1f;
}

/* MOBILE */

@media (max-width: 1000px) {
  .header {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .logo {
    width: 200px;
  }

  nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone {
    font-size: 16px;
  }

  .hero {
    padding: 60px 25px;
    min-height: 520px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 20px;
  }

  .features,
  .cards,
  .gallery,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .leistungen,
  .projekte,
  .about,
  .contact {
    padding: 50px 25px;
  }
}.project-category {
  margin-top: 55px;
}

.project-category h3 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 22px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  height: 280px;
  border-radius: 12px;
  border: 1px solid #333;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.08));
  z-index: 1;
}

.gallery-item span {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gallery-item:hover {
  transform: scale(1.04);
  border-color: #d4af37;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 240px;
  }
}