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

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

:root {
  --bg: #ffffff;
  --surface: #f2f2f2;
  --primary: #F45044;
  --primary-light: #fbfb88;
  --primary-dark: #DC2626;
  --text: #1C1917;
  --text-muted: #78716C;
  --text-tertiary: #A8A29E;
  --divider: #E7E5E4;
  --shadow: rgba(28, 25, 23, 0.06);
  --shadow-medium: rgba(28, 25, 23, 0.12);
  --card: #ffffff;
  --success: #16A34A;
  --error: #DC2626;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(160deg, #ffffff 0%, #f7f5f3 40%, #eef7ee 100%);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--divider);
  color: var(--text-muted);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Main content */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  width: clamp(160px, 40vw, 220px);
  height: auto;
  margin-bottom: 1rem;
}

.hero-mascots {
  width: clamp(200px, 50vw, 300px);
  height: auto;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 400px;
}

/* Coming soon badge */
.coming-soon {
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
  background: var(--primary);
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(244, 80, 68, 0.3);
}

/* App store buttons */
.store-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--divider);
  border-radius: 12px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px var(--shadow-medium);
}

.store-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Page content (legal, contact) */
.page-content {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

.page-title {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.page-content p {
  line-height: 1.7;
  color: var(--text-muted);
}

.page-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.page-content h3 {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.page-content ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.page-content li {
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.page-content strong {
  color: var(--text);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1.5px solid var(--divider);
  border-radius: 12px;
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--primary);
  border: none;
  border-radius: 28px;
  color: #ffffff;
  padding: 0.8rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(244, 80, 68, 0.3);
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.4rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
}
