/* ===== Base / Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
 
html,
body {
  height: 100%;
}
 
body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: alex brush;
  line-height: 1.5;
}
 
/* ===== Layout ===== */
/* Full-width page, centered content */
.page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  padding: clamp(16px, 3vw, 48px);
  font-family: alex brush;
}
 
/* Content takes full width, but stays readable on large screens */
.content {
  width: 100%;
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  font-family: alex brush;
}
 
/* ===== Typography ===== */
.title {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  align-items: center;
  font-family: alex brush;
}
 
.subtitle {
  margin: 0 auto;
  max-width: 60ch;
  font-size: clamp(16px, 2vw, 20px);
  font-family: alex brush;
}
 
/* ===== Sections ===== */
.card {
  width: 100%;
  border: 2px solid #000;
  padding: clamp(16px, 2.5vw, 28px);
}
 
.heading {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 24px);
}
 
.text {
  margin: 0 auto;
  max-width: 70ch;
  font-size: clamp(14px, 1.8vw, 18px);
}
 
/* ===== Social Links ===== */
.links {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap; /* wraps nicely on small screens */
}
 
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  min-width: 160px;
}
 
/* Simple hover/focus */
.social:hover,
.social:focus-visible,
.email:hover,
.email:focus-visible {
  outline: none;
  background: #000;
  color: #fff;
}
 
/* ===== Footer ===== */
.footer {
  width: 100%;
  margin-top: clamp(6px, 1vw, 10px);
  display: flex;
  justify-content: center;
}
 
.email {
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  font-weight: 700;
}

.alex-brush-regular {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-style: normal;
}
 
/* Optional: slightly reduce vertical centering on very short screens */
@media (max-height: 540px) {
  .page {
    align-items: flex-start;
  }
}
 
