/* style/cockfighting.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #002244;
  --border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-cockfighting .hero-banner {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
}

.page-cockfighting .hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-cockfighting .hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-cockfighting .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cockfighting .cta-button:hover {
  background: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-cockfighting section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-cockfighting section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-cockfighting .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-cockfighting .section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark);
}

.page-cockfighting .text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting .text-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

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

.page-cockfighting .feature-item {
  background: var(--background-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting .feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-cockfighting .feature-description {
  font-size: 1em;
  color: #cccccc;
}

.page-cockfighting .secondary-button {
  background: var(--primary-color);
  color: var(--secondary-color);
  margin-top: 40px;
}

.page-cockfighting .secondary-button:hover {
  background: #001f3f;
  color: var(--text-light);
}

/* Guide Steps */
.page-cockfighting .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfishing .step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfishing .step-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 25px;
}

.page-cockfishing .step-title {
  font-size: 1.7em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfishing .step-description {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-cockfishing .small-button {
  padding: 10px 25px;
  font-size: 0.9em;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-cockfishing .small-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Card Grid (Types) */
.page-cockfishing .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfishing .card-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfishing .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-cockfishing .card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  padding: 20px 20px 10px 20px;
}

.page-cockfishing .card-link {
  color: inherit;
  text-decoration: none;
}

.page-cockfishing .card-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.page-cockfishing .card-description {
  font-size: 1em;
  color: var(--text-dark);
  padding: 0 20px 20px 20px;
}

/* Tip List */
.page-cockfishing .tip-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-cockfishing .tip-item {
  background: #ffffff;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-dark);
  border-left: 5px solid var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-cockfishing .tip-item:hover {
  background-color: #fcfcfc;
}

.page-cockfishing .tip-item strong {
  color: var(--primary-color);
}

.page-cockfishing .primary-button {
  background: var(--primary-color);
  color: var(--text-light);
  margin-top: 30px;
}

.page-cockfishing .primary-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Security Features */
.page-cockfishing .security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfishing .security-item {
  background: var(--background-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-cockfishing .security-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-cockfishing .security-description {
  font-size: 1em;
  color: #cccccc;
}

/* FAQ Section */
.page-cockfighting .section-faq {
  background-color: var(--background-light);
}

.page-cockfighting .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
  color: var(--primary-color);
  font-weight: bold;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  color: var(--text-dark);
  font-size: 1em;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* Conclusion Section */
.page-cockfighting .section-conclusion {
  background: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-cockfighting .section-conclusion .section-title {
  color: var(--secondary-color);
}

.page-cockfighting .section-conclusion .section-text {
  color: #cccccc;
  margin-bottom: 40px;
}

.page-cockfighting .final-cta {
  padding: 18px 45px;
  font-size: 1.2em;
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-cockfighting .final-cta:hover {
  background: #e6b800;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting .section-title {
    font-size: 2.2em;
  }
  .page-cockfighting .section-text {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-overlay {
    padding: 30px 20px;
  }
  .page-cockfighting .hero-title {
    font-size: 2em;
  }
  .page-cockfighting .hero-description {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting .section-text {
    margin-bottom: 30px;
  }
  .page-cockfighting .feature-item, .page-cockfishing .step-item, .page-cockfishing .card-item, .page-cockfishing .security-item {
    padding: 25px;
  }
  .faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-overlay {
    padding: 20px 15px;
  }
  .page-cockfighting .hero-title {
    font-size: 1.6em;
  }
  .page-cockfighting .hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting .section-title {
    font-size: 1.5em;
  }
  .page-cockfishing .feature-icon, .page-cockfishing .step-image, .page-cockfishing .security-icon {
    width: 80px;
    height: 80px;
  }
  .page-cockfishing .feature-title, .page-cockfishing .step-title, .page-cockfishing .card-title, .page-cockfishing .security-title {
    font-size: 1.5em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}