:root {
  --primary: #C67C4E;
  --accent: #FFB26B;
  --bg: #121212;
  --card: #1E1E1E;
  --text: #EAEAEA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #000000cc, #000000cc),
              url('https://images.unsplash.com/photo-1509042239860-f550ce710b93');
  background-size: cover;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  animation: fadeIn 1s ease;
}

.hero p {
  margin-top: 10px;
  opacity: 0.8;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 80px 40px;
  text-align: center;
}

.dark {
  background: #181818;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
  margin-top: 30px;
}

/* CARD */
.card {
  background: var(--card);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* REVIEW */
.review {
  background: var(--card);
  padding: 20px;
  border-radius: 10px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* MOBILE */
@media(max-width:768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

g{}