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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* Page: full-viewport background image */
.page {
  min-height: 100vh;
  background-image: url("images/mitch-food-14.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  position: relative;
  padding: 20px;
}

/* Card: centered horizontally, vertically at 2/3 down the page */
.card {
  position: absolute;
  top: 66.67%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card__title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.card__subtitle {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  color: #0077b6;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card__divider {
  width: 60px;
  height: 3px;
  background-color: #0077b6;
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

.card__text {
  font-size: 16px;
  color: #555;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.card__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.card__cta {
  display: inline-block;
  padding: 14px 28px;
  background-color: #0077b6;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.card__cta:hover {
  background-color: #005f8d;
}

.card__footer {
  font-size: 13px;
  color: #888;
  margin-top: 32px;
  margin-bottom: 0;
}
