
:root {
  --primary: #363E5B;
  --secondary: #7C7C7C;
  --accent: #7FC7B4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #f3f1ee, #e6e1d8);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  overflow-x: hidden;
}
.language-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.language-toggle a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--primary);
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.language-toggle a:hover {
  background-color: var(--accent);
  color: white;
}
.container {
  max-width: 800px;
  width: 100%;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
img.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}
h2.coming-soon {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1.5rem;
  margin: 0.5rem 0;
  letter-spacing: 4px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin: 0.2rem 0 1rem;
}
p {
  font-size: 1.1rem;
  margin: 0.75rem 0;
  color: var(--secondary);
}
p.main {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0;
}
p.desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1rem;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
input[type="email"] {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  width: 100%;
  max-width: 320px;
}
button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}
.partner-text {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--secondary);
}
.cta {
  margin-top: 0.5rem;
}
.cta a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.cta a:hover {
  opacity: 0.8;
}
footer {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--secondary);
}


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

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

.container {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

h1 {
  animation: slideInDown 1s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}

p, .partner-text {
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.3s;
}

form {
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.6s;
}

.cta {
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.9s;
}

footer {
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 1.2s;
}

/* Scroll animations */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
  position: relative;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.modal-content button {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.close {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 24px;
  cursor: pointer;
}

/* Preloader */
.preloader {
  position: fixed;
  background: var(--primary);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  z-index: 9999;
  font-family: 'Playfair Display', serif;
  animation: fadeOut 1s ease-out forwards;
}
@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

/* Hover effects */
button:hover, .language-toggle a:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* Email feedback */
.feedback {
  color: var(--primary);
  font-weight: bold;
  margin-top: 1rem;
}
