/* style/resources-how-to-watch-thomo-live.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-login-bg: #C30808;
  --register-login-text: #FFFF00;
  --body-bg-color: #0a0a0a;
  --text-color-on-dark: #ffffff;
  --text-color-on-light: #333333;
  --card-bg-color: rgba(255, 255, 255, 0.1);
  --border-color: #e0e0e0;
}

.page-resources-how-to-watch-thomo-live {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-on-dark); /* Body background is dark, so text is light */
  background-color: var(--body-bg-color);
}

.page-resources-how-to-watch-thomo-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-how-to-watch-thomo-live__hero-section {
  position: relative;
  padding: 100px 0 80px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  text-align: center;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  overflow: hidden;
}

.page-resources-how-to-watch-thomo-live__hero-section.page-resources-how-to-watch-thomo-live__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-color-on-dark);
}

.page-resources-how-to-watch-thomo-live__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-how-to-watch-thomo-live__description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-resources-how-to-watch-thomo-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-how-to-watch-thomo-live__btn-primary,
.page-resources-how-to-watch-thomo-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-how-to-watch-thomo-live__btn-primary {
  background-color: var(--register-login-bg);
  color: var(--register-login-text);
  border: 2px solid var(--register-login-bg);
}

.page-resources-how-to-watch-thomo-live__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-resources-how-to-watch-thomo-live__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-how-to-watch-thomo-live__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* Video Tutorial Section */
.page-resources-how-to-watch-thomo-live__video-tutorial-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-color-on-light);
  text-align: center;
}

.page-resources-how-to-watch-thomo-live__video-tutorial-section.page-resources-how-to-watch-thomo-live__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-on-light);
}

.page-resources-how-to-watch-thomo-live__section-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-how-to-watch-thomo-live__section-description {
  font-size: 1.05em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-watch-thomo-live__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-watch-thomo-live__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-resources-how-to-watch-thomo-live__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

/* Content Area */
.page-resources-how-to-watch-thomo-live__content-area {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-color-on-light);
}

.page-resources-how-to-watch-thomo-live__content-area.page-resources-how-to-watch-thomo-live__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-on-light);
}

.page-resources-how-to-watch-thomo-live__sub-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-how-to-watch-thomo-live__sub-heading {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #015f2f; /* Slightly darker green for sub-headings */
}

.page-resources-how-to-watch-thomo-live__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-how-to-watch-thomo-live__list,
.page-resources-how-to-watch-thomo-live__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-resources-how-to-watch-thomo-live__ordered-list {
  list-style-type: decimal;
}

.page-resources-how-to-watch-thomo-live__list-item {
  margin-bottom: 10px;
}

.page-resources-how-to-watch-thomo-live__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-how-to-watch-thomo-live__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-watch-thomo-live__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-how-to-watch-thomo-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-how-to-watch-thomo-live__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-how-to-watch-thomo-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-watch-thomo-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-color-on-light);
  background-color: var(--secondary-color);
}

.page-resources-how-to-watch-thomo-live__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
}

.page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-toggle {
  transform: rotate(0deg);
}

.page-resources-how-to-watch-thomo-live__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-watch-thomo-live__main-title {
    font-size: 2.5em;
  }

  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-watch-thomo-live__sub-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-watch-thomo-live__sub-heading {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-watch-thomo-live {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-watch-thomo-live__hero-section {
    padding: 80px 0 60px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-how-to-watch-thomo-live__main-title {
    font-size: 2em;
  }

  .page-resources-how-to-watch-thomo-live__description {
    font-size: 1em;
  }

  .page-resources-how-to-watch-thomo-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-watch-thomo-live__btn-primary,
  .page-resources-how-to-watch-thomo-live__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-resources-how-to-watch-thomo-live__video-tutorial-section,
  .page-resources-how-to-watch-thomo-live__content-area {
    padding: 40px 0;
  }

  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-watch-thomo-live__sub-title {
    font-size: 1.6em;
  }

  .page-resources-how-to-watch-thomo-live__sub-heading {
    font-size: 1.2em;
  }

  .page-resources-how-to-watch-thomo-live__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image and Video Responsiveness */
  .page-resources-how-to-watch-thomo-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-watch-thomo-live video,
  .page-resources-how-to-watch-thomo-live__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-watch-thomo-live__video-section,
  .page-resources-how-to-watch-thomo-live__video-container,
  .page-resources-how-to-watch-thomo-live__video-wrapper,
  .page-resources-how-to-watch-thomo-live__section,
  .page-resources-how-to-watch-thomo-live__card,
  .page-resources-how-to-watch-thomo-live__cta-buttons,
  .page-resources-how-to-watch-thomo-live__button-group,
  .page-resources-how-to-watch-thomo-live__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-resources-how-to-watch-thomo-live__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-resources-how-to-watch-thomo-live__faq-answer {
    padding: 0 20px;
  }

  .page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-watch-thomo-live__main-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 1.6em;
  }

  .page-resources-how-to-watch-thomo-live__sub-title {
    font-size: 1.4em;
  }

  .page-resources-how-to-watch-thomo-live__sub-heading {
    font-size: 1.1em;
  }
}