/* css/blocks.css */

/* Navbar styling */
nav.navbar {
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav .logo img {
  max-height: 50px;
}
.navbar-nav .nav-link {
  color: #fff;
  margin: 0 10px;
  font-weight: 700;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.navbar-toggler {
  border-color: #fff;
}
.navbar-toggler .fas {
  color: #fff;
}

/* Footer styling */
.footer {
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  padding: 15px 0;
}

/* Section page styling */
.sectionpage {
  padding: 60px 15px;
  background-color: #f8f9fa;
  color: #333;
}

/* FAQ styling */
.faq-item {
  margin-bottom: 20px;
  text-align: left;
}
.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
}
.faq-arrow {
  color: #FFD700;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 10px;
  border-left: 2px solid #FFD700;
  margin-top: 5px;
}

/* Features styling */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.feature {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.feature i {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 10px;
}
.feature h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #333;
}
.feature .title {
  margin-top: 10px;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.2rem;
  color: #333;
}
.feature p {
  font-size: 0.95rem;
  color: #666;
}

/* Mobile navigation adjustments */
@media (max-width: 768px) {
  .container-xxl {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navbar-collapse {
    order: 1;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .button-game {
    order: 2;
    margin-top: 15px;
  }
  .logo {
    order: 0;
    margin-bottom: 10px;
  }
}