body{
  margin:0;
  font-family:Arial;
  color:white;
  background:url('assets/bg.jpg') no-repeat center center fixed;
  background-size:cover;
}

.header{
  text-align:center;
  padding:20px;
  border-bottom:2px solid orange;
  background:rgba(0,0,0,0.6);
}

.logo{font-size:28px;font-weight:bold;}
.logo span{color:orange;}

.phone{font-size:26px;color:orange;font-weight:bold;}
.arrow{font-size:28px;margin:10px;}

.buttons{display:flex;justify-content:center;gap:10px;}
.btn{padding:10px 20px;border-radius:5px;text-decoration:none;font-weight:bold;}
.call{background:orange;color:black;}
.whatsapp{background:#25D366;color:white;}

.hero {
  text-align: center;
  margin: 50px 0;
}

.hero h1 {
  font-family: 'Alfa Slab One', sans-serif;
  color:orange;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p.sub {
  font-family: 'Alfa Slab One', sans-serif;
  color: #FFFF00;
  font-size: 15px;
  margin-top: 0;
}

.gallery{text-align:center;padding:10px;}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:10px;
}
.grid img{
  width:100%;
  border-radius:8px;
}
