body

/* Global font */
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #000;
  margin: 0;
  padding: 0;
}

/* Gold text color utility */
.text-gold {
  color: #d4af37 !important;
}

/* Navbar brand styling */
.navbar-brand {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Headings with elegant weight */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn-gold, .btn-outline-gold {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}


/* Gold Accent */
.text-gold { color: #d4af37; }
.btn-gold {
  background-color: #d4af37;
  color: #000;
  border: none;
  transition: all 0.3s ease;
}
.btn-gold:hover { background-color: #b9972e; color: #fff; }
.border-gold { border: 1px solid #d4af37; }

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-section { height: 80vh; }
}

/* Animation */
.animate-fade { animation: fadeIn 2s ease-in-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Shop Section Styling */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(212,175,55,0.3);
}
.product-card img {
  height: 300px;
  object-fit: cover;
}
.modal-content {
  border-radius: 20px;
}


/* Larger product cards on mobile */
@media (max-width: 768px) {
  .product-card {
    margin: 0 auto;
    max-width: 95%;
    padding: 10px;
  }
  .product-card img {
    height: 380px !important;
    object-fit: cover;
  }
  .product-card h5 {
    font-size: 1.3rem;
  }
  .product-card p {
    font-size: 1.1rem;
  }
  .btn-gold {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


/* Modern Collections Section */
.collection-card {
  background: transparent;
  border: none;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.collection-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.collection-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 15px;
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-overlay h5 {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Fade-in Animation on Scroll */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.collection-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.collection-card:nth-child(1) { animation-delay: 0.2s; }
.collection-card:nth-child(2) { animation-delay: 0.4s; }
.collection-card:nth-child(3) { animation-delay: 0.6s; }
.collection-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
  .collection-img img {
    height: 250px;
  }
  .collection-overlay h5 {
    font-size: 1.1rem;
  }
}




.text-gold {
  color: #d4af37 !important;
}
.bg-black {
  background-color: #000 !important;
}
.btn-outline-gold {
  border: 1px solid #d4af37;
  color: #d4af37;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background-color: #d4af37;
  color: #000;
}
.about-image-wrapper img {
  transition: transform 0.5s ease;
}
.about-image-wrapper:hover img {
  transform: scale(1.05);
}



.text-gold {
  color: #d4af37 !important;
}
.btn-outline-gold {
  border: 1px solid #d4af37;
  color: #d4af37;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background-color: #d4af37;
  color: #000;
}
.bg-black {
  background-color: #000 !important;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;



  /* Adjust logo size */
.brand-logo {
  height: 10px;         /* smaller logo height */
  width: auto;          /* keeps proportions */
  border-radius: 6px;   /* optional smooth edges */
  transition: transform 0.3s ease;
}

/* Subtle hover animation */
.brand-logo:hover {
  transform: scale(1.05);
}

/* On smaller screens, make it even smaller */
@media (max-width: 576px) {
  .brand-logo {
    height: 28px;
  }
}
