/* ============================================ */
/* CUSTOM SECTIONS CSS - Claudia Caffarena      */
/* ============================================ */

/* ---- STATEMENT TEXT ---- */
.statement-text {
  font-family: "PT Serif", serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px 0;
}
.statement-text p {
  text-align: justify;
}

/* ---- STATEMENT CAROUSEL ---- */
#myCarousel {
  width: 100%;
}
#myCarousel .item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- OBRA SECTION ---- */
.obra-section {
  min-height: 600px;
}

/* Submenu Izquierdo */
.obra-submenu-container {
  position: relative;
}
.obra-submenu {
  position: sticky;
  top: 120px;
  padding-top: 20px;
}
.obra-submenu ul {
  padding: 0;
  margin: 0;
}
.obra-submenu ul li {
  margin-bottom: 8px;
}
.obra-submenu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  display: block;
  padding: 2px 0;
  font-weight: normal;
}
.obra-submenu ul li a:hover {
  color: #000;
  text-decoration: none;
}
.obra-submenu ul li a.active {
  color: #000;
  font-weight: bold;
}

/* Fotos en tira vertical (centro) */
.obra-photos-container {
  padding: 0 30px;
}
.obra-photo-item {
  margin-bottom: 40px;
}
.obra-photo-wrapper {
  position: relative;
}
.obra-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.obra-photo-wrapper img:hover {
  opacity: 0.9;
}
.obra-photo-caption {
  text-align: center;
  padding: 8px 0;
  color: #666;
  font-size: 12px;
}
.obra-photo-caption small {
  font-family: "Open Sans", sans-serif;
}

/* Texto a la derecha */
.obra-text-container {
  position: relative;
}
.obra-title-right {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}
.obra-text {
  /* display controlled by JS */
}
.obra-description {
  position: sticky;
  top: 120px;
  font-family: "PT Serif", serif;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  padding-right: 20px;
}
.obra-description p {
  margin-bottom: 15px;
}

/* Categoría oculta por default (se muestra con JS) */
.obra-category {
  display: none;
}

/* ---- ARCHIVO SECTION ---- */
.archivo-grid {
  /* grid container */
}
.archivo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.archivo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}
.archivo-item:hover img {
  opacity: 0;
}
.archivo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: #f5f5f5;
}
.archivo-item:hover .archivo-overlay {
  opacity: 1;
}
.archivo-overlay-content {
  text-align: center;
  padding: 10px;
}
.archivo-titulo {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}
.archivo-anio {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #666;
  margin: 0;
}
.archivo-descripcion {
  font-size: 11px;
  color: #666;
  margin-top: 8px;
  line-height: 1.5;
  max-height: 80px;
  overflow: hidden;
}
.archivo-descripcion p {
  margin: 0 0 5px 0;
}

/* ---- PRENSA SECTION ---- */
.prensa-grid {
  /* grid container */
}
.prensa-item {
  position: relative;
  overflow: hidden;
}
.prensa-item img {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.prensa-item:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}
.prensa-titulo {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #666;
}

/* ---- INFO SECTION ---- */
.info-social-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.info-social-link {
  color: #333;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.info-social-link:hover {
  color: #000;
  text-decoration: none;
}
.info-social-link i {
  margin-right: 4px;
  color: inherit;
}
.info-social-separator {
  color: #333;
  margin: 0 12px;
  font-size: 14px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .obra-submenu {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  .obra-description {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
  .obra-section {
    min-height: auto;
  }
  .archivo-item {
    height: 180px;
  }
  .archivo-item img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .obra-submenu ul li {
    display: inline-block;
    margin-right: 10px;
  }
  .obra-photos-container {
    padding: 0 15px;
  }
  .archivo-item {
    height: 160px;
  }
  .archivo-item img {
    height: 160px;
  }
  .info-social-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .info-social-separator {
    display: none;
  }
}
