:root {
  --black: #000000;
  --gold: #D1AB2C;
  --white: #ffffff;
  --muted: #5b6b78;
  --wrap: 1100px;
  font-family: 'Poppins', sans-serif;
}

body { margin: 0; background: var(--white); color: var(--black); line-height: 1.6; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

 h2,h3,h4{
    font-family: 'Cinzel', serif;
}

/* Navbar */
.navbar {
  background: #000;
  height: 80px;
  padding: 0 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop Menu */
.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.desktop-menu .nav-item {
  list-style: none;
}

.desktop-menu .nav-link {
  color: #f1f1f1 !important;
  font-size: 13px;
  font-weight: 100;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding: 0 !important;
  line-height: normal !important;
}

/* Hover underline */
.desktop-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #f3c623d0;
  transition: width 0.3s ease;
}

.desktop-menu .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Brand Area */
.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.brand-text {
  padding-top: 8px;
  font-family: 'Cinzel', serif;
  display: flex;
  flex-direction: column;
  line-height: 18px;
}

.brand-title {
  padding-top: 4px;
  font-size: 30px;
  color: #debf5b;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 13px;
  color: #fff9eb;
  margin-top: 1px;
}

/* Mobile Menu Icon */
.menu-icon {
  font-size: 25px;
  color: #d8a114;
  cursor: pointer;
  display: none;
}

/* Mobile Styles */
@media (max-width: 1000px) {
  .desktop-menu {
    display: none !important;
  }

  .menu-icon {
    display: block !important;
  }

  .brand-title {
  padding-top: 4px;
  font-size: 30px;
  color: #debf5b;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff9eb;
  margin-top: 1px;
}
}

/* Side Menu */
.side-menu {
  height: 100%;
  width: 260px;
  position: fixed;
  top: 0;
  right: 0;
  background: #000000;
  overflow-y: auto;
  padding-top: 80px;
  z-index: 999999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.36, 1);
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu a {
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 100;
  color: #fff;
  display: block;
  text-decoration: none;
}

.side-menu a:hover {
  color: #e1b532;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1000000;
}

/* Main Wrapper */
.mv-wrapper {
  display: flex;
  max-width: 1300px;
  margin: auto;
  background: rgb(23, 23, 23);
}

.mv-content {
  flex: 1;
}

.mv-image {
  flex: 1;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 170px 40px;
  display: flex;
  justify-content: center;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}
.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}
.hero-text h2 {
  color: #000000;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.hero-image img {
  width: 400px;
  max-width: 100%;
}
.btn-primary {
  background-color: #D1AB2C;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #000000;
}

/* -------------------------- */
/* 📱 MOBILE RESPONSIVE PART */
/* --------------------------*/
@media (max-width: 768px) {

  .hero {
    padding: 100px 20px;
    text-align: center;
  }

  .hero-content {
    margin-top: 120px;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .hero-text h2 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-image img {
    width: 280px;
  }
}




/* Info Sections */
.info { background: #fff; padding: 80px 0; }
.info h2 { color: var(--black); margin-bottom: 15px; }
.highlight-points { list-style: none; padding: 0; margin: 10px 0; }
.highlight-points li { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.highlight-points i { color: var(--gold); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.step-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-weight: 700; }


/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: all .9s; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* --- CTA --- */
.need-exchange-section {
    background-color: rgb(0, 0, 0);
    text-align: center;  
    color: #f5f5f5;     /* Centers text + button */
    padding: 40px 20px;
}

.need-exchange-section h2 {
    margin-bottom: 10px;
}

.need-exchange-section p {
    margin-bottom: 20px;
}

.need-exchange-btn {
    display: inline-block;
    background-color: #d4b24d;  /* Your gold color */
    color: #0a0a0a;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

/* --------------------------------
   FOOTER
----------------------------------- */
.footer {
  font-family: 'Cinzel', serif;
  background-color: #000000;
}

.footer a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

.footer p, .footer li {
  font-size: 12px;
  line-height: 1.6;
}