/* 84945206.css - Beige abstract blur background with maroon hacker theme (mobile-first) */

:root {
  --beige-1: #f5e2c9;
  --beige-2: #efe0cc;
  --beige-3: #f8ecd9;
  --maroon: #7a1d1d;
  --maroon-dark: #5a0f0f;
  --text: #2b1b1b;
  --card: rgba(255, 255, 255, 0.18);
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  --focus: #ffd6d6;
  --cta: linear-gradient(135deg, #c36b5e 0%, #8b1d1d 60%, #7a1d1d 100%);
}

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

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;
  color: var(--text);
  background: linear-gradient(135deg, var(--beige-1) 0%, var(--beige-2) 50%, var(--beige-3) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
}

/* Abstract beige blur overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: -10vmax;
  background: radial-gradient(circle at 25% 20%, rgba(255,235,210,0.9) 0 25%, rgba(255,235,210,0) 40%),
              radial-gradient(circle at 70% 60%, rgba(245,210,170,0.85) 0 28%, rgba(245,210,170,0) 40%),
              radial-gradient(circle at 40% 75%, rgba(210,180,140,0.8) 0 30%, rgba(210,180,140,0) 40%);
  filter: blur(60px);
  z-index: -1;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.9;
}

/* Header styling with maroon hacker vibe */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(122, 14, 14, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
}

.branding {
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #fff9f2;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* Main content centering */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Frosted glass hero panel with beige tones */
.hero {
  display: grid;
  gap: 1rem;
  width: min(100%, 860px);
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  align-items: center;
  justify-items: center;
  text-align: center;
}

/* One <h1> with proper hierarchy; minimalist typography */
.hero h1 {
  font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
  margin: 0;
  color: #3b1b1b;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

/* Subhead text */
.subhead {
  font-size: clamp(0.95rem, 1.5vw + 0.8rem, 1.15rem);
  color: #5a463e;
  margin: 0;
  line-height: 1.4;
}

/* Centerpiece image and CTA area */
.hero-media {
  display: grid;
  gap: 1rem;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.hero-media img {
  width: min(92%, 720px);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* Prominent CTA button that drives to content URL */
.cta {
  display: inline-block;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #041c1c;
  background: var(--cta);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.cta:focus-visible {
  outline: 3px solid #ffd2d2;
  outline-offset: 2px;
}

/* Footer with small advertisement and gratitude note */
footer {
  padding: 1rem;
  text-align: center;
  color: #2b1b1b;
  background: rgba(122, 14, 14, 0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.footer-ad a {
  color: #7a1d1d;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(122, 29, 29, 0.15);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 600;
}
.closing-note {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-top: 0.25rem;
  color: #2b1b1b;
}

/* Focus visibility for accessibility on all anchors/buttons */
a:focus-visible {
  outline: 3px solid #ffd2d2;
  outline-offset: 2px;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
  .hero {
    padding: 2rem;
    border-radius: 22px;
  }
  .hero-media img {
    width: 60%;
    max-width: 800px;
  }
}