/*
Theme Name: Share-Art Launch
Theme URI: https://share-art.org
Author: Share-Art
Description: Theme minimaliste pour la page de lancement Share-Art.
Version: 1.0.0
Text Domain: share-art-launch
*/

:root {
  --sa-bg: #f6f2ec;
  --sa-card: #fbf8f3;
  --sa-text: #1c2731;
  --sa-muted: #55636d;
  --sa-line: #d8c8b8;
  --sa-accent: #c98562;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--sa-text);
  background: radial-gradient(circle at 100% 0%, #fefbf6 0%, var(--sa-bg) 45%, #f1ece5 100%);
  line-height: 1.6;
}

.sa-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
}

.sa-hero {
  width: min(880px, 100%);
  background: color-mix(in srgb, var(--sa-card) 88%, white 12%);
  border: 1px solid color-mix(in srgb, var(--sa-line) 70%, white 30%);
  border-radius: 20px;
  padding: clamp(24px, 6vw, 64px);
  box-shadow: 0 16px 42px rgba(28, 39, 49, 0.08);
}

.sa-logo {
  margin: 0 0 20px;
}

.sa-logo img {
  width: min(460px, 100%);
  height: auto;
  display: block;
}

.sa-baseline {
  margin: 4px 0 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--sa-muted);
}

h1 {
  margin: 22px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 7.2vw, 3.8rem);
  line-height: 1.05;
  color: #17222b;
}

.sa-subtitle {
  margin: 0 0 18px;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: var(--sa-muted);
}

.sa-intro,
.sa-secondary {
  margin: 0;
  max-width: 66ch;
  font-size: clamp(1rem, 1.7vw, 1.1rem);
}

.sa-secondary {
  margin-top: 14px;
  color: color-mix(in srgb, var(--sa-text) 86%, white 14%);
}

.sa-contact {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.sa-contact-label {
  font-size: 0.95rem;
  color: var(--sa-muted);
}

.sa-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.64rem 1rem;
  border: 1px solid color-mix(in srgb, var(--sa-accent) 70%, #ffffff 30%);
  border-radius: 999px;
  color: #603f2f;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sa-contact-link:hover,
.sa-contact-link:focus {
  background: color-mix(in srgb, var(--sa-accent) 18%, white 82%);
  border-color: var(--sa-accent);
  color: #4d3226;
}

.sa-status {
  margin-top: 26px;
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sa-muted);
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--sa-line) 74%, white 26%);
}

@media (max-width: 640px) {
  .sa-hero {
    border-radius: 16px;
  }

  h1 {
    margin-top: 18px;
  }
}
