body {
  margin:0;
  font-family:'Manrope',sans-serif;
  background:#0d0d0d;
  color:#fff;
}

.container {
  width:90%;
  max-width:1100px;
  margin:auto;
}

.top-bar {
  text-align:center;
  padding:10px;
  font-size:13px;
  background:#1a1a1a;
}

.header {
  background:#111;
  padding:20px 0;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  font-weight:700;
}

nav a {
  margin:0 10px;
  color:#bbb;
  text-decoration:none;
}

.btn {
  padding:10px 20px;
  border-radius:25px;
}

.primary {
  background:#d4af37;
  color:#000;
}

.hero {
  padding:80px 0;
}

.hero-grid {
  display:flex;
  gap:40px;
  align-items:center;
}

/* ECHTES BARBER HERO (MASCHINE AM KOPF) */

.hero-image {
  width:100%;
  height:420px;
  border-radius:20px;
  background:url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70') center/cover;
}

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

.card {
  background:#1a1a1a;
  padding:20px;
  border-radius:15px;
}

.img {
  height:200px;
  border-radius:10px;
  margin-bottom:10px;
}

/* NUR BARBER (KEIN FITNESS, KEIN RANDOM) */

.img1 {
  background:url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70') center/cover;
}

.img2 {
  background:url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a') center/cover;
}

.img3 {
  background:url('https://images.unsplash.com/photo-1605497788044-5a32c7078486') center/cover;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin-top:40px;
}

.g1,.g2,.g3,.g4 {
  height:200px;
  border-radius:15px;
}

.g1 {
  background:url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70') center/cover;
}

.g2 {
  background:url('https://images.unsplash.com/photo-1605497788044-5a32c7078486') center/cover;
}

.g3 {
  background:url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a') center/cover;
}

.g4 {
  background:url('https://images.unsplash.com/photo-1593702288056-fd70e3c8c9a2') center/cover;
}

.contact form {
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:400px;
  margin:auto;
}

input, textarea {
  padding:10px;
}

.footer {
  text-align:center;
  padding:30px;
  background:#111;
}

@media(max-width:900px){
  .hero-grid {
    flex-direction:column;
  }

  .grid {
    grid-template-columns:1fr;
  }
}
