/* =============================== */
/* === MUSHROOM INFO TEMPLATE === */
/* =============================== */

.mushroom-info-section {
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
    background-color: #2C1241;
    font-family: 'Luckybones', sans-serif;
    color: #F7F7F7;
}

/* PAGE TITLE */
.mushroom-info-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #C468FF;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* =============================== */
/* CONTENT WRAPPER */
/* =============================== */

.mushroom-info-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* =============================== */
/* IMAGE CONTAINER */
/* =============================== */

.mushroom-image {
    width: 100%;
    height: 420px;              /* LOCKED SIZE */
    border-radius: 30px;
    overflow: hidden;           /* 🔑 THIS STOPS BLEEDING */
    background-color: #3A1E56;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

/* IMAGE ITSELF */
.mushroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* fills container cleanly */
    display: block;
}

/* MULTI IMAGE SUPPORT (OPTIONAL LATER) */
.mushroom-image.multi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    height: auto;
}

.mushroom-image.multi img {
    height: 260px;
}

/* =============================== */
/* DESCRIPTION CARD */
/* =============================== */

.mushroom-description {
    background-color: #3A1E56;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

/* SECTION HEADINGS */
.mushroom-description h3 {
    font-size: 1.6rem;
    color: #C468FF;
    margin-top: 28px;
    margin-bottom: 12px;
}

.mushroom-description h3:first-child {
    margin-top: 0;
}

/* TEXT */
.mushroom-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #EADDF7;
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */

@media (max-width: 768px) {
    .mushroom-image {
        height: 320px;
    }

    .mushroom-description {
        padding: 30px;
    }

    .mushroom-info-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mushroom-info-section {
        padding: 45px 15px;
    }

    .mushroom-image {
        height: 240px;
    }

    .mushroom-description p {
        font-size: 1rem;
    }
}

/* =============================== */
/* === FDA DISCLAIMER STYLING === */
/* =============================== */

.fda-disclaimer {
    margin-top: 40px;
    padding: 20px 30px;
    background-color: #3A1E56;  /* matches mushroom description card */
    color: #D8B4FF;             /* lighter, readable text */
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 5px solid #C468FF; /* subtle accent */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Make it responsive */
@media (max-width: 768px) {
    .fda-disclaimer {
        padding: 18px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .fda-disclaimer {
        padding: 15px 15px;
        font-size: 0.8rem;
    }
}
