/* GLOBAL */
body {
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0;
  padding-top: 80px;
  background: #fff;
  color: #000;
}

/* HEADINGS */
h1 {
  font-family: "IBM Plex Sans", sans-serif;
}

.site-title {
  font-family: "IBM Plex Sans", sans-serif !important;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}


h2, h3 {
  font-family: "IBM Plex Sans", sans-serif;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

.lang-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.lang-btn {
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  cursor: pointer;
}

.lang-btn.active {
  background: #000;
  color: #fff;
}

.semibold {
  font-weight: 600;
}

/* HERO */
.hero-section {
  height: 100vh;
  background: url('../images/webcinper_cuandoolvidare.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
}

#hero-tagline {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.4rem;
}

.statement-text {
  white-space: pre-line;
  max-width: 920px;
  margin: 0 auto;
  line-height: 2.1;
  text-align: justify;
  text-justify: inter-word;
}

.statement-title {
  margin-bottom: 3rem;
}

/* ABOUT */
.about-img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  margin: 48px auto;
  display: block;
}

#about-body {
  text-align: justify;
  text-justify: inter-word;
}

/* ✅ IMAGE FIX (NO CROPPING EVER AGAIN) */
.art-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.art-item img:hover {
  transform: scale(1.03);
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#lightbox img {
  max-width: 80%;
  max-height: 70%;
  margin-top: 1cm;
}

#lightbox-details {
  margin-top: 20px;
  text-align: center;
  color: white;
}

#lightbox-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
  margin-top: 0;
}

#lightbox-details p {
  font-size: 16px;
  margin: 5px 0;
  color: #ccc;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.1);
}

#close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

section.py-5 {
  margin-top: 1cm;
}

/* CONTACT FORM */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.contact-form .btn {
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 4px;
}

/* FOOTER */
footer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
}