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

body{
  font-family: Arial, sans-serif;
  background:#111;
  color:#fff;
  line-height:1.6;
}

header{
  background:#000;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:3px solid #f5c542;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo img{
  width:90px;
  border-radius:8px;
}

.logo h1{
  font-size:2rem;
  color:#f5c542;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  font-weight:bold;
}

nav a:hover{
  color:#f5c542;
}

.hero{
  background:linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
  url('assets/logo-flyer.jpeg') center/cover;
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
}

.hero-content h2{
  font-size:3rem;
  margin-bottom:20px;
}

.hero-content p{
  font-size:1.2rem;
  max-width:800px;
  margin:auto;
}

.btn{
  display:inline-block;
  margin-top:25px;
  background:#f5c542;
  color:#000;
  padding:14px 28px;
  text-decoration:none;
  font-weight:bold;
  border-radius:5px;
}

.section{
  padding:70px 40px;
  max-width:1200px;
  margin:auto;
}

.section h2{
  color:#f5c542;
  margin-bottom:25px;
  font-size:2.2rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
}

.card{
  background:#1c1c1c;
  padding:25px;
  border:1px solid #333;
  border-radius:10px;
}

.card h3{
  color:#f5c542;
  margin-bottom:10px;
}

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

.gallery-item{
  background:#1c1c1c;
  padding:15px;
  border-radius:10px;
}

.gallery-item img{
  width:100%;
  border-radius:8px;
}

.contact-box{
  background:#1c1c1c;
  padding:30px;
  border-radius:10px;
}

footer{
  background:#000;
  text-align:center;
  padding:25px;
  margin-top:50px;
  border-top:3px solid #f5c542;
}

.placeholder{
  width:100%;
  height:250px;
  background:#333;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#aaa;
  border-radius:8px;
}

@media(max-width:768px){
  header{
    flex-direction:column;
    gap:15px;
  }

  .hero-content h2{
    font-size:2.2rem;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  nav a{
    margin:10px;
  }
}

.site-header{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:14px 7%;background:#111;border-bottom:3px solid #f5c400}
.site-header .brand{display:inline-flex;align-items:center;text-decoration:none}
.site-logo{max-height:90px;width:auto;display:block;object-fit:contain;background:#fff;border-radius:4px;padding:4px}
.site-header nav{display:flex;gap:22px;flex-wrap:wrap}
.site-header nav a{color:#fff;text-decoration:none;font-weight:700}
.site-header nav a:hover{color:#f5c400}
.gallery-hero,.contact-hero{text-align:center;padding:55px 20px;background:#1b1b1b;color:#fff}
.gallery-hero h1,.contact-hero h1{margin:0 0 10px;font-size:clamp(2rem,5vw,3.5rem)}
.project-gallery{max-width:1180px;margin:0 auto;padding:35px 20px 60px}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:22px}
.gallery-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 5px 18px rgba(0,0,0,.15)}
.gallery-card img{width:100%;height:230px;object-fit:cover;display:block}
.gallery-card .caption{padding:12px 14px;font-weight:700;color:#222}
.contact-box{max-width:760px;margin:35px auto;padding:30px;background:#fff;border-radius:12px;box-shadow:0 5px 18px rgba(0,0,0,.15);font-size:1.1rem}
.contact-box a{color:#111;font-weight:700}
@media(max-width:700px){.site-header{flex-direction:column;text-align:center}.site-logo{max-height:75px}.site-header nav{justify-content:center}}
