/* =========================
   THEME GLOBAL – LA CLE DU LIEN (STYLE HONA STUDIO INSPIRED)
   ========================= */

/* COLORS */
:root {
  --rose: #d4a09c;
  --sage: #a3a393;
  --rose-light: rgba(241, 190, 178, 0.35);
  --text: #6c6967;
  --bg: #ffffff;
}

/* GLOBAL TYPOGRAPHY */
body {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  letter-spacing: 0.2px;
}

/* HEADINGS */
h1, h2, h3, h4 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* LINKS */
a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--rose);
}

/* BUTTON STYLE (GLOBAL CTA) */
button,
.elementor-button {
  background-color: var(--rose) !important;
  color: white !important;
  border-radius: 0px !important;
  padding: 14px 28px !important;
  border: none !important;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

button:hover,
.elementor-button:hover {
  background-color: var(--sage) !important;
  transform: translateY(-2px);
}

/* SECTIONS STYLE (VERY HONA-LIKE CLEAN SPACING) */
.elementor-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* FULL WIDTH SECTIONS */
.elementor-section.elementor-section-full_width {
  padding-left: 0;
  padding-right: 0;
}

/* HERO TITLE BIG STYLE */
.hero-title {
  font-size: 52px;
  line-height: 1.1;
  max-width: 900px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  max-width: 700px;
  opacity: 0.85;
}

/* NAV MENU STYLE (ASTRA HEADER) */
.main-header-menu a {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* HEADER BACKGROUND CLEAN */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* HERO BACKGROUND BLOCK */
.hero-block {
  background-color: var(--rose-light);
  padding: 120px 40px;
  text-align: center;
}

/* CARDS (THERAPY SERVICES) */
.service-card {
  padding: 40px;
  border: 1px solid rgba(108,105,103,0.15);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--rose);
}

/* FAQ STYLE */
.elementor-accordion-item {
  border-bottom: 1px solid rgba(108,105,103,0.15);
}

/* REMOVE HEAVY ELEMENTOR SPACING DEFAULT */
.elementor-widget:not(:last-child) {
  margin-bottom: 20px;
}