/* --- css/resources.css --- */

/* Shorter Parallax Header for sub-pages */
/* Shorter Parallax Header for sub-pages */
.page-header {
    position: relative; /* FIX: Added so the wave anchors to the bottom correctly */
    height: 50vh !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FCFAF5;
    text-align: center;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Section Introductions */
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5A5552;
    margin-bottom: 50px;
    margin-top: -20px;
}

/* Universal Resource Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Universal Resource Card */
.resource-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid #EAE1D3;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(140, 74, 50, 0.08);
    border-color: #8C4A32;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: #3A3532;
    margin-bottom: 15px;
    line-height: 1.3;
}

.resource-card p {
    font-size: 1.05rem;
    color: #5A5552;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Specific Card Styles */

/* Tech Cards (IS Codes) */
.tech-card {
    border-top: 4px solid #4A6B4A;
}

.tech-card .tag {
    display: inline-block;
    background-color: #F4EFE6;
    color: #4A6B4A;
    font-weight: bold;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: flex-start;
}

/* Book Cards */
.book-card {
    border-left: 4px solid #8C4A32;
}

.book-card .author {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #8C4A32;
    margin-bottom: 15px;
    margin-top: -10px;
}

/* Journal Cards */
.journal-card {
    background-color: #F4EFE6;
    border-top: 1px solid #EAE1D3;
}

/* Film Cards */
.film-card {
    background-color: #45403D;
    border: 1px solid #5A5552;
    color: #FCFAF5;
}

.film-card h3 {
    color: #FCFAF5;
}

.film-card p {
    color: #EAE1D3;
}

.film-card:hover {
    background-color: #4A6B4A;
    border-color: #4A6B4A;
}

.film-icon {
    font-size: 2rem;
    color: #8C4A32;
    margin-bottom: 15px;
}

.film-card:hover .film-icon {
    color: #FCFAF5;
}

/* --- Mobile Fixes --- */
@media (max-width: 900px) {
    .page-header h1 { font-size: 2.5rem; line-height: 1.2; }
    .page-header p { font-size: 1rem; }
    
    .section-intro { font-size: 1.05rem; margin-bottom: 30px; }
    
    .resource-grid { gap: 20px; }
    .resource-card { padding: 25px 20px; }
    .resource-card h3 { font-size: 1.3rem; }
    .resource-card p { font-size: 0.95rem; }
}