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

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

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

}

:root {
  --primary-sepia: #8f5a3c;
  /* Sepia Brown (Headlines, Subtitles) */
  --secondary-cream: #fdf8e4;
  /* Intellect Cream (Main Page Background) */
  --accent-bark: #4d2c1a;
  /* Chocolate Bark (CTAs, Footers) */

  /* --- Surfaces --- */
  --bg-main: var(--secondary-cream);
  --bg-card: #FAF4D0;
  /* Ivory Lace (testimonial blocks) */
  --bg-dark-section: var(--accent-bark);

  /* --- Typography --- */
  --text-main: #4d2c1a;
  /* Dark Chocolate (Body text) */
  --text-heading: var(--primary-sepia);
  /* Sepia (Hero title) */
  --text-inverse: #ffffff;
  /* White (Text on dark CTAs) */

  /* --- UI Elements --- */
  --border-radius-sm: 4px;
  --shadow-warm: 0 4px 12px rgba(143, 90, 60, 0.15);
  /* Replicates the glow */
}

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: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

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