* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== FULL WIDTH NAVBAR ===== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.97);
}

/* INNER WRAPPER */
.navbar-inner {
  max-width: 1400px;   /* controls stretch on big screens */
  margin: auto;
  padding: 14px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 55px;
}

.nav-logo span {
  color: #C8A951;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #C8A951;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
}

/* HOVER LINE */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #C8A951;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}

/* CONTACT BUTTON */
.nav-btn {
  background: linear-gradient(45deg,#C8A951,#f3d88f);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-btn::after {
  display: none;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #C8A951;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url("Main 001.jpg") center/cover;
  display: flex;
  align-items: center;
  padding: 50px;
}

.hero-text {
  max-width: 500px;
  animation: fadeSlide 1.5s ease;
}

.hero h1 {
  font-size: 3rem;
  color: #C8A951;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #C8A951;
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* FEATURES */
.features {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.box {
  background: linear-gradient(145deg, #111, #000);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  font-size: 1.1rem;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(200,169,81,0.1);
}

.box h3 {
  margin-top: 10px;
  color: #C8A951;
}

.box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(200,169,81,0.4);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

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

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

a, button {
  -webkit-tap-highlight-color: transparent;
}
