/* style/fishing-games-fishing-tips.css */
.page-fishing-games-fishing-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #f5f5f5); /* Use shared body background or default light gray */
}

/* Header offset for main content */
.page-fishing-games-fishing-tips__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* General container for content */
.page-fishing-games-fishing-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-fishing-games-fishing-tips__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Text blocks */
.page-fishing-games-fishing-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-fishing-games-fishing-tips__hero-section {
  position: relative;
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px 0; /* Adjusted padding to accommodate image */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-fishing-games-fishing-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* Slightly transparent to let background color show */
}

.page-fishing-games-fishing-tips__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-fishing-games-fishing-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-fishing-games-fishing-tips__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-fishing-games-fishing-tips__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-fishing-games-fishing-tips__btn-primary,
.page-fishing-games-fishing-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-fishing-games-fishing-tips__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login text color */
  border: 2px solid #C30808;
}

.page-fishing-games-fishing-tips__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
  color: #fff;
}

.page-fishing-games-fishing-tips__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Primary brand color */
  border: 2px solid #017439;
}

.page-fishing-games-fishing-tips__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005f2e;
  border-color: #005f2e;
}

.page-fishing-games-fishing-tips__cta-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Section backgrounds and text colors */
.page-fishing-games-fishing-tips__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-fishing-games-fishing-tips__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-fishing-games-fishing-tips__dark-bg .page-fishing-games-fishing-tips__section-title {
  color: #ffffff;
}

.page-fishing-games-fishing-tips__intro-section,
.page-fishing-games-fishing-tips__tips-section,
.page-fishing-games-fishing-tips__advanced-section,
.page-fishing-games-fishing-tips__features-section,
.page-fishing-games-fishing-tips__video-section,
.page-fishing-games-fishing-tips__responsible-gaming-section,
.page-fishing-games-fishing-tips__faq-section {
  padding: 80px 0;
}

/* Card Grid */
.page-fishing-games-fishing-tips__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-fishing-tips__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-fishing-games-fishing-tips__card:hover {
  transform: translateY(-5px);
}

.page-fishing-games-fishing-tips__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover; /* Ensure images fill their space */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}