body {
  font-family: 'Be Vietnam Pro', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;

}

/* ========== HEADER ========== */
.site-header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem; /* margen en rem */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); /* sombra suave */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* ========== ANIMACION HEADER ==========*/

.site-header.shrink {
  padding: 0.75rem 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header .logo {
  height: 102px;
  transition: all 0.4s ease;
}

.site-header.shrink .logo {
  height: 64px;
} 


/* Logo */
.logo {
  height: 84px;
  width: auto;
}

/* Icono del menú */
.menu-icon {
  font-size: 1.8rem;
  color: #484848;
  cursor: pointer;
}


/* ========== MENÚ FULL SCREEN ========== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.fullscreen-menu.active {
  display: flex;
}

/* Header del menú */
.fullscreen-menu .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  padding: 2rem 4rem; /* 👈 aplicamos padding aquí, no al contenedor padre */
}

/* Logo */
.fullscreen-menu .logo {
  max-height: 80px;
  width: auto;
  display: block;
}

/* Ícono de cerrar */
#close-menu {
  font-size: 1.8rem;
  color: #484848;
  cursor: pointer;
}

/* Lista del menú */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Ítems del menú */
.menu-list li a {
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  color: #484848;
  transition: color 0.3s ease;
}

.menu-list li a:hover {
  color: #000;
}

.menu-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}


/* Cuando el menú está activo y animado */
.fullscreen-menu.active .menu-list li {
  opacity: 1;
  transform: translateY(0);
}

/* Animación escalonada */
.fullscreen-menu.active .menu-list li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-list li:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-list li:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-menu.active .menu-list li:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-menu.active .menu-list li:nth-child(5) { transition-delay: 0.5s; }
.fullscreen-menu.active .menu-list li:nth-child(6) { transition-delay: 0.6s; }

/* ======== BANNER FULL WIDTH ======== */
.banner {
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ====== MURAL SECTION ====== */

.mural-section {
  padding: 2rem 6rem 12rem;

}

.mural-title { /* nombre de la sección */
  font-size: 1.5rem;
  font-weight: 300;
  color: #484848;
  margin-bottom: 1rem;
}

.mural-title a {
  text-decoration: none;
  color: inherit;
}

.mural-subtitle {
  font-size: 1.3rem; /* nombre de la obra */
  font-weight: 200;
  color: #656565;
  margin-bottom: 0.5rem;
}

.mural-location {
  font-size: 1rem; /* título de lugar de obra */
  font-weight: 200;
  color: #a6a6a6;
  margin: 0.2rem;

}

.mural-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  gap: 2rem; /* Espacio entre cajas (ajustable) */
}

.mural-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mural-image-container {
  position: relative;
  overflow: hidden;
}

.mural-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.mural-item:hover .mural-image-container img {
  transform: scale(1.05); /* Zoom in sutil */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* invisible al principio */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}

.mural-title-overlay {
  color: white;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-weight: 400;
  font-family: 'Be Vietnam Pro', sans-serif;
  text-align: center;
  padding: 1rem;
}

.mural-item:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.mural-item:hover .mural-title-overlay {
  opacity: 1;
}

/*---------Grid de galería - sección monkey seventh pintura 2----- */
.mural-gallery-layout {
  max-width: 1200px;
  margin: 4rem 8rem;
  padding: 0 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.top-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Columna izquierda: imagen alta */
.left-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Columna derecha: dos imágenes cuadradas */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.right-column img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Efecto hover opcional */
.mural-gallery-layout a img {
  transition: transform 0.3s ease;
}

.mural-gallery-layout a:hover img {
  transform: scale(1.03);
}



/* === LIGHTBOX === galería interna */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* ✅ fondo oscuro 60% */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content {
  width: 80vw;
  height: 80vh;
  max-width: none;
  max-height: none;
  padding: 4rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

#lightbox-image {
  /*width: 100%;*/
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Botón cerrar */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 56px;
  font-weight: 100;      /* ✅ más fino */
  color: #fff;
  cursor: pointer;
}

/* Flechas navegación */
.lightbox-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-variation-settings: 'wght' 100;
  font-size: 30px;
  font-weight: 100;      /* ✅ más fino */
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 0 20px;
}

.lightbox-nav .prev {
  left: 20px;
}

.lightbox-nav .next {
  right: 20px;
}

.lightbox-content {
  pointer-events: auto; /* asegúrate que solo este bloque los reciba */
}

.lightbox {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.lightbox.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* ========== ABOUT ========== */

.about-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  /*align-items: center;
  justify-content:center;*/
  padding: 4rem 8rem;
  max-width: 1200px;
  /*margin: 0 auto;*/
}

.about-two-column .column {
  flex: 1;
  min-width: 300px;
}


.image-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.text-column h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4rem;
  margin-top: 0rem;
  color: #484848;
}

.text-column p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
  text-align: justify;
}



/* ========== ÍCONO GRANDE DE INSTAGRAM ========== */
.social-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  /*text-align: center;*/
  padding: 6rem 0;
  gap: 2rem;
}

.social-highlight i {
  font-size: 2.5rem; /* Tamaño igual al ícono hamburguesa */
  color: #484848;
}
.social-highlight img {
  width:5rem; /* Tamaño igual al ícono hamburguesa */
}

/* ========== FOOTER ========== */
.footer-branding {
  display: flex;
  align-items: center; /* Alinea verticalmente */
  gap: 1.5rem; /* Espacio entre el texto y el logo */
}

.footer-branding img.logo-kuwait {
  width: 60px; /* Ajustá el tamaño según necesites */
  height: auto;
}

.site-footer {
  border-top: 2px solid;color: #484848;
  padding: 3rem 4rem;
  background-color: #fff;
  font-size: 1rem;
  color: #484848;

}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column.left h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-column.left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column.left ul li {
  margin: 1rem 0;
}

.footer-column.left ul li a {
  text-decoration: none;
  color: #484848;
  transition: color 0.3s ease;
}

.footer-column.left ul li a:hover {
  color: #000;
}

.footer-column.right {
  text-align: right;

}

.footer-column.right small {
  color: #484848;
  font-weight: 200;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}




/* Responsive para mobile */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-column.right {
    text-align: center;
  }
}


/* Tablets horizontales / Laptops pequeñas */
@media (max-width: 768px) {
  .mural-section {
    padding: 2rem 1.5rem;
  }

  .mural-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bottom-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .left-column img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/ 16; /* ✅ Esto fuerza el modo apaisado */
    object-fit: cover;
  }

  .right-column {
    flex-direction: column;
  }

  .right-column a {
    width: 100%;
  }
}



