/* Coeliac Kitchen — Landing CSS */

:root {
  --maxw: 920px;
  --pad: clamp(18px, 3vw, 42px);
  --radius: 22px;
  --ink: #f7f2e9;
  --shadow: rgba(8, 8, 8, 0.45);
  --overlay-top: rgba(0, 0, 0, 0.72);
  --overlay-bottom: rgba(0, 0, 0, 0.58);
  --glass: rgba(10, 10, 10, 0.25);
  --accent: #f7d28b;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  background-image: url("/assets/img/landing-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--overlay-top), var(--overlay-bottom));
}

.content,
.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.content {
  padding: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(6px);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fbe6c4;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: fit-content;
  margin: 0 auto 18px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
}

.lede {
  margin: 0 auto 22px;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  opacity: 0.95;
  max-width: 58ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 650;
  color: #271d10;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #ffe6b5;
}
.btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.footer {
  margin-top: auto;
  padding-top: 18px;
  opacity: 0.85;
  font-size: 16px;
  text-align: center;
}

.footer a {
  color: inherit;
  text-underline-offset: 4px;
}
