/* css/base.css */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #FFFEF7;
  --color-bg-alt: #F3EFDE;
  --color-surface: #FFFEF9;
  --color-text: #3A3A3A;
  --color-text-muted: #6B6B6B;
  --color-blue: #ADC2A3;
  --color-blue-dark: #8CA382;
  --color-orange: #F2B183;
  --color-orange-dark: #E0925A;
  --color-icon: #ADC2A3;
  --color-border: #E3DCC6;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --font-quote: 'Quicksand', sans-serif;
  --radius: 16px;
  --max-width: 1140px;
  --gap: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; margin: 0 0 16px; color: var(--color-text); }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }
a { color: var(--color-blue-dark); text-decoration: none; }
img, svg { max-width: 100%; }
ul { padding-left: 1.2em; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-alt { background: var(--color-bg-alt); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--color-blue); color: #fff; }
.btn-primary:hover { background: var(--color-blue-dark); }
.btn-outline { background: transparent; border: 1px solid var(--color-text); color: var(--color-text); }

.placeholder-photo {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 20px;
  min-height: 220px;
}

.icon { width: 32px; height: 32px; color: var(--color-icon); }
.icon-sm { width: 20px; height: 20px; }
.icon-lg { width: 48px; height: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 720px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 36px 0; }
}
