:root {
  --bg: #f4eee4; /* background color from logo */
  --text: #1f1f1f;
  --muted: #333;
  --accent: #b10000;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wrap {
  width: 100%;
  max-width: 1000px;
  padding: 24px;
}

.welcome {
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 18px;
}

.logo {
  display: block;
  margin: 12px auto 18px;
  width: min(500px, 90vw); /* bigger logo on desktop */
  height: auto;
}



.contact {
  background: rgba(177, 0, 0, 0.15); /* light red tint from logo */
  backdrop-filter: blur(3px);
  border-radius: 20px;
  padding: 24px 28px;
  margin: 20px auto 0;
  width: min(720px, 94vw);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.contact p {
  margin: 12px 0;
  font-size: clamp(18px, 2.5vw, 22px); /* bigger text */
  font-weight: 500;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px); /* bigger WhatsApp number */
}


@media (prefers-color-scheme: dark) {
  :root { --text: #eaeaea; --muted: #cfcfcf; }
  .contact { background: rgba(0,0,0,0.25); }
}

@media (min-width: 1024px) {
  .wrap {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}
