/* ===================================
   RESOURCES PAGE STYLES
   Matches links hub aesthetic
   =================================== */

.resources-page {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-teal) 50%, var(--deep-teal) 100%);
    min-height: 100vh;
}

.resources-container {
    max-width: 680px;
    margin: 0 auto;
}

/* Header */
.resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-cover {
    width: 120px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.resources-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.resources-subtitle {
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.6;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

/* Section */
.resources-section {
    margin-bottom: 2.5rem;
}

.resources-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

/* Resource Link Buttons — matches links hub style */
.resource-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    padding: 1.1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(26, 58, 74, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: var(--cream);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-link:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
}

.resource-icon {
    font-size: 1.1rem;
    color: var(--gold);
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.resource-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.resource-text strong {
    font-size: 1rem;
    color: var(--cream);
    font-weight: 600;
}

.resource-desc {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.65;
    font-style: italic;
}

/* Contact Section */
.resources-contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.resources-contact p {
    color: var(--cream);
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.resources-contact-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.resources-contact-link:hover {
    opacity: 0.7;
}

/* Coming soon state */
.resource-link.coming-soon {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .resources-page {
        padding: 100px 1.5rem 3rem;
    }

    .resources-title {
        font-size: 2rem;
    }

    .resource-link {
        padding: 1rem 1.25rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .resources-title {
        font-size: 1.7rem;
    }

    .resource-link {
        border-radius: 12px;
    }
}
