/* Wellness Resources Page Styles */

/* Import CormorantGaramond font */
@font-face {
  font-family: 'CormorantGaramond';
  src: url('assets/fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
}

/* Global heading styles */
h1, .logo {
  font-family: 'CormorantGaramond', serif;
  font-weight: 600;
}
h2 {
  font-family: 'CormorantGaramond', serif;
  font-weight: 500;
}
h3, h4, h5, h6 {
  font-family: 'CormorantGaramond', serif;
  font-weight: 500;
}

.resources-hero {
  background-color: #e7dfd4;
  padding: 6rem 2rem 4rem;
  text-align: center;
  margin-top: 0;
}

.resources-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #222;
  font-family: 'CormorantGaramond', serif;
  font-weight: 500;
}

.resources-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.resources-grid {
  background-color: #fff;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  width: 100%;
  max-width: none;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(160, 137, 104, 0.2);
}

.resource-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #222;
  font-family: 'CormorantGaramond', serif;
  font-weight: 500;
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
  font-family: 'Quicksand', sans-serif;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #c9b89b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: fit-content;
}

.download-btn:hover {
  background-color: #b8a688;
}

.download-btn:active {
  transform: translateY(1px);
}

.download-btn svg {
  transition: transform 0.2s ease;
}

.download-btn:hover svg {
  transform: translateY(2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .resources-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .resources-header h1 {
    font-size: 2.2rem;
  }
  
  .resources-header p {
    font-size: 1rem;
  }
  
  .resources-grid {
    padding: 3rem 1rem;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  
  .resource-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .resources-header h1 {
    font-size: 1.8rem;
  }
  
  .resource-card h3 {
    font-size: 1.2rem;
  }
  
  .download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}