
#wedding {
  position: relative;
  padding: 8rem 6vw;
  background: transparent;
  overflow: hidden;
}

.wedding-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.wedding-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7A8450;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #7A8450, transparent);
}

.section-eyebrow::after {
  transform: rotate(180deg);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title .gold {
  color: #7A8450;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #7A8450, transparent);
  margin: 1rem auto 1.5rem;
}

.wedding-desc {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.wedding-desc strong {
  color: #7A8450;
  font-weight: 600;
}

/* Grid */
.wedding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/*  TARJETAS CON EFECTO LUZ DESPLAZADA  */
.wedding-card {
  position: relative;
  background: rgba(10, 18, 16, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(85,107,47,0.2);
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}

/*  EFECTO DE LUZ QUE CRUZA LA TARJETA  */
.wedding-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    rgba(85,107,47,0.2),
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  pointer-events: none;
  z-index: 2;
}

.wedding-card:hover::after {
  left: 100%;
}

.wedding-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85,107,47,0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(85,107,47,0.15);
  background: rgba(10, 18, 16, 0.7);
}

/* Imagen */
.wedding-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.wedding-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wedding-card:hover .wedding-card-image img {
  transform: scale(1.05);
}

/* Información */
.wedding-card-info {
  padding: 1.2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wedding-card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.wedding-card-desc {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .wedding-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .wedding-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  #wedding {
    padding: 5rem 5vw;
  }
  
  .wedding-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .wedding-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .wedding-card-title {
    font-size: 1.1rem;
  }
  
  .wedding-card-desc {
    font-size: 0.75rem;
  }
}