:root{
  --bg:#000;
  --panel:#111;
  --text:#fff;
  --muted:#cfcfcf;
  --accent:#c1121f;
}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

/* HERO */
.hero{
  min-height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-overlay{
  width:100%;
  padding: 90px 20px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(2px);
}

.logo{
  width: min(620px, 94vw);
  max-width: 620px;
  height:auto;
  margin-bottom: 18px;
  filter:
    drop-shadow(0 0 40px rgba(193,18,31,1))
    drop-shadow(0 0 120px rgba(255,255,255,.28));
}

.tagline{
  color: var(--muted);
  margin: 10px auto 28px;
  letter-spacing: .6px;
}

.btn{
  display:inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(193,18,31,.25);
}
.btn:hover{text-decoration:none; filter: brightness(1.05);}

.section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section.dark{ background: var(--panel); }

.services{
  list-style:none;
  padding:0;
  display:grid;
  gap: 14px;
}
.services li{
  background:#1a1a1a;
  border:1px solid #222;
  padding: 18px;
  border-radius: 14px;
}

/* GALLERY */
.gallery{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.gallery img{
  width:100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #222;
  display:block;
}
.gallery a:hover img{
  outline: 2px solid var(--accent);
  outline-offset: 0px;
}

footer{
  text-align:center;
  padding: 28px;
  color:#aaa;
  background:#000;
}

/* Mobile */
@media (max-width: 520px){
  .hero-overlay{ padding: 70px 16px; }
  .gallery img{ height: 170px; }
}
