/* ═══════════════════════════════════════════
   LULE BLUME v2 — style.css
   Paleta: Rosa · Mauve · Lavanda · Crema
   Tipografía: Cormorant Garamond + Montserrat
   ═══════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
  --rose:       #D8B3B8;
  --mauve:      #A77C7C;
  --mauve-dark: #8a6060;
  --lavender:   #C8C2E1;
  --cream:      #F7F4F1;
  --cream-dark: #ede8e3;
  --border:     #e0d4d4;
  --ink:        #4A4A4A;
  --ink-mid:    #7a6a6a;
  --ink-light:  #b09090;
  --white:      #ffffff;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

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

/* ── Base ───────────────────────────────────── */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}


/* ══════════════════════════════════════════════
   BOTONES
══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-main {
  background: var(--mauve);
  color: var(--white);
  border-color: var(--mauve);
}

.btn-main:hover {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--mauve);
  border-color: var(--mauve);
}

.btn-ghost:hover {
  background: var(--mauve);
  color: var(--white);
}


/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */

.navbar {
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 80px;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-isotipo {
  flex-shrink: 0;
}

.logo-principal {
  height: 70px;    /* ← ajusta este número */
  width: auto;
  object-fit: contain;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--mauve);
  line-height: 1;
  display: block;
}

.logo-sub {
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 4px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--mauve);
}

.nav-btn {
  padding: 10px 20px;
  font-size: 9px;
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 560px;
  background: var(--cream);
  overflow: hidden;
}

.hero-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pre {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero-title em {
  font-style: italic;
  color: var(--mauve);
}

.hero-sub {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 32px;
  max-width: 340px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  background: #f0e8e8;
  overflow: hidden;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ══════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════ */

.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  gap: 10px;
  border-right: 0.5px solid var(--border);
  text-align: center;
}

.badge:last-child {
  border-right: none;
}

.badge-icon {
  color: var(--mauve);
}

.badge span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}


/* ══════════════════════════════════════════════
   SECCIONES
══════════════════════════════════════════════ */

.section {
  padding: 48px 60px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.section-label span {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.section-pre {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-bottom: 14px;
}


/* ══════════════════════════════════════════════
   CATÁLOGO — CARDS
══════════════════════════════════════════════ */

.cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  align-items: start;
}

.card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-img {
  position: relative;
  height: 480px;
  overflow: hidden;
}

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

.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,74,74,0.35) 0%, transparent 50%);
}

.card-info {
  padding: 16px 20px 20px;
  background: var(--white);
  border-top: 0.5px solid var(--border);
}

.card-cat {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 4px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.card-name em {
  font-style: italic;
  color: var(--mauve);
}

/* ── Carrusel ───────────────────────────────── */
.carrusel {
  position: relative;
}

.carrusel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carrusel img:first-child {
  opacity: 1;
}

.carrusel img.activa {
  opacity: 1;
}

.card-puntos {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 4px;
  background: var(--white);
}

.punto {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s;
}

.punto.activo {
  background: var(--mauve);
}


/* ══════════════════════════════════════════════
   GALERÍA
══════════════════════════════════════════════ */
/*
.galeria {
  background: var(--cream);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.galeria-item {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria-item:nth-child(1),
.galeria-item:nth-child(4) {
  aspect-ratio: 3 / 4;
}

.galeria-item:nth-child(2),
.galeria-item:nth-child(3) {
  aspect-ratio: 1 / 1;
}

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

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

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

.galeria-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto;
  gap: 4px;
}

.galeria-item {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria-item:hover {
  transform: scale(1.02);
}

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

/* Foto grande ocupa toda la columna izquierda */
.galeria-item:nth-child(1) {
  grid-row: span 3;
  aspect-ratio: unset;
  height: 600px;
}

/* Las tres de la derecha se apilan */
.galeria-item:nth-child(2),
.galeria-item:nth-child(3),
.galeria-item:nth-child(4) {
  aspect-ratio: 4 / 3;
}


/* ══════════════════════════════════════════════
   OCASIONES
══════════════════════════════════════════════ */

.ocasiones {
  background: var(--white);
}

.ocasiones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ocasion-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px 24px;
  border: 0.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ocasion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(167, 124, 124, 0.12);
}

.ocasion-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 14px;
}

.ocasion-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.ocasion-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mid);
}


/* ══════════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════════ */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--cream);
  border-top: 0.5px solid var(--border);
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-title em {
  font-style: italic;
  color: var(--mauve);
}

.about-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 28px;
}

.about-quote-box {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  border: 0.5px solid var(--border);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--rose);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}

.services-list {
  list-style: none;
  border-top: 0.5px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-list li {
  font-size: 13px;
  color: var(--ink-mid);
  padding-left: 16px;
  position: relative;
}

.services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mauve);
}


/* ══════════════════════════════════════════════
   UBICACIÓN
══════════════════════════════════════════════ */

.location {
  border-top: 0.5px solid var(--border);
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.location-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.location-title em {
  font-style: italic;
  color: var(--mauve);
}

.location-address {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-mid);
  margin-bottom: 28px;
}

.location-map {
  border-radius: 14px;
  overflow: hidden;
  height: 340px;
  border: 0.5px solid var(--border);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  border-top: 0.5px solid var(--border);
  background: var(--cream);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.social-link span {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.social-link:hover {
  color: var(--mauve);
}

.footer-loc {
  font-size: 14px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
}


/* ══════════════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
══════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}


/* ══════════════════════════════════════════════
   ANIMACIONES
══════════════════════════════════════════════ */

.card,
.galeria-item,
.ocasion-card,
.about-text,
.about-quote-box,
.location-grid,
.hero-content,
.hero-visual,
.badge {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card:nth-child(2),
.galeria-item:nth-child(2),
.ocasion-card:nth-child(2),
.badge:nth-child(2) {
  transition-delay: 0.1s;
}

.card:nth-child(3),
.galeria-item:nth-child(3),
.ocasion-card:nth-child(3),
.badge:nth-child(3) {
  transition-delay: 0.2s;
}

.galeria-item:nth-child(4),
.ocasion-card:nth-child(4),
.badge:nth-child(4) {
  transition-delay: 0.3s;
}

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


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════ */

@media (max-width: 900px) {

  .navbar {
    padding: 16px 32px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-content {
    padding: 48px 32px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-img-placeholder {
    min-height: 360px;
  }

  .section {
    padding: 48px 32px;
  }

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

  .card-large {
    grid-column: span 2;
  }

  .badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .badge:nth-child(2) {
    border-right: none;
  }

  .badge:nth-child(3) {
    border-top: 0.5px solid var(--border);
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ocasiones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer {
    padding: 20px 32px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — MÓVIL
══════════════════════════════════════════════ */

@media (max-width: 600px) {

  .navbar {
    padding: 14px 20px;
  }

  .nav-btn span {
    display: none;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section {
    padding: 40px 20px;
  }

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

  .card-large {
    grid-column: span 1;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .ocasiones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-title {
    font-size: 34px;
  }

  .footer {
    padding: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 13px;
  }
}
