/* style/fishing-games.css */

:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #1A202C;
  --border-color: #e0e0e0;
}

.page-fishing-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

/* Hero Section */
.page-fishing-games__hero-section {
  padding: 120px 0 60px 0; /* Desktop padding-top for fixed header */
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-light) 0%, #e0e0e0 100%);
}

.page-fishing-games__main-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games__subtitle {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-fishing-games__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

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

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

.page-fishing-games__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

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

.page-fishing-games__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

/* General Section Styles */
.page-fishing-games__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-color);
}

.page-fishing-games__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

.page-fishing-games__dark-section .page-fishing-games__section-title,
.page-fishing-games__dark-section .page-fishing-games__section-description {
  color: var(--text-light);
}

.page-fishing-games__dark-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-fishing-games__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 80px 0;
}

/* Features Section */
.page-fishing-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-fishing-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-fishing-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fishing-games__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__feature-text {
  font-size: 16px;
  color: var(--text-dark);
}

/* How to Play Section */
.page-fishing-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-fishing-games__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
}

.page-fishing-games__step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-fishing-games__step-text {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-dark);
}

.page-fishing-games__step-button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: auto; /* Push button to bottom */
}

/* Game Showcase Section */
.page-fishing-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-fishing-games__game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: var(--text-dark);
}

.page-fishing-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-fishing-games__game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 10px 0;
  color: var(--primary-color);
}

.page-fishing-games__game-description {
  font-size: 16px;
  padding: 0 20px 20px 20px;
  color: var(--text-dark);
}

.page-fishing-games__game-button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.page-fishing-games__view-all-cta {
  text-align: center;
}

/* App Section */
.page-fishing-games__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-fishing-games__app-text {
  flex: 1;
}

.page-fishing-games__app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  font-size: 17px;
  color: var(--text-dark);
}

.page-fishing-games__app-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-fishing-games__app-benefits li::before {
  content: '✔';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-fishing-games__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-fishing-games__app-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.page-fishing-games__contact-info {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: var(--text-light);
}

.page-fishing-games__contact-info p {
  margin-bottom: 15px;
}

.page-fishing-games__contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-fishing-games__contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games__main-title {
    font-size: 40px;
  }

  .page-fishing-games__subtitle {
    font-size: 18px;
  }

  .page-fishing-games__section-title {
    font-size: 32px;
  }

  .page-fishing-games__section-description {
    font-size: 16px;
  }

  .page-fishing-games__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-fishing-games__app-text {
    order: 2;
  }

  .page-fishing-games__app-image-wrapper {
    order: 1;
    margin-bottom: 40px;
  }

  .page-fishing-games__app-benefits {
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .page-fishing-games__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fishing-games__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-fishing-games__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-fishing-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-fishing-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games__hero-image {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
  }

  .page-fishing-games__light-bg,
  .page-fishing-games__dark-section {
    padding: 50px 0;
  }

  .page-fishing-games__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-fishing-games__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-fishing-games__feature-grid,
  .page-fishing-games__steps-grid,
  .page-fishing-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games__feature-item,
  .page-fishing-games__step-item,
  .page-fishing-games__game-card {
    padding: 25px;
  }

  .page-fishing-games__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-fishing-games__feature-title,
  .page-fishing-games__step-title,
  .page-fishing-games__game-title {
    font-size: 20px;
  }

  .page-fishing-games__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .page-fishing-games__game-image {
    height: 180px;
  }

  .page-fishing-games__app-image {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
  }

  .page-fishing-games__app-benefits {
    font-size: 16px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-fishing-games__app-benefits li {
    padding-left: 20px;
  }

  .page-fishing-games__btn-primary,
  .page-fishing-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-fishing-games__view-all-cta {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-fishing-games__contact-info {
    font-size: 16px;
  }

  .page-fishing-games__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fishing-games img,
  .page-fishing-games video {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games__hero-image,
  .page-fishing-games__feature-icon,
  .page-fishing-games__game-image,
  .page-fishing-games__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}