:root {
  --accent: #2d6a4f; /* verde farmaceutic */
  --accent-light: #40916c;
  --bg: #fdfcf9;     /* ton hârtie veche */
  --text: #1c1c1c;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
}

.h-display {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.2px;
}

/* Header */
.brand-strip img.logo {
  max-height: 52px;
  width: auto;
}
.brand-text {
  font-size: 0.9rem;
  color: #6b6b6b;
}

/* Hero */
.hero {
  background: linear-gradient(to bottom, rgba(45,106,79,0.35), rgba(45,106,79,0.45)),
              url('../Img/c_hero_bg.jpg') center/cover no-repeat;
  min-height: 25vh;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  margin-top: 10px;
  margin-bottom: 10px;
}
.hero p.lead {
  color: #e6f2ec;
  max-width: 60ch;
}
.btn-outline-light:hover {
  color: var(--accent);
  background-color: #fff;
}

/* Carduri */
.card.obiect {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card.obiect:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.btn-outline-accent {
  --bs-btn-color: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent);
  --bs-btn-hover-border-color: var(--accent);
  --bs-btn-hover-color: #fff;
}

.h-display {
  font-family: 'Cardo', serif; /* pentru titluri */
}
body {
  font-family: 'Inter', sans-serif; /* pentru text */
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.text_justify {
  text-align: justify;
}

footer {
  background-color: #1b1b1b;
  color: #fff;
}

footer .brand-text {
  color: #ccc; /* text ușor mai deschis pe fundal închis */
}

footer img.logo {
  max-height: 50px;
  filter: brightness(0.95); /* ușor ajustat dacă sunt pe fundal întunecat */
}

/* Galerii */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
}

.galerie-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.thumb {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.galerie-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}