* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0e0d0d;
  color: white;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */

header {
  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) {

  header {
    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;
  }

}

/* About Section */
.main-container {
  max-width: 900px;
  margin: 140px auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

.main-container h1 {
  font-size: 48px;
  color: #b48f1f;
  margin-top: 13%;
  margin-bottom: 25px;
  font-weight: 600;
}

.main-container h3 {
    color: #b48f1f;
  font-size: 24px;
  margin-top: 13%;
  margin-bottom: 15px;
  font-weight: 600;
}

.main-container p {
  font-size: 16px;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 25px;
}

/* LUXURY section*/
.luxury {
  text-align: center;
  padding: 100px 20px;
  background-color: #111;
  ;
}

.luxury h2 {
  font-size: 40px;
  margin-bottom: 20px;
}


button {
  background: #c9a227;
  color: black;
  border: 2px solid yellow;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

/* 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: 320px;
  padding: 30px;
  border-radius: 15px;
  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;
  white-space: nowrap;
}

.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;
}

/* ===================== */
/* TABLET RESPONSIVE */
/* ===================== */

@media (max-width: 1024px) {

  header {
    padding: 20px 30px;
  }

  nav {
    gap: 20px;
  }

  .main-container {
    margin: 120px auto 80px auto;
  }

  .main-container h1 {
    font-size: 38px;
  }

  .cards {
    gap: 20px;
  }

  .card {
    width: 280px;
  }

  .footer-container {
    gap: 30px;
  }

}

/* ===================== */
/* MOBILE 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;
  }

  .nav-icons {
    margin-top: 10px;

  }

  /* About Section */
  .main-container {
    margin: 160px auto 60px auto;
    padding: 0 15px;
  }

  .main-container h1 {
    font-size: 30px;
  }

  .main-container h3 {
    font-size: 20px;
  }

  .main-container p {
    font-size: 14px;
  }

  /* Luxury Section */
  .luxury {
    padding: 70px 15px;
  }

  .luxury h2 {
    font-size: 28px;
  }

  /* Cards */
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  /* Subscribe */
  .subscribe-box {
    padding: 40px 20px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }

  .subscribe-box input {
    width: 100%;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}