             header{
                background-color: transparent;
                text-align: center;
                padding: 2px;
                border-radius: 50%;
            }   
            h1{
                font-family: Verdana, Geneva, Tahoma, sans-serif;
                color: black;
                text-align: center;
            }
            h2{
                text-align: center;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                color: black;
            }
            h3{
                color: black;
            }
            footer{
                text-align: center;
                color: black;
                background-color:  #2f6b3f;
            }
            
            body{
                background-image: url(images/forrest_tree_pic.jpg);
                background-size: cover;      /* Fill the screen */
                background-position: center; /* Centre image */
                background-repeat: no-repeat;
                min-height: 100vh;
                margin: 0;
                color: white;
            }

            p{
                color: white;
                font-size: larger;
                text-align: justify;
                font-family: Arial, Helvetica, sans-serif;
            }

            .section-link {
                display: block;
                text-decoration: none;
                color: inherit;
            }

            .section-link:hover .mushroom-section {
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                transform: scale(1.02);
                transition: 0.3s ease;
            }


            
            .content-box {
                background-color: #2f6b3f;      /* Deep natural green */
                color: #ffffff;                /* White text */
                max-width: 80%;
                overflow: hidden;              /* Keeps text readable */
                margin: 40px auto;             /* Center the box */
                padding: 25px 30px;            /* Inner spacing */
                border-radius: 15px;           /* Rounded corners */
                box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
                font-family: Arial, Helvetica, sans-serif;
                line-height: 1.7;
            }
            /* NAV BAR CONTAINER */
            .navbar {
                background-color: #2f6b3f; /* dark green */
                padding: 0;
            }

            /* REMOVE BULLETS & ALIGN HORIZONTALLY */
            .nav-links {
                list-style: none;
                display: flex;
                justify-content: center; /* center nav */
                margin: 0;
                padding: 0;
            }

            /* SPACE BETWEEN ITEMS */
            .nav-links li {
                margin: 0 15px;
            }

            /* LINKS STYLE */
            .nav-links a {
                display: flex;
                padding: 15px 20px;
                text-decoration: none;
                color: white;
                font-family: Arial, sans-serif;
                font-weight: bold;
                transition: background-color 0.3s ease;
            }

            /* HOVER EFFECT */
            .nav-links a:hover {
                background-color: #3e8e5a;
                border-radius: 5px;
            }

                
             

            .mushroom-section {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 20px;                 /* space between image and text */
                max-width: 700px;
                margin: 40px auto;         /* center section */
                background-color: #2f6b3f;
                padding: 20px;
                border-radius: 10px;

            }


            /* IMAGE */
            .mushroom-img {
                width: 250px;
                height: auto;
                border-radius: 10px;
            }

            /* TEXT */
            .mushroom-info h2 {
                margin-top: 0;
                color: #2f6b3f;
            }

            .mushroom-info p {
                line-height: 1.6;
                color: white;
                font-size: medium;
                font-weight: normal;
                
            }

            ul{
                color: white;
                font-size: medium;
                text-align: justify;
                font-family: Arial, Helvetica, sans-serif;
            }

            .warning-box {
                padding: 14px 16px;
                margin: 16px 0;
                border: 2px solid #b00020;
                border-radius: 8px;
                background: #fff5f5;
                color: #2b2b2b;
                font-family: Arial, sans-serif;
                text-align: center;
            }

            .warning-box strong {
                color: #b00020;
            }

            

            .images{
                display: inline-flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
                margin-top: 20px;
            }

        
            img {
                display: inline-flex;
                margin: 0 auto;
                max-width: 220px;  /* keeps logo sensible */
                width: 100%;
                height: auto;
                padding: 12px;     /* was 50px - too big on mobile */
            }
            a{
                color: #F4C430;
                text-decoration: none;
            
            }
            a:hover{
                text-decoration: underline;
            }
            /* NAV CONTAINER */
            .navbar {              /* or .nav-bar if you rename it */
                background: #2f6b3f;
                padding: 15px;
            }

            /* UL */
            .nav-links {
                list-style: none;
                margin: 0;
                padding: 0;

                display: flex;
                gap: 15px;
                justify-content: center;
                flex-wrap: wrap;     /* ✅ allows links to move onto a new line */
            }

                /* LINKS */
            .nav-links a {
                color: white;
                text-decoration: none;
                font-weight: bold;
                padding: 8px 10px;   /* ✅ makes them easier to tap on mobile */
                display: inline-block;
            }

            .nav-links a:hover {
                text-decoration: underline;
                color: pink;
            }

            @media (max-width: 600px) {
                .nav-links {
                    flex-direction: column;   /* stack */
                    align-items: center;
                    gap: 10px;
             }
            }
            
            .email-link {
                    color: lightgreen;     /* mushroom brown */
                    text-decoration: none;
            }

            .email-link:hover {
                    color: black;     /* forest green */
            }

            .images{
                display: grid;
                grid-template-columns: repeat(3, 1fr); /* 3 images per row */
                gap: 10px;
            }

            .gallery-item{
                text-align: center;
            }

            .gallery-img{
                width: 100%;
                height: 200px;
                object-fit: cover;
                border-radius: 20px;
            }

            .gallery-item p{
                margin-top: 8px;
                font-weight: bold;
                color: white;   /* change if background is light */
                font-size: 18px;
                text-align: center;
            }

            /* this is the mushroom icon for the bullets in <ul> */

            .mushroom-list {
                list-style: none;      /* removes default bullets */
                padding-left: 0;
            }

            .mushroom-list li {
                position: relative;
                padding-left: 30px;    /* space for mushroom */
                margin-bottom: 8px;
            }

            .mushroom-list li::before {
                content: "🍄";
                position: absolute;
                left: 0;
                top: 2px;              /* adjust for vertical alignment */
            }

            .mushroom-list ul {
                margin-left: 20px;  /* keeps indentation */
            }

            /* this is for the toxic mushrooms*/ 

            /* this is the mushroom icon for the bullets in <ul> */

            .mushroom-list-toxic {
                list-style: none;      /* removes default bullets */
                padding-left: 0;
            }

            .mushroom-list-toxic li {
                position: relative;
                padding-left: 30px;    /* space for mushroom */
                margin-bottom: 8px;
            }

            .mushroom-list-toxic li::before {
                content: "☠️";
                position: absolute;
                left: 0;
                top: 2px;              /* adjust for vertical alignment */
            }

            
            .video-container iframe {
                width: 100%;
                aspect-ratio: 16 / 9;
            }

            /* blog post section */

            * {
            box-sizing: border-box;
            }

            /* BASIC PAGE STYLE */
            * {
            box-sizing: border-box;
            }

            

            

            .header h1 {
            margin: 0 0 8px;
            color: white;
            }

            .header p {
            margin: 0;
            opacity: 0.95;
            text-align: center;
            }

            /* LAYOUT */
            .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 0 15px;

            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            }

            /* BLOG CARD */
            .card {
            background: #2f6b3f;
            border: none;
            border-radius: 12px;
            padding: 15px;
            color: white;
            }

            /* DATE */
            .date {
            margin-top: 6px;
            color: white;
            font-size: 0.95rem;
            text-align: center;
            }

            /* IMAGE */
            .blog-img {
            height: 220px;
            margin: 12px 0;
            overflow: hidden;
            border-radius: 10px;
            display: inline-flex;
            }

            .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            }

            /* READ MORE LINK */
            .readmore {
            display: inline-block;
            margin-top: 10px;
            text-decoration: none;
            font-weight: bold;
            color: white;
            }

            .readmore:hover {
            text-decoration: underline;
            }

            /* FOOTER */
            .footer {
            text-align: center;
            padding: 20px 10px;
            color: #4a5b50;
            }

            /* MOBILE TWEAK */
            @media (max-width: 600px) {
            .blog-img {
                height: 170px;
            }


            }
            .page-wrapper {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                gap: 30px;
                padding: 40px 20px;
            }

            .side-logo {
                width: 120px;
                height: auto;
            }

            .home-page{
                background-image: url(images/forrest_tree_pic.jpg);
            }
            
            /* Mobile layout */
            @media (max-width: 768px) {

            .mushroom-section {
                flex-direction: column;
                align-items: center;
                max-width: 95%;
                padding: 15px;
            }

            }
            
            /* quiz*/

            .quiz-container {
                max-width: 500px;
                margin: auto;
                text-align: center;
                background: #2f6b3f;
                color: white;
                padding: 20px;
                border-radius: 10px;
            }

            .answer-btn {
            display: block;
            width: 100%;
            margin: 10px 0;
            padding: 10px;
            border: none;
            cursor: pointer;
            background: white;
            color: black;
            border-radius: 5px;
            }

            .answer-btn:hover {
            background: #ddd;
            }

            #nextBtn {
            margin-top: 10px;
            padding: 10px;
            cursor: pointer;
            }

    
            
            

            



            

            
                
            

            

