/* Additional styles for Bal ULiège landing page */

/* Custom animations */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

.animate-slide-up {
  animation: slide-up 0.8s ease-out;
}

/* Hover effects */
.gold-hover {
  transition: color 0.3s ease;
}

.gold-hover:hover {
  color: #D4AF37;
  transform: translateY(-2px);
}

/* Gold gradient button */
.gold-gradient-btn {
  background: linear-gradient(to right, #D4AF37, #FFC857);
  transition: all 0.3s ease;
}

.gold-gradient-btn:hover {
  background: linear-gradient(to right, #B8860B, #D4AF37);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Form styles */
form {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  form {
    flex-direction: column;
  }
  
  form button {
    width: 100%;
  }
}

/* Improved email inputs */
input[type="email"] {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
  height: 50px;
}

input[type="email"]:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  background-color: rgba(0, 0, 0, 0.4);
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Custom backgrounds for feature cards */
.feature-card {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Gradient background for sections */
.gradient-bg {
  background: linear-gradient(to bottom, #0F1014, #121420, #1A1A2E, #16213E, #0F1014);
  background-size: 100% 100%;
  width: 100vw;
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Newsletter section background with pattern */
.newsletter-bg {
  background-color: #0F1014;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 85% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    linear-gradient(45deg, transparent 45%, rgba(212, 175, 55, 0.08) 50%, transparent 55%),
    linear-gradient(135deg, transparent 45%, rgba(212, 175, 55, 0.08) 50%, transparent 55%);
  background-size: 4px 4px, 4px 4px, 20px 20px, 20px 20px;
  position: relative;
  color: white;
  overflow: hidden;
}

.newsletter-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(15, 16, 20, 0.85), rgba(15, 16, 20, 0.85));
  z-index: 0;
}

.newsletter-bg::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  right: -50px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, rgba(15, 16, 20, 0) 70%);
  filter: blur(20px);
  z-index: 0;
}

.newsletter-bg > div {
  position: relative;
  z-index: 1;
}

/* Form message styles */
.text-green-500 {
    color: #10B981;
}

.text-red-500 {
    color: #EF4444;
} 