* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1d1d1d;
  background: #f5f2ec;
  line-height: 1.6;
}

.hero {
  min-height: 78vh;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("Zundapp2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
}

.logo {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .5px;
}

.links a {
  color: white;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 600;
}

.hero-content {
  padding: 110px 8% 60px;
  max-width: 760px;
}

h1 {
  font-size: clamp(48px, 8vw, 92px);
  margin: 0 0 10px;
  line-height: 1;
}

.hero-content p {
  font-size: 24px;
  max-width: 620px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: #d02121;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.section {
  padding: 70px 8%;
  max-width: 1160px;
  margin: auto;
}

.section h2 {
  font-size: 36px;
  margin-top: 0;
}

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

.card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.placeholder {
  min-height: 210px;
  border-radius: 18px;
  background: #ddd3c3;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #655;
}

.contact {
  background: white;
  border-radius: 24px;
  margin-bottom: 50px;
}

.contact a {
  color: #d02121;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 30px;
  background: #151515;
  color: white;
}

@media (max-width: 760px) {
  nav {
    display: block;
  }

  .links {
    margin-top: 14px;
  }

  .links a {
    display: inline-block;
    margin: 6px 12px 6px 0;
  }

  .card-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 70px;
  }
.gallery-grid {
    display: flex;
    gap: 20px,
    flex-wrap: wrap;
}
.gallery-grid img {
    width: 280px  ! important;
    height: 180px ! important;
    object-fit: cover ! importent;
    border-radius: 12px;
}
