/* style/beginner-guide.css */

/* Base Styles */
.page-beginner-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  background-color: #0d0d0d; /* Slightly lighter than #000 for content sections */
}

.page-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
  /* Fixed navigation bar spacing for the first content section */
  position: relative;
}

/* Fixed header spacing for the first section */
.page-beginner-guide__section:first-of-type {
  padding-top: 70px; /* Adjust based on actual header height + desired spacing */
}

.page-beginner-guide__heading {
  font-size: 36px;
  color: #FFCC00; /* Gold accent for headings */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}

.page-beginner-guide__sub-heading {
  font-size: 20px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-beginner-guide__content-block {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for content blocks */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.page-beginner-guide p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-beginner-guide strong {
  color: #FFCC00;
}

.page-beginner-guide__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-beginner-guide__list-item {
  margin-bottom: 10px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-beginner-guide__link {
  color: #FFCC00; /* Gold for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-beginner-guide__link:hover {
  color: #CC3300; /* Red on hover */
}

.page-beginner-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-beginner-guide__hero-section {
  background: linear-gradient(135deg, #CC3300, #992200); /* Dark red gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 110px; /* Adjust for fixed header */
}

.page-beginner-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-beginner-guide__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFCC00; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__hero-description {
  font-size: 22px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-beginner-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-beginner-guide__button--primary {
  background-color: #FFCC00; /* Gold button */
  color: #333333; /* Dark text on gold */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__button--primary:hover {
  background-color: #CC3300; /* Red on hover */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Step Cards Section */
.page-beginner-guide__section--steps .page-beginner-guide__content-block {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.page-beginner-guide__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFCC00;
}

.page-beginner-guide__step-title {
  font-size: 28px;
  color: #FFCC00;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 204, 0, 0.3);
  padding-bottom: 10px;
}

/* Contact List */
.page-beginner-guide__contact-list {
  list-style-type: none;
  padding-left: 0;
}

.page-beginner-guide__contact-item {
  margin-bottom: 10px;
  font-size: 18px;
  color: #f0f0f0;
}

.page-beginner-guide__contact-item strong {
  color: #FFCC00;
}

/* FAQ Section */
.page-beginner-guide__faq-list {
  margin-top: 30px;
}

.page-beginner-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #CC3300; /* Red background for question */
  border: 1px solid #992200;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-beginner-guide__faq-question:hover {
  background: #992200;
  border-color: #661100;
}

.page-beginner-guide__faq-question:active {
  background: #661100;
}

.page-beginner-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #ffffff;
}

.page-beginner-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFCC00; /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-beginner-guide__faq-item.active .page-beginner-guide__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-beginner-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
}

.page-beginner-guide__faq-item.active .page-beginner-guide__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 204, 0, 0.1); /* Light gold transparent background for answer */
  border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide__heading {
    font-size: 32px;
  }
  .page-beginner-guide__hero-title {
    font-size: 40px;
  }
  .page-beginner-guide__hero-description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__section {
    padding: 40px 0;
  }
  .page-beginner-guide__section:first-of-type {
    padding-top: 60px; /* Adjust for mobile fixed header */
  }
  .page-beginner-guide__container {
    padding: 0 15px;
  }
  .page-beginner-guide__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-beginner-guide__sub-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page-beginner-guide__hero-section {
    padding: 80px 0;
    padding-top: 90px; /* Adjust for mobile fixed header */
  }
  .page-beginner-guide__hero-title {
    font-size: 32px;
  }
  .page-beginner-guide__hero-description {
    font-size: 18px;
  }
  .page-beginner-guide__button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-beginner-guide p,
  .page-beginner-guide__list-item {
    font-size: 16px;
  }
  .page-beginner-guide__step-title {
    font-size: 24px;
  }
  .page-beginner-guide__faq-question {
    padding: 15px 20px;
  }
  .page-beginner-guide__faq-question h3 {
    font-size: 16px;
  }
  .page-beginner-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-beginner-guide__faq-answer {
    padding: 0 20px;
  }
  .page-beginner-guide__faq-item.active .page-beginner-guide__faq-answer {
    padding: 15px 20px !important;
  }
  
  /* Mobile image responsive adaptation */
  .page-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-beginner-guide__section,
  .page-beginner-guide__content-block,
  .page-beginner-guide__container,
  .page-beginner-guide__step-card,
  .page-beginner-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}