/* -----------------------------------------------------------
   ESTILO GENERAL — MODERNO, ARTÍSTICO Y ELEGANTE
----------------------------------------------------------- */

:root {
  --bg-light: #f5f5f5;
  --bg-dark: #0d0d0d;
  --text-main: #1a1a1a;
  --text-light: #ffffff;
  --accent: #d4b06a;
  --accent-dark: #b48f4d;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-strong: 0 20px 50px rgba(0,0,0,0.25);
  --radius: 18px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* -----------------------------------------------------------
   CABECERA — GLASSMORPHISM + SOMBRA
----------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-soft);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.main-nav a {
  margin-left: 1.8rem;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* -----------------------------------------------------------
   HERO — EFECTO CINEMÁTICO
----------------------------------------------------------- */

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  transform: scale(1.1);
  animation: zoomHero 18s ease-in-out infinite alternate;
}

@keyframes zoomHero {
  from { transform: scale(1.1); }
  to   { transform: scale(1.25); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin-left: 5vw;
  color: white;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* -----------------------------------------------------------
   BOTONES — PREMIUM
----------------------------------------------------------- */

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* -----------------------------------------------------------
   SECCIONES
----------------------------------------------------------- */

.section {
  padding: 5rem 5vw;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------
   GRID DE COLECCIONES — EFECTO GALERÍA
----------------------------------------------------------- */

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  transform: translateY(0);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.collection-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.collection-card:hover .collection-image {
  transform: scale(1.08);
}

.collection-info {
  padding: 1.4rem;
}

.collection-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

/* -----------------------------------------------------------
   GALERÍA DE OBRAS — ESTILO MUSEO
----------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.gallery-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.06);
}

.gallery-info {
  padding: 1.2rem;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

.site-footer {
  background: #111;
  color: #ccc;
  padding: 2rem 5vw;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */

@media (max-width: 900px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
}

@media (max-width: 600px) {
  .hero { height: 70vh; }
  .hero-content { margin-left: 3vw; }
}


.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  color: white;
}


/*---------------------------------------
Nuevo ingresoi
------------------------------------*/

/* HERO MEDIANO PARA COLECCIONES */
.collection-hero {
  position: relative;
  height: 40vh;        /* HERO MEDIANO */
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.collection-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.75);
}

.collection-hero-content {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  color: white;
  max-width: 600px;
}

.collection-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin: 0 0 0.5rem 0;
}

.collection-hero-content p {
  font-size: 1.1rem;
  margin: 0;
}

