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

}

* {
  -webkit-tap-highlight-color: transparent;
}

a, button, .studio-item, .mural-item, .studio-image-container, .mural-image-container {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-touch-callout: none;
}

/* ========== 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;
  padding: 4rem 6rem;
  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;
}

/* ======= Overlay activo en mobile - click en vez de hover ======= */

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

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

/*---------Grid de galería - sección monkey seventh pintura 2----- */
.mural-gallery-layout{
  margin: 4rem 16rem; 
  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);
}

/* ====== STUDIO SECTION ====== */

.studio-gallery-layout{
  /*max-width: auto;*/
  margin: 4rem 0rem;
  padding: 0 16rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.studio-gallery-layout div p{
  color:#656565;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 200;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.studio-section{
  padding: 2rem 6rem 12rem;
}

.studio-title{ /* nombre de la sección */
  font-size: 1.5rem;
  font-weight: 200;
  color: #484848;
  margin-bottom: 1rem;
}
.studio-title a{
  text-decoration: none;
  color: inherit;
}
.studio-subtitle{
  font-size: 1.3rem; /* nombre de la obra */
  font-weight: 200;
  color: #656565;
  margin-bottom: 0.5rem;
}
.studio-location {
  font-size: 1rem; /* título de lugar de obra */
  font-weight: 200;
  color: #a6a6a6;
  margin: 0.2rem;
}



/* === 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;
}

/* ====== STUDIO SECTION ====== */
.studio-section {
  padding: 2rem 6rem 12rem;

}

.studio-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #484848;
  margin-bottom: 1rem;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px); /* adaptable */
  gap: 2rem;
  justify-content: center; /* centra la grilla si hay pocas columnas */
  /* max-width: 1200px;  opcional, para que no se estiren demasiado */
  margin: 4rem auto;
}

.studio-item img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Mantiene imágenes cuadradas */
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.studio-item:hover img {
  transform: scale(1.05);
}

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

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

.studio-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;
}

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

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


.studio-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

.about-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  /*align-items: center;*/
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; /* Centra horizontalmente */
  padding: 52px 0; /* Espacio arriba y abajo */
}

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

.about-two-column .image-column {
  order: 1; /* imagen primero */
}

.about-two-column .text-column {
  order: 2; /* texto segundo */
}

.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: #b51010;
  margin-bottom: 2rem;
  text-align: justify;
}

.spanish-text{
  margin-top: 6rem;

}

.spanish-text p em{
  color: #9f9f9f; /* opcional: un gris más suave */
}

/* FORMULARIO DE CONTACTO */

.contact-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  /*align-items: flex-start;*/
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; /* Centra horizontalmente */
  padding: 52px 0; /* Espacio arriba y abajo */
}

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

/* Orden normal en desktop*/
.image-column {
  order: 1;
}
.form-column {
  order: 2;
}

.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;
}

/* Crédito de autor */
.photo-credit {
  font-size: 12px;
  color: #999;
  margin-top: 0.5rem;
  text-align: left;
  font-weight: 400;
}

/* Íconos sociales debajo de la imagen */
.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  font-size: 1.5rem;
  color: #484848;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #000; /* al pasar el mouse cambia a negro */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
  color: #484848;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #484848;
}

.contact-form button {
  padding: 0.8rem 1.5rem;
  background-color: #484848;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #000;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #999;
}

/* ========== Í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);
}


/* ===========================
   SHOP SECTION (INDEPENDIENTE)
   =========================== */

.shop-section {
  padding: 2rem 6rem 12rem;
}

.shop-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: #484848;
  margin-bottom: 1rem;
  text-align: left;
  text-decoration: none;

}


.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px);
  gap: 6rem;
  justify-content: center;
  margin: 4rem auto;
}

/* Contenedor imagen */
.shop-image-container {
  position: relative;
  overflow: hidden;
}

.shop-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: none !important; /* ✨ Sin animación hover */

}

/* Deshabilitamos overlay por defecto */
.shop-item .overlay {
  display: none !important;
}

/* Título debajo de las imágenes */
/* Título (MEDIUM) */
.shop-item-title {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300; 
  text-align: center;
  color: #444;
}

/* Segunda línea (REGULAR) */
.shop-item-details {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  font-weight: 100; 
  text-align: center;
  color: #6d6d6d;
  line-height: 1.3;
}

/* Botón agotado */
.shop-sold-out-btn {
  margin: 2rem auto 0 auto;
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  border-radius: 6px;
  border: none;
  background-color: #cfcfcf;
  color: #666;
  cursor: not-allowed;
  opacity: 0.8;
}

/* Contenedor del ícono + texto */
.shop-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
  text-decoration: none;
}

/* Ícono gris */
.shop-contact i {
  font-size: 1.3rem;
  color: #8a8a8a;
  transition: color 0.3s ease;
}

/* Texto */
.shop-contact span {
  font-size: 0.95rem;
  font-weight: 400;
  color: #8a8a8a;
  letter-spacing: 0.5px;
}

/* Hover opcional */
.shop-contact:hover i,
.shop-contact:hover span {
  color: #1c7f39;
}



/* Responsive para mobile */
@media (max-width: 600px) {

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-section {
    padding: 2rem 1.5rem 6rem;
  }

  .studio-grid {
    grid-template-columns: 1fr; /* mobile → 1 columna */
  }

  .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-gallery-layout {
    margin: 2rem 0rem; /* NUEVOOO */
    gap: 1.5rem;
    /*padding: 16px;*/
  }

  .mural-section {
    padding: 2rem 1.5rem;
  }

  .mural-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 16px;
  }

  .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%;
  }

  .about-two-column .image-column,
  .about-two-column .text-column {
    transform: translateY(40px);
  }

  .image-column {
    order: 2;
  }
  .form-column {
    order: 1;
  }

  .studio-section {
    padding: 2rem 1.5rem 6rem;
  }

  .studio-gallery-layout {
    margin: 2rem 0;
    padding: 0 1.5rem;
    gap: 1.5rem;
    padding: 16px;
  }

  .bottom-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .top-image img {
    border-radius: 4px;
    width: 100%;
    height: auto;
  }

  .left-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .studio-gallery-layout div p {
    padding: 0 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4rem;
  }


  .studio-item .overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.studio-item.active .overlay,
.studio-item:hover .overlay {
  opacity: 1;
}

}

