body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  background: rgba(0,0,0,0.9);
  padding: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #ff3c3c;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url("drake1.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  margin: 0;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.8;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  color: #ff3c3c;
  font-size: 2rem;
}

/* IMAGES */
.img {
  width: 80%;
  max-width: 500px;
  border-radius: 15px;
  margin: 30px auto;
  display: block;
  transition: 0.3s;
}

.img:hover {
  transform: scale(1.03);
}

/* CARDS */
.card {
  background: #121212;
  padding: 30px;
  border-radius: 20px;
  margin-top: 25px;
  box-shadow: 0 0 20px rgba(255, 60, 60, 0.15);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff3c3c;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff1f1f;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #000;
  margin-top: 50px;
  font-size: 0.9rem;
}