/* Estilos para la vista individual de RSVP con tema hippie */
.hippie-background {
  background: linear-gradient(135deg, #fdf4e3 0%, #f5e6d3 50%, #e8d5b7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.floating-element {
  position: absolute;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.floating-element:nth-child(even) {
  animation-delay: -3s;
  animation-duration: 8s;
}

.floating-element:nth-child(3n) {
  animation-delay: -1s;
  animation-duration: 7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hippie-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid #d4a574;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.hippie-card-header {
  background: linear-gradient(135deg, #d4a574 0%, #e6c994 100%);
  color: #5d4e37;
  padding: 1.5rem;
  border-radius: 18px 18px 0 0;
  border-bottom: 3px solid #c49a6c;
}

.hippie-detail-card {
  background: rgba(255, 248, 240, 0.8);
  border: 2px solid #e6c994;
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hippie-icon-wrapper {
  background: linear-gradient(135deg, #d4a574 0%, #e6c994 100%);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c49a6c;
  flex-shrink: 0;
}

.hippie-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  min-height: 3.5rem;
  font-size: 1rem;
}

.hippie-button-accept {
  background: linear-gradient(135deg, #90c695 0%, #a8d5aa 100%);
  border-color: #7bb77f;
  color: #2d5016;
}

.hippie-button-accept:hover {
  background: linear-gradient(135deg, #7bb77f 0%, #90c695 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 183, 127, 0.4);
}

.hippie-button-decline {
  background: linear-gradient(135deg, #e4a574 0%, #e6b894 100%);
  border-color: #d4956a;
  color: #8b4513;
}

.hippie-button-decline:hover {
  background: linear-gradient(135deg, #d4956a 0%, #e4a574 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 149, 106, 0.4);
}

.rsvp-status-indicator {
  transition: all 0.3s ease;
}

.rsvp-status-accepted {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
  border-color: #90c695 !important;
}

.rsvp-status-declined {
  background: linear-gradient(135deg, #fdf2f2 0%, #fef7f7 100%);
  border-color: #e4a574 !important;
}

.rsvp-status-pending {
  background: linear-gradient(135deg, #fef3e2 0%, #fef9f3 100%);
  border-color: #d4a574 !important;
}

.hippie-alert {
  padding: 1rem;
  border-radius: 15px;
  border: 2px solid;
  margin: 1rem 0;
}

.hippie-alert-success {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
  border-color: #90c695;
  color: #2d5016;
}

.hippie-alert-warning {
  background: linear-gradient(135deg, #fef3e2 0%, #fef9f3 100%);
  border-color: #d4a574;
  color: #8b4513;
}

.hippie-response-section {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  border: 2px solid #e6c994;
}

.hippie-response-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hippie-response-success .hippie-response-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}