* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b0b0b;
  color: #eaeaea;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  border-bottom: 1px solid #1f1f1f;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: #fff;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: #ff7a00;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  padding: 120px 0;
  text-align: center;
}

.hero h2 {
  font-size: 48px;
  color: #fff;
}

.hero p {
  margin-top: 10px;
  font-size: 18px;
  color: #aaa;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff7a00, #ff3c00);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.small {
  padding: 8px 18px;
  font-size: 14px;
}

/* Sections */
.section {
  padding: 70px 0;
  text-align: center;
}

/* Services + Beats Grid */
.grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Cards */
.box {
  background: #111;
  padding: 25px;
  width: 300px;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.box:hover {
  transform: translateY(-5px);
  border-color: #ff7a00;
}

.box h3 {
  margin-bottom: 10px;
  color: #fff;
}

.box p {
  margin-bottom: 15px;
  color: #aaa;
}

/* Beats section slightly darker */
.dark {
  background: #050505;
}

/* Contact */
#contact p {
  margin-top: 10px;
  color: #ccc;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid #1f1f1f;
  text-align: center;
  padding: 20px;
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  nav {
    display: none;
  }
}