
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
#products,
#services,
#collections,
#home {
  scroll-margin-top: 100px; 
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  background-color: #ffffff;
}
.site-footer {
  padding: 18px 0;
  text-align: center;
  background: #0f0f0f; /* same as contact section */
  font-size: 12px;
  color: #bfbfbf;
}

.site-footer p {
  margin: 0;
  opacity: 0.7;
}

.site-footer a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.site-footer a:hover {
  opacity: 1;
  color: #ffffff;
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: #000000 !important; /* FULL BLACK */ 
  box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #d4af37;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #d4af37;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}

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

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

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #d4af37;
}

/* RESPONSIVE
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

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

  .nav-links.active {
    display: flex;
  }
} */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 64px; /* below navbar */
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    gap: 20px;

    display: none; /* hidden by default */
    z-index: 1000;
  }

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

/* Section 1 */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1586023492125-27b2c045efd7")
    center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  letter-spacing: 6px;
}

.line {
  display: block;
  width: 80px;
  height: 2px;
  background: #d4af37;
  margin: 20px auto;
}

.hero-content p {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 35px;
}

.btn {
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid #d4af37;
  color: #d4af37;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #d4af37;
  color: #000;
}

/*  Collections  */
.collections {
  padding: 100px 20px;
  background: #f7f5f2;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.collections h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 60px;
}

/* Cards  */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  color: #666;
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: flex-start; /* ⬅️ change */
  padding-top: 90px;       /* ⬅️ space for navbar */
  z-index: 999;
}


.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 90%;
  max-height: calc(100vh - 120px); /* ⬅️ avoids navbar */
  overflow-y: auto;               /* ⬅️ scroll inside */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

/* ✅ IMAGE FIX ONLY */
.modal-content img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 25px;
}

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.modal-content p {
  color: #555;
  margin-bottom: 20px;
}

.modal-content ul {
  text-align: left;
  padding-left: 20px;
}

.modal-content ul li {
  margin-bottom: 10px;
  color: #444;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/*  RESPONSIVE  */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 576px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* ✅ MOBILE IMAGE FIX ONLY */
  .modal-content img {
    height: 220px;
  }
}
/* Section 3  */
.expertise {
  padding: 110px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.expertise h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.expertise .subtitle {
  color: #aaa;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.expertise-card {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s ease;
}

.expertise-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.expertise-card h3 {
  font-family: 'Playfair Display', serif;
  margin: 25px 0 10px;
  font-size: 22px;
}

.expertise-card p {
  color: #ccc;
  padding: 0 25px 30px;
  line-height: 1.7;
}

.expertise-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .expertise-cards {
    grid-template-columns: 1fr;
  }
}
/* Section 4 */
.contact {
  padding: 110px 20px;
  background: #0f0f0f;
  color: #fff;
}

.contact h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.contact .subtitle {
  text-align: center;
  color: #aaa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
}

/* INFO */
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 30px;
}

.contact-info li {
  margin-bottom: 12px;
  color: #ddd;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 1px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none; /* 🔥 removes the underline */
}

.social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px);
}


/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1b1b1b;
  border: none;
  padding: 14px 16px;
  margin-bottom: 15px;
  color: #fff;
  border-radius: 6px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  cursor: pointer;
}

.contact-form button:hover {
  background: #d4af37;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Section 3  */
.expertise {
  background: #111;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.expertise h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.expertise .subtitle {
  color: #aaa;
  margin-bottom: 60px;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.expertise-card {
  background: #1c1c1c;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s ease;
}

.expertise-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.expertise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 25px 0 10px;
}

.expertise-card p {
  color: #ccc;
  padding: 0 25px 30px;
  line-height: 1.7;
}

.expertise-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* SERVICES TITLE SPACING */
.services-title {
  margin-top: 120px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .expertise-cards {
    grid-template-columns: 1fr;
  }
}
