* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0e0e0e;
  color: white;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

/* Nav Links */
nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
}

nav a:hover {
  color: #d4af37;
}

/* Icons */
.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-icons img {
  width: 20px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}


/* ================= MOBILE ================= */

@media (max-width:768px) {

  .navbar {
    padding: 20px;
  }

  /* Show toggle */
  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    right: 10px;
  }

  /* Hide normal nav */
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background: #111;
    text-align: center;
    padding: 20px 0;
  }

  nav a {
    display: block;
    margin: 15px 0;
  }

  nav.active {
    display: flex;
  }

  .nav-icons {
    display: flex;
  }

}

/* HeroSection */
.hero {
  height: 90vh;
  background: url("martbg1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: #d4af37;
}

.hero-content p {
  margin: 20px 0;
  color: #0a0a0a;
}

button {
  background: #c9a227;
  color: black;
  border: 2px solid yellow;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

/* COLLECTIONS section */
/* =========================
   COLLECTION SECTION
========================= */

.collections {
  padding: 50px 20px;
  background: #202020;
  text-align: center;
}

.collections h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* =========================
   GRID LAYOUT
========================= */

.grid {
  display: flex; /* flex use karenge taake line me aaye */
  flex-wrap: wrap; /* responsive ke liye wrap */
  justify-content: center; /* center align */
  gap: 40px;
  max-width: 1000px; /* grid ka max width fix */
  margin: 0 auto;
}

/* =========================
   CARD STYLE
========================= */

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 160px; /* chhota size */
  flex: 0 0 auto; /* flex shrink prevent */
}

.card img {
  width: 100%;
  height: 120px; /* chhota height */
  border-radius: 25px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card:hover img {
  transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .card {
    width: 140px;
  }

  .card img {
    height: 100px;
  }
}

@media (max-width: 600px) {
  .card {
    width: 120px;
  }

  .card img {
    height: 90px;
  }
}




/* TRENDING section*/
.trending {
  padding: 60px;
  text-align: center;
}

.product img:hover {
  transform: scale(1.1);
  transition: .4s;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product {
  background: #161616;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product p {
  color: #d4af37;
  margin-top: 5px;
}

.product h6 {
  color: #969494;
}

/* LUXURY section*/
.luxury {
  text-align: center;
  padding: 100px 20px;
  background: #111;
}

.luxury h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #0a0a0a;
  font-size: 14px;
  color: #777;
}


/* <!-- client-section--> */
.client-section {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.client-section::before,
.client-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.client-section::before {
  top: -100px;
  left: -150px;
}

.client-section::after {
  bottom: -100px;
  right: -150px;
}

.section-title {
  color: white;
  font-size: 32px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 10px auto 0;
}

/* Cards Layout */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.card {
  background: #1a1a1a;
  color: #ccc;
  width: 220px;
  padding: 30px;
  border-radius: 25px;
  position: relative;
  text-align: left;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.stars {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 18px;
}

.quote {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #d4af37;
  font-size: 28px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card h4 {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 5px;
}

.card span {
  font-size: 12px;
  color: #888;
}

/* subscribe-Section */
.subscribe-section {
  background: #0e0c0c;
  ;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.subscribe-box {
  background: #1a1a1a;
  ;
  width: 85%;
  max-width: 1000px;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.subscribe-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f3f1f1;
}

.subscribe-box p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #707070;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}


.subscribe-box input {
  border: none;
  outline: none;
  background: white;
  border-radius: 30px;
  padding: 15px 25px;
  font-size: 16px;
  width: 320px;
  color: #333;
}


.subscribe-box button {
  background: #c9a227;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #b48f1f;
}

.subscribe-box h6 {
  color: #777;
  font-weight: normal;
  font-size: 13px;
}


/*  FOOTER SECTION  */

.footer {
  background-color: black;
  color: #ccc;
  padding: 60px 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-contact span a{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: 0.3s ease;
}


.footer-contact span a img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Hover Effect */
.footer-contact span a:hover{
  transform: translateY(-2px);
}
.footer-col {
  flex: 1 1 220px;
}

.footer-col h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {

  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #d4af37;
}


.footer-about {
  line-height: 1.6;
  margin-bottom: 20px;
}


.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 30px;
}
.social-icons a {
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
}


.newsletter input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  outline: none;
  border-radius: 5px;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  background: #d4af37;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #b9962f;
}

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #333;
  padding: 20px 0;
  font-size: 14px;
}

.footer-contact icon {
  color: #b48f1f;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-contact span a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: 0.3s ease;
  word-break: break-word;
}

.footer-contact img {
  color: #d4af37;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom div span {
  margin-left: 20px;
  cursor: pointer;
}

.footer-bottom div span:hover {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-icons {
    display: none;
  }

  /* HEADER */
  .navbar {
    display: flex;
    padding: 15px 20px;
    text-align: center;
    gap: 10px;
  }

  nav a {
    margin-left: 15px;
    font-size: 14px;
  }

  .nav-icons {
    justify-content: center;
  }

  /* HERO */
  .hero {
    height: 80vh;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }

  button {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* COLLECTION */
  .grid {
    grid-template-columns: 1fr;
  }

  /* TRENDING */
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }

  .trending {
    padding: 40px 20px;
  }

  /* CLIENT SECTION */
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 75%;
  }

  /* SUBSCRIBE */
  .subscribe-box {
    width: 95%;
    padding: 30px 20px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }

  .subscribe-box input {
    width: 100%;
  }

  .subscribe-box button {
    width: 100%;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

/* Small Mobile */
@media (max-width: 480px) {
  .products {
    grid-template-columns: 1fr;
  }
}