/* style/fishing-games-types.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --main-bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-fishing-games-types {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--main-bg); /* Body background is from shared.css, this is for consistency in main sections */
}

.page-fishing-games-types__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-fishing-games-types__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-fishing-games-types__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-fishing-games-types__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

.page-fishing-games-types__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.page-fishing-games-types__description {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-types__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-types__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.4);
}

.page-fishing-games-types__section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--main-bg);
}

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

.page-fishing-games-types__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.page-fishing-games-types__section-title--large {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: var(--gold-color);
}

.page-fishing-games-types__section-description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-types__features-grid,
.page-fishing-games-types__game-grid,
.page-fishing-games-types__steps-grid,
.page-fishing-games-types__tips-grid,
.page-fishing-games-types__promos-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-fishing-games-types__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.page-fishing-games-types__promos-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-fishing-games-types__feature-card,
.page-fishing-games-types__game-card,
.page-fishing-games-types__step-card,
.page-fishing-games-types__tip-card,
.page-fishing-games-types__promo-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-fishing-games-types__feature-card:hover,
.page-fishing-games-types__game-card:hover,
.page-fishing-games-types__step-card:hover,
.page-fishing-games-types__tip-card:hover,
.page-fishing-games-types__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 255, 0, 0.5);
}

.page-fishing-games-types__feature-icon,
.page-fishing-games-types__game-image,
.page-fishing-games-types__registration-image,
.page-fishing-games-types__strategy-image,
.page-fishing-games-types__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-types__feature-title,
.page-fishing-games-types__game-title,
.page-fishing-games-types__step-title,
.page-fishing-games-types__tip-title,
.page-fishing-games-types__promo-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-fishing-games-types__game-title {
  font-size: 1.6rem;
  color: var(--gold-color);
}

.page-fishing-games-types__feature-text,
.page-fishing-games-types__game-text,
.page-fishing-games-types__step-text,
.page-fishing-games-types__tip-text,
.page-fishing-games-types__promo-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-fishing-games-types__game-button,
.page-fishing-games-types__promo-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-fishing-games-types__game-button:hover,
.page-fishing-games-types__promo-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-fishing-games-types__registration-cta {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-fishing-games-types__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

.page-fishing-games-types__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-fishing-games-types__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-types__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--deep-green-color);
  list-style: none;
}

.page-fishing-games-types__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-fishing-games-types__faq-qtext {
  flex-grow: 1;
}

.page-fishing-games-types__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-fishing-games-types__faq-item[open] .page-fishing-games-types__faq-toggle {
  content: '−';
}

.page-fishing-games-types__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
}

.page-fishing-games-types__cta-final {
  background-color: var(--deep-green-color);
  padding: 100px 20px;
}

.page-fishing-games-types__cta-button--final {
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 20px 45px;
  font-size: 1.3rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
}

.page-fishing-games-types__cta-button--final:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fishing-games-types__hero-content {
    padding: 15px;
  }

  .page-fishing-games-types__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-fishing-games-types__description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .page-fishing-games-types__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  }

  .page-fishing-games-types__section-title--large {
    font-size: clamp(2rem, 4.8vw, 3rem);
  }

  .page-fishing-games-types__section-description {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  }

  .page-fishing-games-types__features-grid,
  .page-fishing-games-types__game-grid,
  .page-fishing-games-types__steps-grid,
  .page-fishing-games-types__tips-grid,
  .page-fishing-games-types__promos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .page-fishing-games-types__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-fishing-games-types__hero-content {
    padding: 15px;
  }

  .page-fishing-games-types__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games-types__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-fishing-games-types__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-fishing-games-types__section {
    padding: 50px 15px;
  }

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

  .page-fishing-games-types__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-fishing-games-types__section-title--large {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .page-fishing-games-types__section-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 30px;
  }

  .page-fishing-games-types__features-grid,
  .page-fishing-games-types__game-grid,
  .page-fishing-games-types__steps-grid,
  .page-fishing-games-types__tips-grid,
  .page-fishing-games-types__promos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-fishing-games-types__feature-card,
  .page-fishing-games-types__game-card,
  .page-fishing-games-types__step-card,
  .page-fishing-games-types__tip-card,
  .page-fishing-games-types__promo-card {
    padding: 20px;
  }

  .page-fishing-games-types__feature-icon,
  .page-fishing-games-types__game-image,
  .page-fishing-games-types__registration-image,
  .page-fishing-games-types__strategy-image,
  .page-fishing-games-types__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-types__game-button,
  .page-fishing-games-types__promo-button,
  .page-fishing-games-types__cta-button,
  .page-fishing-games-types__cta-button--large,
  .page-fishing-games-types__cta-button--final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-fishing-games-types__registration-cta {
    gap: 20px;
  }

  .page-fishing-games-types__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-fishing-games-types__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  .page-fishing-games-types__cta-final {
    padding: 60px 15px;
  }

  .page-fishing-games-types__cta-button--final {
    padding: 15px 30px;
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .page-fishing-games-types__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-fishing-games-types__description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }

  .page-fishing-games-types__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .page-fishing-games-types__section-title--large {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .page-fishing-games-types__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-fishing-games-types__feature-title,
  .page-fishing-games-types__game-title,
  .page-fishing-games-types__step-title,
  .page-fishing-games-types__tip-title,
  .page-fishing-games-types__promo-title {
    font-size: 1.2rem;
  }

  .page-fishing-games-types__feature-text,
  .page-fishing-games-types__game-text,
  .page-fishing-games-types__step-text,
  .page-fishing-games-types__tip-text,
  .page-fishing-games-types__promo-text {
    font-size: 0.9rem;
  }
}