/* French-inspired elegant design with sunshine happiness */
:root {
  --primary-color: #1e3d59;
  --accent-color: #f5b461;
  --text-color: #2c3e50;
  --light-bg: #fff9f2;
  --gold: #c9a959;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: var(--light-bg);
  color: var(--text-color);
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.logo-container {
  margin-bottom: 2rem;
}

.voco-logo {
  max-width: 200px;
  height: auto;
}

.content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-style: italic;
}

.description, .announcement {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary-color), #2c5282);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

/* Decorative elements */
.decorative-element {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 214, 165, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(30, 61, 89, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .description, .announcement {
    font-size: 1rem;
  }
  
  .button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
  
  .container {
    padding: 1rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content > * {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.content > *:nth-child(1) { animation-delay: 0.2s; }
.content > *:nth-child(2) { animation-delay: 0.4s; }
.content > *:nth-child(3) { animation-delay: 0.6s; }
.content > *:nth-child(4) { animation-delay: 0.8s; }
.content > *:nth-child(5) { animation-delay: 1s; } 