/* style/cockfighting.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #0A2463;
  --accent-color: #FFD700;
  --border-color: #e0e0e0;
}

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

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3.2em;
  text-align: center;
  color: var(--text-light);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

.page-cockfighting p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting .secondary-button {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-cockfighting .secondary-button:hover {
  background: #071b4a;
  border-color: #e6c200;
}

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

.page-cockfighting .button:hover {
  background: #071b4a;
  color: #e6c200;
  transform: translateY(-1px);
}

/* Hero Section */
.page-cockfighting .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a4f 100%);
  color: var(--text-light);
  overflow: hidden;
}

.page-cockfighting .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-cockfighting .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-cockfighting .hero-content h1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 3.5em;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .hero-content p {
  font-size: 1.3em;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-cockfighting .hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 30px;
  border-radius: 12px;
}

.page-cockfighting .intro-section {
  background-color: var(--background-light);
  padding-top: 40px;
}

.page-cockfighting .intro-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting .features-section h2 {
  color: var(--secondary-color);
}

.page-cockfighting .features-section h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 15px;
}

.page-cockfighting .features-section p {
  color: #c0c0c0;
}

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

.page-cockfighting .feature-item {
  background-color: #1a3a70;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .feature-item img {
  width: 100%;
  max-width: 250px; /* Larger image size */
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-cockfighting .arenas-section {
  background-color: var(--background-light);
}

.page-cockfighting .arena-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-cockfighting .arena-item {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .arena-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .arena-item img {
  width: 100%;
  max-width: 300px; /* Larger image size */
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-cockfighting .arena-item h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-cockfighting .arena-item p {
  font-size: 1.05em;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.page-cockfighting .guide-section {
  background-color: #e8f0f3;
  padding-bottom: 40px;
}

.page-cockfighting .guide-section ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting .guide-section ol li {
  counter-increment: guide-counter;
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px 25px 70px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-cockfighting .guide-section ol li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-cockfighting .guide-section .cta-button {
  margin-top: 40px;
  display: block;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting .tips-section h2 {
  color: var(--secondary-color);
}

.page-cockfighting .tips-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-cockfighting .tips-section ul li {
  background-color: #1a3a70;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .tips-section ul li strong {
  color: var(--secondary-color);
}

.page-cockfighting .tips-section img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .promotions-section {
  background-color: var(--background-light);
}

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

.page-cockfighting .promo-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting .promo-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .promo-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-cockfighting .promo-item .button {
  margin-top: auto;
  width: 100%;
}

.page-cockfighting .promo-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #666;
}

.page-cockfighting .safety-support-section {
  background-color: #e8f0f3;
  padding: 80px 0;
}

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

.page-cockfighting .safety-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-cockfighting .safety-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .safety-item p {
  font-size: 1em;
  color: var(--text-dark);
}

.page-cockfighting .safety-support-section .cta-button {
  margin-top: 40px;
  display: block;
  text-align: center;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-cockfighting .safety-support-section .cta-button:hover {
  background: #071b4a;
  border-color: #e6c200;
}

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

.page-cockfighting .faq-list {
  margin-top: 40px;
}

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

.page-cockfighting .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, border-color 0.3s ease;
}

.page-cockfighting .faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
  flex-grow: 1;
}

.page-cockfighting .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-cockfighting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

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

.page-cockfighting .faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Conclusion Section */
.page-cockfighting .conclusion-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a4f 100%);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
  border-radius: 0;
  margin-bottom: 0;
}

.page-cockfighting .conclusion-section h2 {
  color: var(--secondary-color);
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-cockfighting .conclusion-section p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-cockfishing .conclusion-section p a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-cockfishing .conclusion-section p a:hover {
  color: #e6c200;
}

.page-cockfighting .conclusion-section .cta-button {
  margin-top: 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-content h1 {
    font-size: 3em;
  }
  .page-cockfighting h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 60px 15px 40px;
  }
  .page-cockfighting .hero-content h1 {
    font-size: 2.5em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
  .page-cockfighting .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting .cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting h3 {
    font-size: 1.5em;
  }
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .feature-item, .page-cockfighting .arena-item, .page-cockfighting .promo-item, .page-cockfighting .safety-item {
    padding: 25px;
  }
  .page-cockfighting .guide-section ol li {
    padding: 20px 25px 20px 60px;
    font-size: 1em;
  }
  .page-cockfighting .guide-section ol li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.8em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-cockfighting .conclusion-section h2 {
    font-size: 2.2em;
  }
  .page-cockfighting .conclusion-section p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-content h1 {
    font-size: 2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    width: 95%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting h3 {
    font-size: 1.3em;
  }
  .page-cockfighting .feature-item, .page-cockfighting .arena-item, .page-cockfighting .promo-item, .page-cockfighting .safety-item {
    padding: 20px;
  }
  .page-cockfighting .guide-section ol li {
    padding: 15px 20px 15px 50px;
  }
  .page-cockfighting .guide-section ol li::before {
    left: 10px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-cockfighting .conclusion-section h2 {
    font-size: 1.8em;
  }
  .page-cockfighting .conclusion-section p {
    font-size: 1em;
  }
}