/* style/resources-slot-fishing-tips.css */

/* Base Styles for the page content */
.page-resources-slot-fishing-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8;
}

/* Hero Section */
.page-resources-slot-fishing-tips__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-slot-fishing-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-slot-fishing-tips__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-slot-fishing-tips__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-slot-fishing-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-slot-fishing-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-slot-fishing-tips__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-resources-slot-fishing-tips__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-slot-fishing-tips__dark-bg {
  background-color: #0A1931;
  color: #ffffff;
}

.page-resources-slot-fishing-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-slot-fishing-tips__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-slot-fishing-tips__section-title--alt {
  color: #FFD700;
}

.page-resources-slot-fishing-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-slot-fishing-tips__text-block--alt {
  color: #f0f0f0;
}

/* Grid for Cards */
.page-resources-slot-fishing-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card Styling */
.page-resources-slot-fishing-tips__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-resources-slot-fishing-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-slot-fishing-tips__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-resources-slot-fishing-tips__card-title {
  font-size: 1.5em;
  color: #0A1931;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-slot-fishing-tips__card-text {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
}

/* Buttons */
.page-resources-slot-fishing-tips__btn-primary,
.page-resources-slot-fishing-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-slot-fishing-tips__btn-primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-resources-slot-fishing-tips__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-slot-fishing-tips__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-slot-fishing-tips__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-resources-slot-fishing-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* List Styles */
.page-resources-slot-fishing-tips__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-resources-slot-fishing-tips__list-item {
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-slot-fishing-tips__list--alt .page-resources-slot-fishing-tips__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
}

.page-resources-slot-fishing-tips__list-item strong {
  color: #0A1931;
}

.page-resources-slot-fishing-tips__list--alt .page-resources-slot-fishing-tips__list-item strong {
  color: #FFD700;
}

/* Video Section */
.page-resources-slot-fishing-tips__video-section {
  padding: 60px 0;
  background-color: #0A1931;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-slot-fishing-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-slot-fishing-tips__video-link-wrapper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-slot-fishing-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-slot-fishing-tips__video-cta {
  margin-top: 30px;
}

/* Promo Cards */
.page-resources-slot-fishing-tips__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* FAQ Section */
.page-resources-slot-fishing-tips__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-resources-slot-fishing-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-slot-fishing-tips__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-slot-fishing-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A1931;
  cursor: pointer;
  background-color: #fefefe;
  transition: background-color 0.3s ease;
}

.page-resources-slot-fishing-tips__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-slot-fishing-tips__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0A1931;
}

.page-resources-slot-fishing-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-slot-fishing-tips__faq-item.active .page-resources-slot-fishing-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-slot-fishing-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-slot-fishing-tips__faq-item.active .page-resources-slot-fishing-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-slot-fishing-tips__faq-answer p {
  margin: 0 0 10px 0;
  font-size: 1em;
  color: #555555;
}

/* CTA Section at the bottom */
.page-resources-slot-fishing-tips__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A1931;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-slot-fishing-tips__main-title {
    font-size: 2.8em;
  }

  .page-resources-slot-fishing-tips__section-title {
    font-size: 2em;
  }

  .page-resources-slot-fishing-tips__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-slot-fishing-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-slot-fishing-tips__hero-section {
    height: 500px;
  }

  .page-resources-slot-fishing-tips__main-title {
    font-size: 2em;
  }

  .page-resources-slot-fishing-tips__hero-description {
    font-size: 1em;
  }

  .page-resources-slot-fishing-tips__hero-buttons,
  .page-resources-slot-fishing-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-slot-fishing-tips__btn-primary,
  .page-resources-slot-fishing-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-resources-slot-fishing-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-slot-fishing-tips__text-block {
    font-size: 1em;
  }

  .page-resources-slot-fishing-tips__card {
    padding: 20px 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-resources-slot-fishing-tips__card-image {
    height: 200px;
  }

  .page-resources-slot-fishing-tips__card-title {
    font-size: 1.3em;
  }

  .page-resources-slot-fishing-tips__list-item {
    padding: 12px 15px;
    font-size: 1em;
  }

  /* Mobile responsive image and video rules */
  .page-resources-slot-fishing-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-slot-fishing-tips__section,
  .page-resources-slot-fishing-tips__card,
  .page-resources-slot-fishing-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-slot-fishing-tips video,
  .page-resources-slot-fishing-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-slot-fishing-tips__video-section,
  .page-resources-slot-fishing-tips__video-container,
  .page-resources-slot-fishing-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-resources-slot-fishing-tips__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-slot-fishing-tips__faq-question {
    padding: 15px 20px;
  }
  .page-resources-slot-fishing-tips__faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-slot-fishing-tips__faq-answer {
    padding: 10px 20px;
  }
}