body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #111;
  position: sticky;
  top: 0;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}
.logo a {
  text-decoration: none;
  color: inherit;
}
.logo .after {
  color: white;
}

.logo .shift {
  color: gold;
}
.hero img {
  width: clamp(120px, 18vw, 260px);
  height: auto;
  display: block;
  margin: 0 auto;
}
nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

nav a:hover {
  color: gold;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("logo best.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero h2 {
  margin-top: 650px;
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  color: #bbb;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;


}

.btn {
  padding: 12px 20px;
  border: 1px solid gold;
  color: gold;
  text-decoration: none;
  border-radius: 5px;
}

.btn.primary {
  background: gold;
  color: black;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section.dark {
  background: #151515;
}

.card {
  max-width: 600px;
  margin: auto;
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

ul {
  padding-left: 20px;
}

/* FORM */
.form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px;
  background: gold;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #777;
}
