/* Font Configuration */
@font-face {
  font-family: 'Apple Garamond';
  src: url('fonts/AppleGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('fonts/AppleGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Apple Garamond';
  src: url('fonts/AppleGaramond-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Variables */
:root {
  --bg-color: hsl(24, 60%, 97%); /* Slightly more orange off-white */
  --accent-color: hsl(28, 100%, 50%); /* Vibrant orange */
  --text-muted: hsl(24, 20%, 45%);
  --text-muted-secondary: hsl(24, 15%, 58%);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

body {
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px;
}

.container {
  width: 100%;
  max-width: 800px; /* Centered block */
  text-align: left; /* Left-aligned text */
}

.message {
  font-family: 'Apple Garamond', serif;
  font-size: 5rem; /* Bigger */
  font-weight: 300; /* Light weight Apple Garamond */
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent-color);
  text-transform: lowercase;
  word-break: break-word;
  margin-bottom: 32px;
}

.message .heavy {
  font-weight: 700; /* Heavier weight Apple Garamond */
  font-style: italic; /* Italicized */
}

.message .again {
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem; /* Super small compared to 5rem */
  font-weight: 400; /* Regular NHG */
  letter-spacing: -0.02em;
  color: var(--accent-color);
  margin-left: 8px;
  vertical-align: baseline;
}

.sub-link {
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400; /* Regular Neue Haas Grotesk */
  color: var(--text-muted);
  text-transform: lowercase;
  margin-top: 8px;
}

.sub-link:first-of-type {
  margin-top: 0;
}

.sub-link.secondary {
  font-size: 0.95rem; /* Smaller font */
  color: var(--text-muted-secondary);
  margin-top: 6px;
}

.sub-link a {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sub-link a:hover {
  opacity: 0.8;
}

/* Responsive adjust */
@media (max-width: 768px) {
  .message {
    font-size: 3.5rem;
    line-height: 1.2;
  }
  .sub-link {
    font-size: 1.1rem;
  }
  .sub-link.secondary {
    font-size: 0.9rem;
  }
  body {
    padding: 24px;
  }
}
