/* ==========================================
   BLERS ARTS – Shared Minimal Aesthetic
   ========================================== */

:root {
  --accent: #331c0e;
  --accent-soft: rgba(51, 28, 14, 0.08);
  --text: #2b1a10;
  --text-muted: #6b5a4b;
  --bg: #faf8f6;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.06);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* HERO */
.hero-section {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #f3ede8 0 12px, #faf8f6 12px 24px);
  animation: heroParallax 18s ease-in-out infinite alternate;
  transform: scale(1.1);
  opacity: 0.9;
}
@keyframes heroParallax {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.1) translateY(-25px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  font-weight: 700;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

/* SECTIONS */
.section {
  padding: 6rem 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.lead {
  font-size: 1.1rem;
}

/* CARDS / BOXES */
.card-style {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  padding: 2.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* BUTTON */
.btn-accent {
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 50rem;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background: #4a2b14;
  transform: translateY(-2px);
}

/* QUOTES GRID */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.quote-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.quote-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.quote-card span {
  display: block;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }
  .section { padding: 4rem 1rem; }
}
