@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

:root {
  /* --- Brand Identity --- */
  --primary-burgundy: #4d0e0e;
  /* From the Flyer (Authority) */
  --secondary-rose: #f2d5d5;
  /* From the Portrait (Elegance) */
  --accent-gold: #c5a059;
  /* From the jewelry/buttons (Luxury) */

  /* --- Surfaces --- */
  --bg-main: #fdfcfb;
  --bg-soft: var(--secondary-rose);
  --bg-dark: var(--primary-burgundy);

  /* --- Typography --- */
  --text-main: #2d1b1b;
  --text-on-dark: #fdfcfb;
  --text-accent: #8b1a1a;
  /* A mid-tone red for links */

  /* --- Design Elements --- */
  --border-gold: 1px solid var(--accent-gold);
  --gradient-luxury: linear-gradient(135deg, #4d0e0e 0%, #8b1a1a 100%);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text-charcoal);
}

/* TESTIMONIAL SLIDER */
.testimonial-dots-container {
  position: relative;
  z-index: 40;
  margin-top: -24px;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--text-heading);
}

.slick-dots li.slick-active button {
  background-color: var(--primary-accent);
}