/* Tipografía base y colores */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;500&display=swap");

body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.5px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Reusable button style */
.button-primary {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.button-primary:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Hero section */
.hero {
  background-image: url("../images/luis-index.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10%;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-name img,
.hero-subtitle img {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.hero-description {
  max-width: 200px;
  font-size: 1rem;
  margin-top: 20px;
}

.hero-description p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-button {
  margin-top: 20px;
}

/* Gallery preview */
.gallery-preview {
  padding: 80px 10%;
  background-color: #fff;
  text-align: center;
}

.gallery-preview h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #111;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track img {
  flex-shrink: 0;
  width: 280px;
  height: auto;
  margin-right: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.02);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 10;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.slider-wrapper:hover .slider-btn {
  opacity: 1;
  pointer-events: all;
}

.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}

.gallery-button {
  margin-top: 40px;
}

/* About video */
.about-video {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 80px 10%;
  background-color: #f9f9f9;
  flex-wrap: wrap;
  text-align: center;
}

.about-text,
.about-media {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text {
  font-size: 1rem;
  color: #222;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-media video {
  width: auto;
  height: 500px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Exhibitions section */
.exhibitions {
  padding: 80px 10%;
  background-color: #fff;
  text-align: center;
}

.exhibitions h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 40px;
}

.exhibition-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.exhibition-list li {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.exhibition-list li.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.exhibition-list li strong {
  font-size: 18px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.exhibition-button {
  margin-top: 30px;
}

/* Instagram badge */
.badge {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  margin: 20px 0;
}
.main-footer {
  background-color: #fff;
  color: #000;
  font-family: "Inter", sans-serif;
}

.footer-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-info li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #333;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000;
  text-decoration: underline;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #333;
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: #333;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #000;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 100;
}

.back-to-top:hover {
  background: #333;
}
