/* === ALBUKARAOQUE WEBSITE - FAQ PAGE === */
/* FAQ page specific styles and components */

/* === FAQ PAGE STYLES === */
.faq-hero {
  background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.faq-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.faq-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.faq-hero .page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  transform: scale(1);
  transition: transform 0.3s ease;
  display: inline-block;
  position: relative;
}

.faq-hero .page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.5s ease;
}

.faq-hero:hover .page-title::after {
  width: 100%;
}

.faq-hero:hover .page-title {
  transform: scale(1.02);
}

.faq-hero .page-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.faq-hero .faded-logo {
  max-width: 120px;
  opacity: 0.3;
  margin-top: 2rem;
}

/* === FAQ PAGE NAVIGATION FIXES === */
@media screen and (max-width: 600px) {
  /* Ensure hamburger menu is visible on FAQ page */
  .faq-hero ~ * .nav .icon,
  body .nav .icon {
    display: block;
    position: absolute;
    right: 15px;
    top: 28px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    z-index: 1001;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 7rem 0 5rem;
  }
  
  .faq-hero .page-title {
    font-size: 3rem;
  }
  
  .faq-hero .page-subtitle {
    font-size: 1.2rem;
  }
  
  .faq-container {
    margin-top: 0; /* Remove top margin on mobile */
  }
}

@media (max-width: 480px) {
  .faq-hero .page-title {
    font-size: 2.5rem;
  }
  
  .faq-hero .page-subtitle {
    font-size: 1rem;
  }
}

/* === ALBUKARAOQUE WEBSITE - FAQ PAGE === */
/* Styles for the FAQ page, including accordion */

.faq-container {
  max-width: 800px;
  margin: 4rem auto; /* Increased top margin for desktop */
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #e74c3c;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 0 0 8px 8px;
}

.faq-question.active + .faq-answer {
  max-height: 300px;
  padding: 1rem;
  border-top: 1px solid #eee;
}

/* === RESPONSIVE DESIGN - FAQ === */
@media (max-width: 768px) {
  .faq-container {
    margin-top: 0; /* Remove top margin on mobile */
  }
}
