/* ========== FONTS ========== */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/orbitron-v34-latin/orbitron-v34-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/orbitron-v34-latin/orbitron-v34-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v19-latin/inter-v19-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-v19-latin/inter-v19-latin-800.woff2') format('woff2');
}

/* ========== ROOT + RESET ========== */
:root {
  --gap: 1rem;
  --font-base: 1.2rem;
  --bg-footer: #f0f0f0;
  --color-footer: #333;
  --h1-color: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* ========== MAIN STRUCTURE ========== */
main.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gap);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

/* ========== TYPOGRAPHY ========== */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--h1-color);
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

h2 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  color: var(--h1-color);
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.5px;
  font-family: 'Orbitron', sans-serif;
}

blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  font-size: 1rem;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #777;
}

/* ========== CONTENT FLEX ========== */
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  flex-wrap: wrap;
  width: 100%;
}

.content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  flex: 1 1 300px;
}

.content a {
  color: #000;
}

.content a:hover {
  background-color: #eee;
  text-decoration: none;
}

.content ul {
  list-style: none;
  font-size: var(--font-base);
  padding-left: 0;
  flex: 1 1 300px;
}

.content ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-footer);
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  margin-top: 4rem;
  padding: var(--gap);
  background-color: var(--bg-footer);
  font-size: 0.9rem;
}

footer a {
  margin: 0 var(--gap);
  color: var(--color-footer);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE: SMALL SCREENS ========== */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content img {
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .content ul {
    text-align: left;
    width: 100%;
    max-width: 400px;
    padding-left: 1rem;
  }
}

