/* C:\xampp\htdocs\ahaondeag\public\assets\stylesheets\pages\home.css */

/* Home card: allow wallpaper to breathe */
.page--home .home.card{
  box-shadow: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(2px);
  border: 0;
}

/* Header stack */
.page--home .home__header{
  text-align: center;
  display: grid;
  gap: var(--space-3);
}

/* Logo with glow halo */
.page--home .home__logo{
  display: grid;
  place-items: center;
}

.page--home .home__logo-img{
  width: 7.25rem;
  height: 7.25rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.35));
}

/* Title */
.page--home .home__title{
  margin: 0;
  line-height: 1.05;
}

/* Brand word sizing for home */
.page--home .brandword{
  font-size: clamp(2.0rem, 5.2vw, 2.8rem);
  display: block;
}

/* Tagline */
.page--home .home__tagline{
  margin: 0 auto;
  max-width: 40ch;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Actions list */
.page--home .home__actions-list{
  list-style: none;
  padding: 0;
  margin: calc(var(--space-5) * 1.25) 0 var(--space-5);
  display: grid;
  gap: var(--space-4);
}

/* Fineprint */
.page--home .home__fineprint{
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* About link */
.page--home .home__about-link {
  margin: 0 0 var(--space-3);
  text-align: center;
  font-size: 0.95rem;
}

.page--home .home__about-link a {
  color: var(--irish-dark-green);
  text-decoration: none;
 
}

.page--home .home__about-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

.page--home .home__about-link a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--aha-link) 35%, transparent);
  outline-offset: 3px;
  border-radius: 3px;
}