/* style/resources.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --dark-text-color: #333333;
  --light-text-color: #FFFFFF;
  --background-light: #F8F8F8;
  --background-dark: #222222;
  --card-background: #FFFFFF;
  --border-color: #E0E0E0;
  --hover-light: #FFFACD; /* Light gold for hover */
  --hover-dark: #1C86EE; /* Slightly darker blue for hover */
}

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

.page-resources a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources a:hover {
  color: var(--hover-dark);
  text-decoration: underline;
}

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

/* Hero Section */
.page-resources .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--light-text-color);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

.page-resources .hero-content {
  max-width: 900px;
}

.page-resources .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--light-text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources .hero-description a {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources .hero-description a:hover {
  color: var(--hover-light);
}

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

.page-resources .cta-button:hover {
  background: var(--hover-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section common styles */
.page-resources section {
  padding: 60px 0;
}

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

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

.page-resources .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--dark-text-color);
}

/* Guide and News Grid */
.page-resources .guide-grid, .page-resources .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources .guide-card, .page-resources .news-card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-resources .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources .card-title {
  font-size: 1.4em;
  color: var(--dark-text-color);
  padding: 20px 20px 10px 20px;
  margin: 0;
}

.page-resources .card-title a {
  color: var(--dark-text-color);
  transition: color 0.3s ease;
}

.page-resources .card-title a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-resources .card-text {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-resources .read-more-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--light-text-color);
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-resources .read-more-button:hover {
  background: var(--hover-dark);
  text-decoration: none;
}

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

.page-resources .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--card-background);
  overflow: hidden;
}

.page-resources .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-background);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources .faq-question:hover {
  background: var(--hover-light);
}

.page-resources .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--dark-text-color);
}

.page-resources .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-resources .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #555;
  font-size: 1em;
}

.page-resources .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px 25px 25px;
}

.page-resources .faq-answer p {
  margin: 0;
}

/* Call to Action Section */
.page-resources .contact-cta-section {
  background: var(--background-dark);
  color: var(--light-text-color);
  text-align: center;
  padding: 80px 20px;
}

.page-resources .contact-cta-section .section-title {
  color: var(--primary-color);
}

.page-resources .contact-cta-section .section-description {
  color: var(--light-text-color);
  opacity: 0.9;
  margin-bottom: 40px;
}

.page-resources .contact-cta-section .cta-button {
  margin-right: 20px;
  background: var(--primary-color);
  color: var(--dark-text-color);
}

.page-resources .contact-cta-section .cta-button:hover {
  background: var(--hover-light);
}

.page-resources .secondary-cta-button {
  display: inline-block;
  background: none;
  color: var(--light-text-color);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-resources .secondary-cta-button:hover {
  background: var(--primary-color);
  color: var(--dark-text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources .hero-title {
    font-size: 2.8em;
  }
  .page-resources .hero-description {
    font-size: 1.1em;
  }
  .page-resources .section-title {
    font-size: 2em;
  }
  .page-resources .guide-grid, .page-resources .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources .hero-section {
    padding: 60px 15px;
  }
  .page-resources .hero-title {
    font-size: 2.2em;
  }
  .page-resources .hero-description {
    font-size: 1em;
  }
  .page-resources .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources section {
    padding: 40px 0;
  }
  .page-resources .section-title {
    font-size: 1.8em;
  }
  .page-resources .section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-resources .card-title {
    font-size: 1.2em;
    padding: 15px 15px 8px 15px;
  }
  .page-resources .card-text {
    font-size: 0.9em;
    padding: 0 15px 15px 15px;
  }
  .page-resources .faq-question {
    padding: 15px 20px;
  }
  .page-resources .faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources .faq-toggle {
    font-size: 1.5em;
  }
  .page-resources .faq-answer {
    padding: 0 20px;
  }
  .page-resources .faq-item.active .faq-answer {
    padding: 12px 20px 20px 20px;
  }
  .page-resources .contact-cta-section .cta-button, 
  .page-resources .contact-cta-section .secondary-cta-button {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources .hero-title {
    font-size: 1.8em;
  }
  .page-resources .section-title {
    font-size: 1.6em;
  }
  .page-resources .faq-question h3 {
    font-size: 1em;
  }
  .page-resources .faq-toggle {
    font-size: 1.2em;
  }
  .page-resources .faq-answer p {
    font-size: 0.9em;
  }
}