/*=============== GALERIE ===============*/
.gallery {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.gallery__intro {
  padding-top: calc(var(--header-height));
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery__intro h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #1e293b; /* albastru închis */
  font-weight: 700;
}

.gallery__intro p {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 600px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 4rem;
}

/* Așezare în 3 coloane pe ecrane mari */
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__img {
  width: 100%;
  height: 220px; /* Înălțime fixă pentru uniformitate */
  object-fit: cover; /* Taie excesul dar menține proporțiile */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery__img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/*=============== TITLU SECȚIUNE ===============*/
.section-divider {
  font-size: 2.5rem;
  color: #1e293b;
  margin: 4rem auto 2rem;
  max-width: 800px;
  text-align: center;
  font-weight: 700;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 0.5rem;
}

/*=============== LIGHTBOX ===============*/
.lightbox {
  display: none; /* ascuns implicit */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox__img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}

/*=============== POEZII - BUTOANE PDF ===============*/
.poetry-buttons__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.poetry-button {
  display: block;
  background-color: #f1f5f9;
  color: #1e293b;
  text-decoration: none;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.1);
  width: 280px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.poetry-button:hover {
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.poetry-button h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.poetry-button p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
  line-height: 1.4;
}

/* Padding top pentru galerie ca să nu fie sub navbar */
.gallery {
  padding-top: calc(var(--header-height) + 5rem);
}
