@font-face {
  font-family: "Abel";
  src: url("../fonts/Abel-Regular.ttf") format("truetype");
}
:root {
  --color-first: #b3a55b;
  --color-bg: #3a3a3a;
  --color-text: white;
  --color-text-secondary: rgb(211, 211, 211);
  --color-overlay: rgba(0, 0, 0, 0.5);
  --transition-default: all 0.3s ease;
}

* {
  font-family: "Abel", sans-serif;
  box-sizing: border-box;
  /* margin: 0;
  padding: 0; */
}
html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
ul.list {
  list-style-type: initial;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}
strong {
  font-weight: bold;
  text-shadow: 0 0 10px white;
}

.lucide {
  width: 70px;
  height: 70px;
}

.title {
  color: var(--color-first);
  text-align: center;
  margin: 30px 0 50px;
  font-size: 40px;
  font-weight: 200;
  text-shadow: 0 0 40px rgba(255, 213, 0, 0.473);
  text-transform: uppercase;
}

.title__sub {
  color: var(--color-first);
  font-size: 25px;
  font-weight: 200;
}
.lang {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #686868;
  border: 0;
  color: white;
  padding: 2px 5px;
}

/* Content container */
.content {
  color: var(--color-text);
  font-size: 18px;
  background: linear-gradient(#000 10%, var(--color-bg));
  padding: 50px;
  min-height: 100vh;
  overflow: hidden;
}

.content-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.text-warning {
  color: var(--color-first);
}
strong {
  font-weight: 800;
  color: white;
}

hr {
  width: 20%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: var(--color-first);
  border: none;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 30px;
    margin: 20px 0;
  }
  .title__sub {
    font-size: 20px;
  }
  .content {
    padding: 20px;
  }
  .content-container {
    padding: 0 20px;
  }
}

/* ==========================================================================
   COMPONENTS - HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 25px;
  z-index: 50;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: var(--transition-default);
}

.scrolled .header {
  background-color: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid black;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header__logo {
  width: auto;
  max-width: 230px;
  height: 55px;
  object-fit: contain;
}

.header__nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.header__nav .button {
  display: block;
  position: relative;
  border: 0;
  padding: 8px 15px;
  color: var(--color-text);
  background-color: var(--color-first);
  z-index: 1;
  overflow: hidden;
}

.header__nav .button::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -20px;
  background-color: var(--color-first);
  filter: brightness(0.7);
  height: 150px;
  width: 150px;
  z-index: -1;
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-default);
}

.header__nav .button:hover::after {
  transform: scale(100%);
}

.burger-menu {
  position: relative;
  display: none;
  width: 35px;
  height: 2px;
  background-color: white;
}
.burger-menu::after,
.burger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  width: 100%;
  height: 100%;
}
.burger-menu::before {
  top: 10px;
}
.burger-menu::after {
  top: 20px;
}

/* ==========================================================================
   COMPONENTS - FOOTER
   ========================================================================== */
.footer {
  text-align: center;
  width: 680px;
  margin: 100px auto 0;
}
.footer__container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.footer__social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 30px;
}
.footer__social {
  position: relative;
  width: max-content;
  margin: 0 auto;
}
.footer__logo {
  width: 300px;
}
.footer__podcast {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}
.footer__expertcyber {
  width: 150px;
  height: fit-content;
}
.footer .lucide,
.footer i {
  width: 40px;
  height: 40px;
  font-size: 30px;
  fill: white;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media screen and (max-width: 768px) {
  .content-container {
    width: 90%;
    padding: 0;
  }
  .burger-menu__container {
    width: 100%;
    height: 30px;
    transform: translateY(5px);
    cursor: pointer;
  }
  .burger-menu {
    display: block;
  }
  .header {
    padding: 2px 25px 2px 0;
  }

  .header__nav__list {
    position: fixed;
    flex-direction: column;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    padding: 100px 20px;
    font-size: 25px;
    transform: translateX(100%);
    transition: var(--transition-default);
  }

  .show {
    transform: translateX(0%);
  }

  .header img {
    width: 170px;
  }
  .footer {
    width: 100%;
  }
  .footer__container {
    flex-direction: column;
  }
}
