/* ============================= */
/* === OUR MUSHROOMS PAGE === */
/* ============================= */

.our-mushrooms-section {
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
    background-color: #2C1241; /* unchanged site background */
    font-family: 'Luckybones', sans-serif;
    color: #F7F7F7;
    text-align: center;
}

/* PAGE TITLE */
.our-mushrooms-section h2 {
    font-size: 2.5rem;
    color: #C468FF;
    margin-bottom: 20px;
}

.our-mushrooms-section > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #EADDF7;
}

/* ============================= */
/* CARD GRID */
/* ============================= */

.mushroom-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================= */
/* SHARED CARD STYLE */
/* ============================= */

.mushroom-card {
    background-color: #3A1E56;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mushroom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.55);
}

/* CARD TITLE */
.mushroom-card h3 {
    font-size: 1.9rem;
    color: #C468FF;
    margin-bottom: 20px;
}

/* ============================= */
/* LIST STYLING */
/* ============================= */

.mushroom-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mushroom-card li {
    font-size: 1.15rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(196, 104, 255, 0.2);
}

.mushroom-card li:last-child {
    border-bottom: none;
}

/* LINKS */
.mushroom-card a {
    text-decoration: none;
    color: #EADDF7;
    transition: color 0.2s ease;
}

.mushroom-card a:hover {
    color: #C468FF;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
    .mushroom-card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mushroom-card {
        padding: 30px;
    }

    .our-mushrooms-section h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 480px) {
    .our-mushrooms-section > p {
        font-size: 1.05rem;
    }

    .mushroom-card h3 {
        font-size: 1.6rem;
    }
}
