/* html {
  font-size: 80.5%;
}

body {
  background-color: #96A78D;
}

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

img {
  width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.quote {
  font-size: 2rem;
  width: 20rem;
}

h1 {
    font-size: 10rem;
    color: white;
} */






:root{
  --text: #ffffff;
  --muted: rgba(255,255,255,.9);
  --divider: rgba(255,255,255,.95);

  --cta-bg: #ffffff;
  --cta-text: #24424d;    /* deep teal on white */
  --cta-shadow: 0 10px 28px rgba(0,0,0,.25);
}

/* reset */
*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #6ea7d1; /* fallback color while image loads */
}

/* --- background image + readable overlay --- */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/welcome-hero1.webp") center / cover no-repeat fixed;
  z-index: -2;
}
body::after{
  content: "";
  position: fixed;
  inset: 0;
  /* subtle dark/tint so white text pops on any part of the photo */
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(0,20,30,.35), rgba(0,20,30,.55));
  z-index: -1;
}

/* page wrap centers the hero content */
.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 56px 20px;
}

/* hero block */
.hero{
  text-align: center;
  max-width: 980px;
}

.hero__title{
  margin: 0 0 6px;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: .02em;
  text-shadow: 0 3px 20px rgba(0,0,0,.35);
}

.hero__subtitle{
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(16px, 3.4vw, 28px);
  letter-spacing: .12em;
  text-transform: lowercase;
  color: var(--muted);
}

.hero__divider{
  display: inline-block;
  width: clamp(120px, 24vw, 240px);
  height: 4px;
  border-radius: 999px;
  background: var(--divider);
  opacity: .95;
  margin: 6px auto 22px;
}

.hero__lead{
  margin: 0 auto 26px;
  max-width: 900px;
  font-weight: 500;
  font-size: clamp(25px, 2.6vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

/* CTA button (white pill) */
.cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--cta-bg);
  color: var(--cta-text);
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 18px);
  box-shadow: var(--cta-shadow);
  transition: transform .06s ease, box-shadow .15s ease, filter .15s ease;
}
.cta__arrow{ width: 1.2em; height: 1.2em; }

.cta:hover{ filter: brightness(1.04); box-shadow: 0 12px 32px rgba(0,0,0,.30); }
.cta:active{ transform: translateY(1px); }
.cta:focus-visible{ outline: 3px solid rgba(255,255,255,.65); outline-offset: 3px; }

/* ===== Logo badge (top-left circle, larger) ===== */
.logo-badge{
  --size: 88px;                      /* was 64px — desktop size */
  position: fixed;
  top: 18px;
  left: 18px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  z-index: 20;

  background-color: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(4px) saturate(120%);

  /* keep the icon nicely cropped inside the circle */
  background-image:
    radial-gradient(120% 120% at 50% 50%, rgba(255,255,255,.08), rgba(255,255,255,0) 55%),
    url("../images/horuscast-logo.png");
  background-repeat: no-repeat;
  background-size: 185% auto;        /* zoom level; tweak 170–210% if needed */
  background-position: 50% 44%;      /* nudge to keep the eye centered */

  transition: transform .08s ease, box-shadow .15s ease, background-size .15s ease;
  text-decoration: none;
}
.logo-badge:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,.26);
  background-size: 192% auto;
}

/* Responsive sizes */
@media (max-width: 640px){
  .logo-badge{ --size: 70px; top: 14px; left: 14px; }
}
@media (min-width: 1400px){
  .logo-badge{ --size: 100px; }      /* even larger on very wide screens */
}


/* Smaller on phones */
@media (max-width: 640px){
  .logo-badge{ --size: 56px; top: 14px; left: 14px; }
}


/* comfy spacing on tall screens */
@media (min-height: 860px){
  .wrap{ padding-top: 72px; padding-bottom: 72px; }
}

/* Smaller on phones */
@media (max-width: 640px){
  .logo-badge{ --size: 56px; top: 14px; left: 14px; }
}