/* Resources Index Page Styles - Equinox Inspired */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
      sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
  }
  
  .hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000000);
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .back-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
  }
  
  .back-link svg {
    width: 16px;
    height: 16px;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .hero-btn.primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
  }
  
  .hero-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  }
  
  /* Featured Section */
  .featured-section {
    background: #000000;
    padding: 4rem 0 6rem;
    min-height: 100vh;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
  }
  
  .section-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .filter-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .filter-tab.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }
  
  /* Search Container */
  .search-container {
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .search-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
  }
  
  .search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  .search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .filter-select {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .filter-select option {
    background: #1a1a1a;
    color: #ffffff;
  }
  
  /* Resource Count */
  .resource-count {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 2rem 0 3rem;
  }
  
  .resource-count span {
    font-weight: 600;
    color: #ffffff;
  }
  
  /* Resource Grid */
  .resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  
  .resource-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  
  .resource-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 1;
  }
  
  .resource-badge.templates {
    background: rgba(59, 130, 246, 0.9);
    color: #ffffff;
  }
  
  .resource-badge.guides {
    background: rgba(168, 85, 247, 0.9);
    color: #ffffff;
  }
  
  .resource-badge.toolkits {
    background: rgba(34, 197, 94, 0.9);
    color: #ffffff;
  }
  
  .resource-badge.checklists {
    background: rgba(249, 115, 22, 0.9);
    color: #ffffff;
  }
  
  .resource-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
  }
  
  .resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .resource-card:hover .resource-image img {
    transform: scale(1.08);
  }
  
  .resource-content {
    padding: 1.75rem;
  }
  
  .resource-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
  }
  
  .resource-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  
  .resource-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .resource-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .meta-item svg {
    width: 14px;
    height: 14px;
  }
  
  .resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .resource-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }
  
  .resource-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }
  
  .resource-btn:hover svg {
    transform: translateX(4px);
  }
  
  /* No Results */
  .no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .no-results svg {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
  }
  
  .no-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
  }
  
  .no-results p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
  }
  
  .reset-btn {
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .reset-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }
  
  /* CTA Section */
  .cta-section {
    background: #000000;
    padding: 6rem 0;
  }
  
  .cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }
  
  .cta-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    width: fit-content;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  
  .cta-title .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
  }
  
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
  }
  
  .cta-btn:hover {
    background: #f0f0f0;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  }
  
  .cta-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .cta-image {
    position: relative;
    overflow: hidden;
  }
  
  .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }
  
  /* Footer */
  .footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }
  
  .footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
  }
  
  .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: #ffffff;
  }
  
  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .resource-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .resource-grid {
      grid-template-columns: 1fr;
    }
  
    .cta-card {
      grid-template-columns: 1fr;
    }
  
    .cta-image {
      min-height: 300px;
    }
  
    .cta-content {
      padding: 2.5rem;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .footer-links {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .search-filters {
      flex-direction: column;
    }
  
    .filter-select {
      min-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
  
    .hero-section {
      padding: 5rem 0 4rem;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .section-filters {
      gap: 0.5rem;
    }
  
    .filter-tab {
      padding: 0.625rem 1.25rem;
      font-size: 0.85rem;
    }
  
    .resource-card {
      margin-bottom: 1rem;
    }
  }
  