/* home.component.css */
:host {
  --home-primary-color: #8A6D58; /* Marrón topo elegante (similar al anterior) */
  --home-secondary-color: #D4AF37; /* Dorado */
  --home-accent-color: #FDFCFB; /* Un blanco muy suave o crema */
  --home-text-dark: #3C3C3C;
  --home-text-light: #6B6B6B;
  --home-font-display: 'Great Vibes', 'Dancing Script', cursive; /* Para títulos elegantes */
  --home-font-body: 'Lato', 'Helvetica Neue', sans-serif; /* Para texto general */
}

.home-welcome-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px); /* Ajusta 70px a la altura de tu navbar si tienes una */
  padding: 20px;
  position: relative;
  overflow: hidden;
  font-family: var(--home-font-body);
  text-align: center;
  color: var(--home-text-dark);
}

.welcome-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Reemplaza con la URL de tu imagen o la generada */
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.9); /* Sutil desenfoque y oscurecimiento */
  opacity: 0.6; /* Sutilmente visible */
  z-index: -1;
}

.welcome-content {
  background-color: rgba(255, 255, 255, 0.85); /* Fondo blanco semitransparente para el contenido */
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 100%;
  z-index: 1;
  animation: fadeInScale 0.8s ease-out forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-icon {
  margin-bottom: 20px;
  
}

.welcome-icon .icon-image {
  width: 100px; /* Ajusta el tamaño según tu icono */
  height: auto;
  opacity: 0.8;
}


.welcome-title {
  font-family: var(--home-font-display);
  font-size: clamp(2.8rem, 6vw, 4rem); /* Tamaño adaptable */
  color: var(--home-primary-color);
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.welcome-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--home-text-light);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn-primary-wedding,
.btn-secondary-wedding {
  font-family: var(--home-font-body);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  min-width: 220px; /* Para que los botones tengan un ancho similar */
}

.btn-primary-wedding {
  background-color: var(--home-primary-color);
  color: white;
  border: 2px solid var(--home-primary-color);
}

.btn-primary-wedding:hover {
  background-color: color-mix(in srgb, var(--home-primary-color) 85%, black);
  border-color: color-mix(in srgb, var(--home-primary-color) 85%, black);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Si decides añadir un botón secundario: */
/*
.btn-secondary-wedding {
  background-color: transparent;
  color: var(--home-primary-color);
  border: 2px solid var(--home-primary-color);
}

.btn-secondary-wedding:hover {
  background-color: var(--home-primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
*/

/* Responsive adjustments */
@media (min-width: 768px) {
  .welcome-actions {
    flex-direction: row;
    justify-content: center;
  }
}