:root {
  --bg: #0a0a0a;
  --text: #e6e6e6;
  --accent: #d4af37;
  --highlight: #82c0ff;
  --card: #1a1a1a;
  --line: rgba(255, 255, 255, 0.1);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--highlight);
}

nav {
  background: rgba(10, 10, 10, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  backdrop-filter: blur(6px);
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1618773928121-c32242e63f63') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3rem;
  color: var(--accent);
}

.hero p {
  font-size: 1.25rem;
  color: var(--highlight);
  margin-top: 1rem;
}

.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  gap: 2rem;
}

.section img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.text {
  max-width: 500px;
}

.banner {
  background: linear-gradient(90deg, #1f1f1f, #151515);
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text);
  font-size: 1.3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.subscribe {
  background-color: #000;
  padding: 1.5rem;
  text-align: center;
  max-width: 400px;
  margin: 2rem auto;
  border-radius: 4px;
  border: 2px solid #fff;
}

.subscribe h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.subscribe form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.subscribe input,
.subscribe button {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: 2px;
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}

.subscribe button {
  background: #000;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
}

.subscribe button:hover {
  background: #fff;
  color: #000;
}

footer {
  padding: 2rem 1rem;
  text-align: center;
  background: #111;
}

@media (max-width: 768px) {
  .subscribe form {
    flex-direction: column;
  }
}
