
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Libre+Franklin:wght@300;400;500;700&display=swap");

:root {
  --bg: #fff;
  --text: #000;
  --accent: #999;
  --font-main: 'Barlow Condensed', sans-serif;
  --font-title: 'Barlow Condensed', sans-serif;
}

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

strong {
  font-weight: 600;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 1.8;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  background: #000;
  z-index: 100;
}

header h1 a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 4rem 2rem;
}

.container p{
  text-align: justify;
}


h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 1rem;
}

p, li {
  margin-bottom: 2rem;
}

ul {
  list-style: none;
  padding: 0rem 2rem;
}

/* Responsive */
@media(max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  nav.active {
    display: flex;
  }
  nav a {
    margin: 0;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive */
@media(max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .container {
  padding: 2rem 2rem;
}

  nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 0.5rem 0;
    z-index: 1000;
    text-transform: uppercase;
  }

  nav a {
    margin: 0;
    font-size: 18px;
    padding: 0.5rem;
  }

  .menu-toggle {
    display: none;
  }
}