* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
}

/* NAVBAR */
header {
  background: rgba(0, 0, 0, 0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #2b2b2b;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d4af37;
}

.brand span {
  color: #d4af37;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.92)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 900px;
}

.label {
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 58px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-text {
  color: #ddd;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.btn {
  background: #d4af37;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #b89025;
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 85px 20px;
}

.dark-section {
  max-width: 100%;
  background: #0b0b0b;
}

.dark-section h2,
.dark-section .cards {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  color: #d4af37;
  text-align: center;
  font-size: 36px;
  margin-bottom: 45px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(145deg, #111, #070707);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 30px;
  min-height: 180px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 21px;
}

.card p,
.center-text,
.contact p {
  color: #ddd;
  line-height: 1.7;
  font-size: 17px;
}

.center-text {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.contact {
  text-align: center;
}

.contact .btn {
  margin-top: 20px;
}

footer {
  background: #000;
  border-top: 1px solid #2b2b2b;
  padding: 25px;
  text-align: center;
  color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

 .brand-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #d4af37;
  background: #000;
  padding: 2px;
}

  .brand span {
    font-size: 19px;
  }
}