* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #fff;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  color: #d4af37;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #b9972e;
}

/* SERVICES */

.services {
  padding: 100px 10%;
  text-align: center;
}

.services h2 {
  color: #d4af37;
  margin-bottom: 60px;
  font-size: 36px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(212,175,55,0.1);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.4);
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 22px;
}

.card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT */

.contact {
  padding: 100px 10%;
  text-align: center;
  background: #111;
}

.contact h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

/* FOOTER */

footer {
  padding: 20px;
  text-align: center;
  background: #000;
  font-size: 14px;
  color: #888;
}