/**
 * RSite — Index Page  v1.0
 * Depends on: base.css (variables, glass-card, nav-grid)
 *
 * Hero header and navigation card styles.
 */

.hero-header {
    text-align: center;
    padding: 60px 0 40px;
}

.hero-rune {
    font-size: 4em;
    color: var(--gold-accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.4em;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.hero-subtitle {
    font-size: 1.1em;
    color: var(--gold-accent);
    opacity: 0.7;
    margin-bottom: 20px;
}

.hero-desc {
    max-width: 560px;
    margin: 0 auto 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Card redesign */
.nav-card {
    position: relative;
    padding: 28px 24px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color var(--duration-normal) ease, transform var(--duration-fast) ease;
}

.nav-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.card-glyph {
    font-size: 2em;
    color: var(--gold-accent);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 4px;
    transition: opacity var(--duration-fast) ease;
}

.nav-card:hover .card-glyph {
    opacity: 0.6;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.15em;
    color: var(--text-primary);
    margin: 0;
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.88em;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.card-hint {
    font-size: 0.72em;
    color: var(--gold-accent);
    opacity: 0.6;
}

.card-link {
    font-size: 0.78em;
    color: var(--gold-accent);
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.nav-card:hover .card-link {
    opacity: 0.8;
}
