:root {
  --negru:       #2b2b3b;
  --negru-deep:  #1e1e2e;
  --roz:         #e8b4b8;
  --roz-deschis: #f5d5d8;
  --roz-pale:    #fdf0f1;
  --alb:         #ffffff;
  --gri-cald:    #f7f3f4;
  --auriu:       #c9a96e;
  --text-dark:   #2b2b3b;
  --text-light:  #9e8e90;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Playfair Display', serif;

  --shadow-roz:  0 8px 32px rgba(232,180,184,0.25);
  --shadow-dark: 0 8px 32px rgba(43,43,59,0.18);
  --radius:      18px;
  --radius-sm:   10px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--alb);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* TIPOGRAFIE */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img { max-width: 100%; display: block; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* BUTOANE */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--negru);
  color: var(--alb);
  box-shadow: var(--shadow-dark);
}
.btn-primary:hover {
  background: var(--roz);
  color: var(--negru);
  transform: translateY(-3px);
  box-shadow: var(--shadow-roz);
}

.btn-outline {
  background: transparent;
  color: var(--negru);
  border: 2px solid var(--negru);
}
.btn-outline:hover {
  background: var(--negru);
  color: var(--alb);
  transform: translateY(-3px);
}

.btn-roz {
  background: var(--roz);
  color: var(--negru);
}
.btn-roz:hover {
  background: var(--negru);
  color: var(--alb);
  transform: translateY(-3px);
}

/* SECTION TITLES */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--roz);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  color: var(--negru);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
}

/* DIVIDER decorativ */
.divider-roz {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--roz), var(--auriu));
  border-radius: 2px;
  margin: 18px 0 30px;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* SECȚIUNI GENERALE */
section {
  padding: clamp(60px, 8vw, 120px) 0;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gri-cald); }
::-webkit-scrollbar-thumb { background: var(--roz); border-radius: 3px; }

/* UTILITY */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }