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

body {
  background: #0b1d2a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #071621;
}

.logo {
  height: 50px;
}

nav a {
  color: #d4af37;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(135deg, #0b1d2a, #071621);
}

.hero-text h1 {
  font-size: 60px;
  color: #d4af37;
  letter-spacing: 2px;
}

.hero-text p {
  font-size: 20px;
  margin: 15px 0 30px;
}

.btn {
  background: #d4af37;
  color: #071621;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.hero-img {
  height: 420px;
}

/* PRODUCTS */
.products {
  padding: 80px 60px;
  background: #071621;
  text-align: center;
}

.products h2 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.card {
  background: #0b1d2a;
  padding: 30px;
  border-radius: 16px;
}

.card img {
  height: 220px;
}

.card h3 {
  margin-top: 20px;
  color: #d4af37;
}

/* ABOUT */
.about {
  padding: 80px 60px;
  text-align: center;
}

.about h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 20px;
}

/* CONTACT */
.contact {
  padding: 80px 60px;
  background: #071621;
  text-align: center;
}

.contact h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}
/* HERO BANNER */
.hero-banner {
  height: 90vh;
  background: url("assets/hero-banner.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner .overlay {
  background: rgba(7, 22, 33, 0.75);
  padding: 60px;
  text-align: center;
  border-radius: 20px;
  max-width: 700px;
}

.hero-logo {
  height: 70px;
  margin-bottom: 20px;
}

.hero-banner h1 {
  font-size: 64px;
  color: #d4af37;
  letter-spacing: 3px;
}

.tagline {
  font-size: 22px;
  margin: 15px 0;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 30px;
}
/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
