:root {
  --primary-color: #7b3fb4;
  /* Purple from original */
  --text-color: #333333;
  --bg-gradient-start: #ffffff;
  --bg-gradient-end: #e8d5f5;
  /* More visible light purple */
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Align to top */
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  padding-top: 15vh;
  /* Position content in the first third */
}

.container {
  width: 90%;
  max-width: 800px;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 200px;
  /* Reduced to 80% of 250px */
  width: 40vw;
  /* Reduced to 80% of 50vw */
  height: auto;
  margin-bottom: 2rem;
  /* Optional: Add a subtle shadow if it's a cutout png */
  /* filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); */
}

h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #555;
}

.coming-soon {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #777;
  font-style: italic;
}

a.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  /* White text */
  background-color: var(--primary-color);
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 50px;
  /* Pill shape */
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(123, 63, 180, 0.2);
}

a.contact-btn:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(123, 63, 180, 0.3);
}

.icon {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 0.9rem;
  }

  body {
    padding-top: 10vh;
  }
}