/* style/fishing-games.css */

:root {
  --primary-color: #FFD700; /* Golden */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000; /* Inherited from body */
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

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

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

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

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

.page-fishing-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

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

.page-fishing-games__main-title {
  font-size: 4.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-fishing-games__hero-description {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-fishing-games__cta-button--primary {
  background: var(--primary-color);
  color: var(--secondary-color); /* Golden background with dark blue text */
}

.page-fishing-games__cta-button--primary:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--primary-color); /* Dark blue background with golden text */
  border: 2px solid var(--primary-color);
}

.page-fishing-games__cta-button--secondary:hover {
  background: #000066;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-fishing-games__section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-fishing-games__section:nth-of-type(even) {
  background-color: #0a0a0a;
}

.page-fishing-games__section-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-fishing-games__section-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

/* About Fishing Games Section */
.page-fishing-games__about-fishing-games .page-fishing-games__image-text-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 50px;
}

.page-fishing-games__about-fishing-games .page-fishing-games__image-content {
  flex: 1;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
}