/* style/fishing-games-types.css */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6; /* body background from shared.css */
  --border-light: #e0e0e0;
  --button-hover-dark: #1a335c;
  --button-hover-light: #e6c200;
}

.page-fishing-games-types {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--bg-light);
}

/* Ensure main content has proper top padding to avoid header overlap */
.page-content.page-fishing-games-types {
  padding-top: var(--header-offset, 120px);
}

.page-fishing-games-types__section {
  padding: 60px 0;
  text-align: center;
}

.page-fishing-games-types__section--dark {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-fishing-games-types__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-fishing-games-types__section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: inherit;
  font-weight: bold;
}

.page-fishing-games-types__section--dark .page-fishing-games-types__section-title {
  color: var(--secondary-color);
}

.page-fishing-games-types__sub-title {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.page-fishing-games-types__section--dark .page-fishing-games-types__sub-title {
  color: var(--secondary-color);
}

.page-fishing-games-types__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-types__section--dark .page-fishing-games-types__text-block {
  color: rgba(255, 255, 255, 0.85);
}

.page-fishing-games-types__link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-fishing-games-types__link:hover {
  color: var(--secondary-color);
}

.page-fishing-games-types__section--dark .page-fishing-games-types__link {
  color: var(--secondary-color);
}

.page-fishing-games-types__section--dark .page-fishing-games-types__link:hover {
  color: var(--text-light);
}

/* Hero Section */
.page-fishing-games-types__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}