/* -------------------- */
/* L2 APOLO GLOBAL STYLE */
/* -------------------- */

body {
  margin: 0;
  padding: 0;
  font-family: "Albert Sans", Arial, sans-serif;
  background: url('../images/bg.jpg') no-repeat center top fixed;
  background-size: cover;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  color: #ffc100;
  text-decoration: none;
}

a:hover {
  color: #12defb;
}

/* -------------------- */
/* HEADER & MENU */
/* -------------------- */

#header {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #12defb55;
  position: relative;
  z-index: 99;
}

#header .header-logo img {
  width: 220px;
}

ul.menu {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

ul.menu li {
  display: inline-block;
}

ul.menu li a {
  color: #ffc100;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

ul.menu li a:hover,
ul.menu li a.active {
  background: #12defb22;
  color: #12defb;
}

/* -------------------- */
/* HERO SECTION */
/* -------------------- */

.hero-info {
  text-align: center;
  padding: 120px 20px 80px;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid #12defb33;
}

.hero-info h1 {
  color: #ffc100;
  font-size: 3.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-info p {
  font-size: 1.2rem;
  color: #eaeaea;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-info span {
  color: #12defb;
  font-weight: bold;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn.primary {
  background: linear-gradient(90deg, #ffc100, #fef08a);
  color: #000;
}

.btn.secondary {
  border: 2px solid #12defb;
  color: #12defb;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffc10055;
}

/* -------------------- */
/* INFO SECTIONS */
/* -------------------- */

.wiki-content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.info-card {
  background: rgba(10, 10, 20, 0.85);
  border: 1px solid #12defb33;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 45px;
  box-shadow: 0 0 15px #0008;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #12defb44;
}

.info-card h2 {
  color: #ffc100;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 0.5px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  margin: 6px 0;
  color: #eee;
  font-size: 1rem;
  line-height: 1.5;
}

.highlight {
  margin-top: 10px;
  color: #12defb;
  font-style: italic;
  text-align: center;
}

/* -------------------- */
/* CTA FINAL */
/* -------------------- */

.cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  border: 1px solid #12defb33;
  box-shadow: 0 0 20px #0009;
}

.cta h2 {
  color: #ffc100;
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta p {
  color: #eaeaea;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta .btn.big {
  font-size: 1.2rem;
  padding: 18px 40px;
  margin-top: 15px;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

footer {
  text-align: center;
  color: #999;
  padding: 25px 10px;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid #12defb33;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* -------------------- */
/* MEDIA QUERIES */
/* -------------------- */

@media (max-width: 768px) {
  .hero-info h1 {
    font-size: 2.2rem;
  }
  .info-card {
    padding: 20px;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
  ul.menu {
    gap: 10px;
  }
}
