@font-face {
  font-family: 'Poppl Laudatio Condensed';
  src: url('fonts/PopplLaudatioCondensedBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --debian-red: #a80030;
  --light-gray: #f6f6f6;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--light-gray);
  color: #000;
  font-size: 16px;
}

h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--debian-red);
}

a.text-link {
  color: var(--debian-red);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s, border-bottom 0.2s;
}

a.text-link:visited {
  color: #000;
}

a.text-link:hover {
  color: #000;
  border-bottom: 2px dotted #000;
}

header {
  background-color: var(--light-gray);
  padding: 1rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 1rem;
}

.logo a img {
  height: 40px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--debian-red);
  text-decoration: none;
  font-weight: bold;
}

.language-switcher {
  font-size: 0.875rem;
  white-space: nowrap;
}

.language-switcher select {
  padding: 0.3rem;
}

main {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
}

.hero {
  background-image: url('images/wallpaper.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  position: relative;
}

.hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
}

.hero p {
  color: #f0f0f0;
  font-size: 1.25rem;
}

.hero-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  gap: 2rem;
}

.hero-link {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}

.hero-link span {
  border-bottom: 2px dotted white;
  padding-bottom: 2px;
  transition: border-bottom-style 0.2s, color 0.2s;
}

.hero-link:hover span {
  border-bottom-style: solid;
  color: #ddd;
}

.trixie-banner {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

trixie-hero-image {
  text-align: center;
  margin: 2rem auto;
}

.trixie-hero-image img {
  max-width: 100%;
  height: auto;
}

.trixie-title h1 {
  color: var(--debian-red);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.trixie-title p {
  color: #333;
  font-size: 1.25rem;
}

.trixie-intro {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.trixie-intro h1 {
  font-family: 'Poppl Laudatio Condensed', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--debian-red);
  font-weight: bold;
}

.trixie-intro p {
  font-size: 1.25rem;
  color: #333;
}

.clean-link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.clean-link:hover {
  text-decoration: none;
  color: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--debian-red);
  text-decoration: none;
  font-weight: 500;
  border: none;
  border-bottom: 2px dotted var(--debian-red);
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
  margin: 0 0.6rem 0.6rem 0;
}

.button::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("images/output-svgrepo-com.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button:hover {
  color: #000;
  border-bottom-color: #000;
}

.button:hover::before {
  filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
  .button {
    padding: 0.5rem;
    justify-content: center;
  }

  .button::after {
    content: none;
  }

  .button span {
    display: none;
  }
}

section {
  margin-top: 3rem;
}

.three-columns {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: nowrap;
}

.column {
  flex: 1;
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  min-width: 0;
}

.column h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.column ul {
  padding-left: 1rem;
}

.download-heading-container {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.download-heading-container h1 {
  margin: 0;
}

.icon-banner-download {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.icon-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-column img {
  width: 10px;
  height: 10px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .icon-banner-download {
    grid-template-columns: repeat(7, auto);
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .icon-banner-download {
    grid-template-columns: repeat(5, auto);
    gap: 0.4rem;
  }

  .download-heading-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

footer {
  background-color: #ddd;
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--debian-red);
}

footer a {
  color: var(--debian-red);
  text-decoration: underline;
}

