/* style/beginner-guide-getting-started.css */

/* Biến màu sắc */
:root {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --accent-color: #DC3545;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
}

.page-beginner-guide-getting-started {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-beginner-guide-getting-started .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-beginner-guide-getting-started .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A3A60 100%); /* Darker gradient for primary */
  color: var(--text-light);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-getting-started .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-beginner-guide-getting-started .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-beginner-guide-getting-started .hero-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Content Block Styling */
.page-beginner-guide-getting-started .content-block {
  padding: 60px 0;
  background-color: var(--text-light);
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-getting-started .content-block:nth-child(even) {
  background-color: var(--background-light);
}

.page-beginner-guide-getting-started .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-beginner-guide-getting-started .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-beginner-guide-getting-started p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-beginner-guide-getting-started ul,
.page-beginner-guide-getting-started ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-beginner-guide-getting-started ul li,
.page-beginner-guide-getting-started ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-beginner-guide-getting-started strong {
  color: var(--primary-color);
}

.page-beginner-guide-getting-started .note-text {
  font-style: italic;
  color: #666;
  margin-top: 20px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 15px;
}

.page-beginner-guide-getting-started .content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-beginner-guide-getting-started .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-beginner-guide-getting-started .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-beginner-guide-getting-started .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-getting-started .btn-secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  margin-top: 15px;
}

.page-beginner-guide-getting-started .btn-secondary:hover {
  background-color: #081a33;
  border-color: #081a33;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(10, 35, 66, 0.4);
}

.page-beginner-guide-getting-started .btn-tertiary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-beginner-guide-getting-started .btn-tertiary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(10, 35, 66, 0.4);
}

/* Download Section */
.page-beginner-guide-getting-started .download-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-getting-started .step-item {
  flex: 1 1 45%;
  min-width: 300px;
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-beginner-guide-getting-started .step-item h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-beginner-guide-getting-started .step-item ol {
  text-align: left;
  padding-left: 20px;
  list-style-type: decimal;
}

.page-beginner-guide-getting-started .step-item .step-image {
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Features Section */
.page-beginner-guide-getting-started .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-getting-started .feature-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-getting-started .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-getting-started .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-beginner-guide-getting-started .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-beginner-guide-getting-started .feature-item p {
  font-size: 1em;
  color: #555;
}

/* FAQ Section */
.page-beginner-guide-getting-started .faq-item {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-getting-started .faq-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-getting-started .faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-beginner-guide-getting-started .faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide-getting-started .faq-item p {
  margin-top: 10px;
  font-size: 1em;
  color: #666;
  display: none;
}

.page-beginner-guide-getting-started .faq-item.active p {
  display: block;
}

/* CTA Section */
.page-beginner-guide-getting-started .cta-section {
  background: linear-gradient(135deg, #1A3A60 0%, var(--primary-color) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-beginner-guide-getting-started .cta-section .section-title {
  color: var(--secondary-color);
}

.page-beginner-guide-getting-started .cta-section .section-title::after {
  background-color: var(--text-light);
}

.page-beginner-guide-getting-started .cta-section p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-beginner-guide-getting-started .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-beginner-guide-getting-started .cta-image {
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Sub-section titles */
.page-beginner-guide-getting-started .subsection-title {
  font-size: 1.8em;
  color: var(--accent-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-getting-started .hero-title {
    font-size: 3em;
  }
  .page-beginner-guide-getting-started .hero-subtitle {
    font-size: 1.2em;
  }
  .page-beginner-guide-getting-started .section-title {
    font-size: 2em;
  }
  .page-beginner-guide-getting-started .download-steps {
    flex-direction: column;
    align-items: center;
  }
  .page-beginner-guide-getting-started .step-item {
    flex: 1 1 90%;
  }
  .page-beginner-guide-getting-started .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-getting-started .hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-getting-started .hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-getting-started .section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-getting-started .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide-getting-started .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-getting-started .cta-buttons .btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-beginner-guide-getting-started .feature-item h3 {
    font-size: 1.4em;
  }
  .page-beginner-guide-getting-started .faq-item h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-getting-started .hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-getting-started .hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-getting-started .section-title {
    font-size: 1.6em;
  }
  .page-beginner-guide-getting-started .container {
    padding: 0 15px;
  }
  .page-beginner-guide-getting-started .hero-section,
  .page-beginner-guide-getting-started .content-block,
  .page-beginner-guide-getting-started .cta-section {
    padding: 40px 0;
  }
}