@import url("https://fonts.googleapis.com/css2?family=Agbalumo&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Edu+NSW+ACT+Cursive:wght@400..700&family=Itim&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Oswald:wght@200..700&display=swap");

:root {
  --primary-color: #a237d4ff;
  --secondary-color: #0a0a0a;
  --accent-color: #f8f0e3;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  color: #333;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}

.hero-height {
  height: 100vh;
  min-height: 700px;
}

.particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.navbar {
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
}

.gold-text {
  color: var(--primary-color);
}

.head {
  font-family: "Agbalumo", system-ui;
}

.head1 {
  font-family: "Itim", cursive;
  font-weight: thin;
}

.gold-border {
  border: 1px solid var(--primary-color);
}

.bg-gold {
  background-color: var(--primary-color);
}

.bg-light {
  background-color: var(--accent-color);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-img {
  transition: all 0.5s ease;
}

.collection-img:hover {
  transform: scale(1.05);
}

.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-shape-divider-bottom-1690370525 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1690370525 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 85px;
}

.custom-shape-divider-bottom-1690370525 .shape-fill {
  fill: #ffffff;
}

.btn-gold {
  background: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #a237d4ff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--primary-color);
  color: white;
}
