#spellbook{
    position:relative;
}

.section-heading{
    margin-bottom:70px;
}

.section-tag{
    color:#c8a96b;
    text-transform:uppercase;
    letter-spacing:4px;
    margin-bottom:18px;
    font-size:0.9rem;
}

.section-heading h2{
    font-size:3.5rem;
    color:#f5f1e8;
}

.spellbook-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.spell-card{
    position:relative;
    padding:40px;
    border-radius:30px;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.01)
        );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    transition:
        transform 0.5s ease,
        border 0.5s ease,
        box-shadow 0.5s ease;
}

.spell-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../assets/textures/parchment-texture.jpg");
    background-size:cover;
    opacity:0.03;
    pointer-events:none;
}

.spell-card:hover{
    transform:translateY(-12px);

    border:1px solid rgba(200,169,107,0.25);

    box-shadow:
        0 0 40px rgba(180,138,60,0.08);
}

.spell-icon{
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:14px;
    border-radius:18px;
    margin-bottom:28px;

    background:rgba(180,138,60,0.08);

    border:1px solid rgba(200,169,107,0.15);
}

.spell-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter:brightness(0) invert(0.85);
}

.spell-card h3{
    font-size:1.8rem;
    margin-bottom:18px;
    color:#f5f1e8;
}

.spell-card p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:0.98rem;
}