 :root {
            --yellow: #ffd600;
            --red: #e53935;
            --blue: #1976d2;
            --light-yellow: #fffbe5;
            --border-radius: 8px;
            --page-background:var(--light-yellow)
        }

        * {
            box-sizing: border-box;
        }

       
         /*logo*/
         .logo {
    display: inline-block;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0;
}

.logo img {
    height: 65px;          /* Adjust size here */
    width: auto;
    display: block;
    clip-path: circle(50%);
}


        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #f5f5f5;
            color: #000;
        }

        .page-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1rem 2rem;
            background: var(--page-background);
            min-height: 100vh;
            box-shadow: 0 0 10px rgba(0,0,0,0.08);
        }

        /* HEADER */

        header {
            background: linear-gradient(90deg, var(--yellow), var(--red), var(--blue));
            padding: 0.75rem 1rem 1.25rem;
            color: #000;
            position: relative;
        }

        header .top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .logo {
            text-decoration: none;
            background: transparent;
            color: var(--yellow);
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .logo span {
            display: inline-block;
        }

        .Grow_What_We_Eat h1 {
            margin: 0;
            font-size: 1.4rem;
            line-height: 1.2;
            text-shadow: 0 1px 0 rgba(255,255,255,0.6);
        }

        .get-advise-mobile {
            margin-left: auto;
        }

        .get-advise-mobile a {
            text-decoration: none;
            background: #000;
            color: #fff;
            font-size: .9rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
        }

        .donation {
            margin-top: 0.75rem;
            background: rgba(255,255,255,0.9);
            padding: 0.7rem 0.9rem;
            border-left: 4px solid var(--red);
            max-width: 420px;
            border-radius: var(--border-radius);
        }

        .donation h2 {
            margin: 0 0 0.3rem;
            font-size: 1rem;
        }

        .donation h3 {
            margin: 0;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* NAVIGATION */
         .welcome-user-name-button{
            margin-top: 5px;
         }
        .welcome-user-home-page{
            background-color: #fff;
            color: var(--red);
            font-size: 1rem;
            font-style: italic;
            text-transform: capitalize;
           padding: 5px;
        }

        nav {
            margin-top: 1rem;
            background: rgba(0,0,0,0.1);
            border-radius: var(--border-radius);
            padding: 0.3rem 0.5rem;
        }

        .mobile_menu {
            display: none;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: #000;
            font-weight: 600;
            padding: 0.4rem 0.6rem;
            border-radius: var(--border-radius);
            background: rgba(255,255,255,0.85);
            cursor: pointer;
        }

        .mobile_menu span.icon {
            font-size: 1.3rem;
            margin-left: 0.5rem;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem;
        }

        nav > ul > li {
            position: relative;
        }

        nav a {
            display: block;
            padding: 0.45rem 0.8rem;
            text-decoration: none;
            color: #000;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--border-radius);
        }

        nav > ul > li > a {
            background: rgba(255,255,255,0.85);
        }

        nav a:hover {
            background: #000;
            color: var(--yellow);
        }

        /* dropdown */
        nav ul ul {
            position: absolute;
            left: 0;
            top: 100%;
            background: var(--yellow);
            border-radius: var(--border-radius);
            min-width: 220px;
            padding: 0.3rem 0;
            display: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            z-index: 20;
            flex-direction: column;
        }

        nav ul ul li a {
            background: transparent;
            border-radius: 0;
            font-weight: 500;
        }

        nav li:hover > ul {
            display: flex;
        }

        /* SCROLLING HEADLINE */

        .scrolling-text-headline {
            margin-top: 0.75rem;
        }

        .scrolling-text-container {
            overflow: hidden;
            background: var(--blue);
            color: #fff;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0,0,0,0.1);
        }

        .scrolling-text {
            display: inline-block;
            padding: 0.5rem 1rem;
            white-space: nowrap;
            animation: scroll-left 14s linear infinite;
            font-weight: 600;
        }

        @keyframes scroll-left {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* BANNER */

        .banner-container {
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            border: 3px solid var(--red);
            background: #000;
            height: auto;
        }

        .banner-item {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .banner-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .banner-item.active {
            opacity: 1;
            position: relative;
        }

        /* MAIN SECTIONS */

        .main,
        .front-video-players {
            margin-top: 1.5rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .main aside,
        .front-video-players aside {
            min-width: 0;
        }

        .content {
            background: var(--light-yellow);
            border-radius: var(--border-radius);
            padding: 1rem;
            border: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 2px 4px rgba(0,0,0,0.06);
        }

        .main .content {
            border-top: 4px solid var(--red);
        }

        .front-video-players .content {
            border-top: 4px solid var(--blue);
        }

        .main .content img {
            
            width: 100%;
            height: auto;
            max-width: 160px;
            display: block;
            margin-bottom: 0.6rem;
            border-radius: var(--border-radius);
        }

        .content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


        .content h3 {
            margin-top: 0;
            margin-bottom: 0.4rem;
            font-size: 1.1rem;
            text-align: center;
        }

        .content h3 a {
            text-decoration: none;
            color: #000;
        }

        .content h3 a:hover {
            color: var(--red);
        }

        .content p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .content p a {
            font-weight: 600;
            color: var(--blue);
            text-decoration: none;
        }

        .content p a:hover {
            text-decoration: underline;
            color: var(--red);
        }

        /* Responsive video iframes */

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 */
            border-radius: var(--border-radius);
            overflow: hidden;
            background: #000;
            margin-top: 0.6rem;
        }

        .video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* FOOTER */

        footer {
            background-color: #1976d2;
            color: #fff;
            margin-top: 2rem;
            padding: 1rem 0.5rem;
            border-top: 2px solid rgba(0,0,0,0.1);
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }

        footer .content a {

            margin-right: 0.8rem;
            text-decoration: none;
            color: var(--blue);
        }

        footer .content a:hover {
            color: var(--red);
            text-decoration: underline;
        }

        /* RESPONSIVE BREAKPOINTS */

        @media (max-width: 900px) {
            .main,
            .front-video-players {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            header .top-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .get-advise-mobile {
                margin-left: 0;
            }

            .donation {
                max-width: 100%;
            }

            nav {
                padding: 0.3rem 0.4rem;
            }

            .mobile_menu {
                display: flex;
            }

            nav ul {
                display: none;
                flex-direction: column;
                gap: 0;
                margin-top: 0.4rem;
            }

            nav.open ul {
                display: flex;
            }

            nav > ul > li {
                width: 100%;
            }

            nav > ul > li > a {
                width: 100%;
                border-radius: 0;
            }

            nav ul ul {
                position: static;
                box-shadow: none;
                background: rgba(255,255,255,0.7);
                margin-left: 1rem;
                margin-bottom: 0.2rem;
                display: block;
            }

            nav ul ul li a {
                font-size: 0.85rem;
            }

            .main,
            .front-video-players {
                grid-template-columns: 1fr;
            }

            .scrolling-text {
                animation-duration: 20s;
            }
        }

        @media (max-width: 480px) {

             .logo img {
             height: 50px;
           }

            .Grow_What_We_Eat h1 {
                font-size: 1.1rem;
            }

            .content {
                padding: 0.8rem;
            }

            .banner-container {
                border-width: 2px;
            }
        }
   