@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:wght@400;500;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #E48991;
  padding: 60px 40px;
  gap: 32px;
}

.logo {
  width: 500px;
  max-width: 90vw;
  height: auto;
  border-radius: 35px;
  object-fit: contain;
}

h1 {
  font-family: 'Lilita One', cursive;
  font-size: 64px;
  color: #FFFFFF;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 600px;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.67);
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #FFFFFF;
}

.social-icons i {
  width: 24px;
  height: 24px;
}

.contact-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  .subtitle { font-size: 16px; }
  .logo { width: 300px; }
}
