/*  css for I need Help section of resources page*/
/* Main section styling */
.help-section {
  background-color: #064057;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  font-family: 'Albert Sans', sans-serif;
}
body.help .header {
  background: url('../images/help-banner.png') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  height: auto; 
}
body.help header {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 100;
}
body.help nav svg {
  display: block;
  width: 100vw;
  height: auto;
  padding: 0;
  margin: 0;
}
/* Typography */
.help-title {
  font-size: 40px;
  color: #FFE500;
  font-weight: bold;
}

.help-subtitle {
  font-size: 32px;
  color: #FF6600;
  margin: 1rem 0 2rem;
}

.help-description {
  font-family: 'Adobe Garamond Pro', Georgia, serif;
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

/* Grid layout */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  border: 2px solid #FFE500;
  border-left: none;
  border-top: none;
}

/* Individual card styling */
.help-card {
  background-color: transparent;
  border-left: 2px solid #FFE500;
  border-top: 2px solid #FFE500;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFE500;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s, border-color 0.3s;
}

/* Icon inside each card */
.help-card img {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

/* Label styling */
.help-card span {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

/* Hover effects */
.help-card:hover {
  background-color: rgba(255, 229, 0, 0.08); /* soft yellow glow */
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border-color: #5ACAF4; /* your accent blue */
  cursor: pointer;
}

.help-card:hover img {
  transform: scale(1.05);
}

/* Responsive grid layout */
@media (min-width: 600px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#section-header-and-text {
  background-color: #064057;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

#section-header {
  font-family: 'Albert Sans', sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #FFE500;
  margin-bottom: 1rem;
}

#section-text {
  font-family: 'Adobe Garamond Pro', Georgia, serif;
  font-size: 24px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 4rem;
}



body {
    background-color: var(--secondary-background-color);
    color: var(--text-color);
    margin: 0;
    padding: 2rem;
}

body, html {
  height: 100%;
  padding: 0;
}

body.resources .header {
  background: url('../images/resources-banner.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: scroll; /* override 'fixed' */
  height: auto; /* or whatever height you want */
}

body.resources header {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  position: relative; /* was absolute/fixed on home, change to relative here */
  top: auto;
  left: auto;
  width: 100%;
  z-index: 100;
}

body.resources nav {
  display: block;
}

body.resources nav svg {
  display: block;
  width: 100vw;
  height: auto;
  padding: 0;
  margin: 0;
}

.category {
    margin-bottom: 2rem;
    
}

.category h2 {
    font-family: var(--primary-font-family);
    font-size: 24px;
    color: var(--hero-title-color);
    margin-bottom: 1rem;
}

.entry {
    font-family: var(--primary-font-family);
    font-size: 16pt;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.entry strong {
    display: block;
    margin-bottom: 0.25rem;
}

.entry p.description {
    font-family: var(--secondary-font-family);
    font-size: 16pt;
    color: var(--text-color);
    margin: 0.25rem 0 0.75rem 0;
}

p {
font-family: var(--secondary-font-family);
font-size: 16pt;
/* color: var(--hero-title-color); */
margin: 0.25rem 0 0.75rem 0;
}
#section-header {
  font-size: 24px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-family: var(--primary-font-family);
  text-align: center;
}
.resources-row {
  width: 80%;
  padding-left: calc(10%);
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline; /* or any decoration you prefer on hover */
}


