/* style/index-beginner-guide.css */
.page-index-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-index-beginner-guide__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-beginner-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,subtle_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-beginner-guide__hero-section > .page-index-beginner-guide__container {
  position: relative;
  z-index: 1;
}

.page-index-beginner-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-index-beginner-guide__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-index-beginner-guide__btn--primary {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

.page-index-beginner-guide__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 193, 7, 0.4);
}

.page-index-beginner-guide__btn--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-index-beginner-guide__btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.4);
}

.page-index-beginner-guide__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-beginner-guide__btn--app {
  margin: 10px 15px;
}

.page-index-beginner-guide__section {
  padding: 80px 0;
}

.page-index-beginner-guide__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-beginner-guide__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-beginner-guide__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-beginner-guide__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-beginner-guide__feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-beginner-guide__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-beginner-guide__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-beginner-guide__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-index-beginner-guide__guide-steps {
  padding-bottom: 120px; /* Adjust for floating menu */
}

.page-index-beginner-guide__step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-index-beginner-guide__step-item:last-child {
  margin-bottom: 0;
}

.page-index-beginner-guide__step-item--reverse {
  flex-direction: row-reverse;
}

.page-index-beginner-guide__step-content {
  flex: 1;
}

.page-index-beginner-guide__step-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-beginner-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index-beginner-guide__step-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-beginner-guide__step-content p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 30px;
}

.page-index-beginner-guide__app-download {
  text-align: center;
  padding-bottom: 120px; /* Adjust for floating menu */
}

.page-index-beginner-guide__app-buttons {
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-index-beginner-guide__app-image {
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-beginner-guide__tips {
  padding-bottom: 120px; /* Adjust for floating menu */
}

.page-index-beginner-guide__tip-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
}

.page-index-beginner-guide__tip-list li {
  background-color: #fff;
  border-left: 5px solid #ffc107;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #555;
}

.page-index-beginner-guide__tip-title {
  color: #007bff;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-beginner-guide__tips-image {
  max-width: 700px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-beginner-guide__cta {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-index-beginner-guide__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric,blue_gold_texture,subtle]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-index-beginner-guide__cta > .page-index-beginner-guide__container {
  position: relative;
  z-index: 1;
}

.page-index-beginner-guide__cta .page-index-beginner-guide__section-title {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-beginner-guide__cta .page-index-beginner-guide__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Floating Action Menu */
.page-index-beginner-guide__floating-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #007bff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.page-index-beginner-guide__floating-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  padding: 5px 0;
  flex: 1;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index-beginner-guide__floating-btn:hover {
  background-color: #0056b3;
  border-radius: 8px;
}

.page-index-beginner-guide__floating-icon {
  font-size: 1.8em;
  margin-bottom: 5px;
  display: block;
  color: #ffc107;
}

.page-index-beginner-guide__floating-icon img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-beginner-guide__hero-title {
    font-size: 2.5em;
  }
  .page-index-beginner-guide__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-index-beginner-guide__feature-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
  .page-index-beginner-guide__step-item {
    flex-direction: column;
    text-align: center;
  }
  .page-index-beginner-guide__step-item--reverse {
    flex-direction: column;
  }
  .page-index-beginner-guide__step-image-wrapper {
    order: -1; /* Image above text on mobile for reversed items */
    margin-bottom: 30px;
  }
  .page-index-beginner-guide__step-title {
    font-size: 1.8em;
  }
  .page-index-beginner-guide__step-content p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index-beginner-guide__hero-section {
    padding: 80px 0;
  }
  .page-index-beginner-guide__hero-title {
    font-size: 2em;
  }
  .page-index-beginner-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-index-beginner-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-beginner-guide__section {
    padding: 60px 0;
  }
  .page-index-beginner-guide__section-title {
    font-size: 1.8em;
  }
  .page-index-beginner-guide__feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-index-beginner-guide__floating-btn {
    font-size: 0.75em;
  }
  .page-index-beginner-guide__floating-icon {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-index-beginner-guide__hero-title {
    font-size: 1.8em;
  }
  .page-index-beginner-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-beginner-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-beginner-guide__floating-text {
    display: none;
  }
  .page-index-beginner-guide__floating-icon {
    font-size: 2.2em;
    margin-bottom: 0;
  }
  .page-index-beginner-guide__floating-btn {
    padding: 8px 0;
  }
}