:root {
  --primary-gold: #D4AF37;
  --primary-dark: #2C1810;
  --secondary-cream: #F8F4E3;
  --accent-rose: #B76E79;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --border-light: #E5E5E5;
  --shadow-soft: rgba(0, 0, 0, 0.1);
  --shadow-deep: rgba(0, 0, 0, 0.2);
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}

.min-vh-60 {
  min-height: 60vh;
}

.list-group-item {
  padding: 1rem !important;
}

.jewelry-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.jewelry-sans {
  font-family: 'Open Sans', Arial, sans-serif;
}


.jewelry-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.jewelry-logo span {
  color: var(--primary-dark);
}

.navbar-jewelry {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.navbar-jewelry .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-jewelry .nav-link:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.navbar-jewelry .nav-link.active {
  color: var(--primary-gold);
}


.hero-jewelry {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(183, 110, 121, 0.6) 100%);
}


.btn-jewelry {
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-jewelry::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  border-radius: 50%;
}

.btn-jewelry:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold), #E6C14C);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E6C14C, var(--primary-gold));
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-cream {
  background: var(--secondary-cream);
  color: var(--text-dark);
  border: 2px solid var(--primary-gold);
}

.btn-cream:hover {
  background: var(--primary-gold);
  color: var(--text-light);
  transform: translateY(-2px);
}


.section-jewelry {
  position: relative;
  padding: 100px 0;
}

.section-dark {
  background: var(--primary-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--secondary-cream);
  color: var(--text-dark);
}


.card-jewelry {
  background: var(--text-light);
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.section-dark .card-jewelry {
  color: var(--text-dark);
}

.card-jewelry:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-deep);
}

.card-jewelry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-rose));
}


.service-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: var(--text-light);
  box-shadow: 0 5px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-deep);
  border-color: var(--primary-gold);
}


.testimonial-card {
  background: var(--text-light);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 20px var(--shadow-soft);
  border-left: 4px solid var(--primary-gold);
}

.section-dark .testimonial-card {
  color: var(--text-dark);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-gold);
  font-family: serif;
}


.team-member {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: var(--text-light);
  box-shadow: 0 5px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-deep);
}


.form-jewelry {
  background: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.form-control-jewelry {
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}

.form-control-jewelry:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  outline: none;
}


.footer-jewelry {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-jewelry .footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-jewelry .footer-link:hover {
  color: var(--primary-gold);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}


@media (max-width: 768px) {
  .jewelry-logo {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-jewelry {
    padding: 60px 0;
  }
  
  .card-jewelry,
  .service-card,
  .team-member {
    margin-bottom: 20px;
  }
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 24, 16, 0.95);
  color: var(--text-light);
  padding: 20px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--primary-gold);
}


.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}


.price-highlight {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.2rem;
}


.accordion-jewelry .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-jewelry .accordion-button {
  background: var(--text-light);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
}

.accordion-jewelry .accordion-button:not(.collapsed) {
  background: var(--primary-gold);
  color: var(--text-light);
  border-color: var(--primary-gold);
}

.accordion-jewelry .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath d='M8 11.793l-5.354-5.354 1.415-1.415L8 9.366l3.939-3.939 1.415 1.415L8 11.793z'/%3e%3c/svg%3e");
}

.accordion-jewelry .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}