/* Loumich landing page — system fonts, no external requests */

:root {
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --serif: Georgia, Cambria, "Times New Roman", Times, serif;
}

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

html,
body {
  height: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;

  /* Solid dark fallback shows if the image is missing or still loading,
     so the page always looks intentional. Drop your image at
     assets/background.jpg to replace it. */
  background-color: #11151a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero__content {
  max-width: 50rem;
}

.hero__title {
  font-family: var(--sans);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__tagline {
  display: block;
  font-style: italic;
  font-weight: 400;
  margin-top: 0.5rem;
}

.hero__quote {
  font-family: var(--serif);
  font-style: italic;
  color: #9aa0a6;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  margin-top: 2rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__quote-line {
  display: block;
}
