:root {
      
      --mango: #fbc100;
      --ember: #f9ab03;
      --tangy: #ff7f00;
      --sunburst:  #fef6b7;
      --cocoa: #360300;
      --olive: #514b00;
      --white: #fff;
      --pink: #ffe7e7;
      --red: #be0000;
      
      
}

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Universal Styles */
        html {
            font-size: 16px;
        }

  
        body {
        font-size: 100%;
        font-family: "Mulish", sans-serif;
        line-height: 1.6;
        background-color: var(--ember);
        }
        
        img { 
        max-width: 100%; 
        height: auto; 
        border-radius: 12px;
      }

        

        .sr-only { 
            position: absolute;
            left: -9999px;
            top: -9999px;
            visibility: hidden;
        }

        .flexed {
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            justify-content: space-between;
        }

        /* Header */
        header {
            background: var(--white);
            height: 8rem;
            text-align: center;
            

        }

        header nav {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
        }

        h2 svg {
          width: 48px;
          vertical-align: bottom;
        }

        /* Navigation */
        nav {
          padding: 1rem 2rem;
          position: relative;
        }

        nav ol {
          line-height: normal;
          list-style: none;
        }

        nav h2 {
            padding-bottom: 2rem;
            font-family: "Karla", sans-serif;
           
        }

             
        .toggle-btn {
            background-color: unset;
            color: var(--ember);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .toggle-btn svg {
            width: 2rem;
            display: block;
            
        }

        .menu {
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translate(-50%, 0);
            z-index: 100;
            background-color: var(--white);
            width: 100%;
            margin-top: 4rem;
            flex-flow: column nowrap;
            justify-content: center;
            padding: 0.5rem 0;
        }

        .menu li {
            padding: 0;
            margin: 0;
        }

        .menu a {
            display: block;
            padding: 0.75rem 1rem;
            margin: 0;
        }


        .collapsed {
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .expanded {
            max-height: unset;
            opacity: 1;
            visibility: visible;
        }

      

        a {
            text-decoration: none;
        }

        .section a {
           
            margin-right: 0;
        }
     
        button:link, button:visited,
        a:link,  a:visited {
            color: var(--ember);
        }

        button:focus, button:hover, button:active,
        a:focus, a:hover, a:active {
            color: var(--tangy);
        }

        nav a {
            padding: 0.5rem 1rem;
            margin-right: 0.5rem;
        }

        .menu a {
            margin-right: 0;
        }

              

        /* Hero Section */

        .hero {
        background: var(--sunburst);
        text-align: center;
        padding: 2rem; 
        flex-direction: column;
        }

        .hero  h1{
          padding-top: 2rem;
          line-height: 2.5rem;
          color: var(--olive)
        }

         .hero  p{
          padding-top: 1rem;
          line-height: 1.7rem;

        }
       

        


        .button {
            background: var(--olive);
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        
        
        }

        .button:hover,
        .button:focus {
            background: var(--cocoa);
            color: var(--mango);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Enhanced CTA Buttons */
        .button.cta-primary {
            background: var(--olive);
            color: var(--white);
            font-size: 1.1rem;
            padding: 1.2rem 2.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .button.cta-primary:hover,
        .button.cta-primary:focus {
            background: var(--cocoa);
            color: var(--mango);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        }

        .button.button-secondary {
            background: var(--white);
            color: var(--olive);
            border: 2px solid var(--olive);
        }

        .button.button-secondary:hover,
        .button.button-secondary:focus {
            background: var(--olive);
            color: var(--white);
        }

        /* Main Content */
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
            align-items: center;
           
        }

       

        .section {
            background: var(--white);
            margin: 2rem 0;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section h2 {
           color: var(--ember);
           margin-bottom: 1rem;
           font-family: "Karla", sans-serif;
           
        }

        
        .section h3 {
        margin-top: 1rem;
        color:  var(--olive);
        font-size: 1rem;
        align-items: center;
       }

       .section p {
        color: var(--cocoa);
        margin-bottom: 2rem;
       }

      
       .mom-mango-3 p{
        padding-top: 1rem;
       }
        
     
       .section p a,
       .benefit p a {
        color: var(--olive);
        text-decoration: underline;
        font-weight: 600;
       }

       .section p a:hover,
       .benefit p a:hover {
        color: var(--tangy);
       }
       
        /* Benefits */
       
        .benefits {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 1rem;
          margin: 1rem 0;
        }

        .benefit {
          background: var(--sunburst);
          padding: 1rem;
          border-radius: 8px;
          border-left: 4px solid var(--ember);
          text-align: center;
        }

        /* Credible Sources Box */
        .sources-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-left: 5px solid var(--olive);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 3rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .sources-box h3 {
            color: var(--olive);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .sources-box ul {
            list-style: none;
            padding-left: 0;
        }

        .sources-box ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .sources-box ul li:last-child {
            border-bottom: none;
        }

        .sources-box a {
            color: var(--olive);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .sources-box a:hover {
            color: var(--tangy);
            text-decoration: underline;
        }

         /* Tips*/
         .tips-list {
          padding-left: 1.5rem;
          margin-bottom: 1rem;
         }

         .tips-list li{
          list-style: disc;
          margin-bottom: 0.5rem;
         }

         .mom-mango-3 > div:first-child p {
          padding-bottom: 1rem;
         }

         .mom-mango-3 > div:last-child {
          flex-shrink: 0;
         }
        
        

        /* Recipe */
        .mom-mango-4 {
          display: flex;
          flex-direction: column;
          gap: 2rem;
          align-items: center;
        }

              
        .sorbet-image {
          width: 100%;
          max-width: 400px;
          display: flex;
          justify-content: center;
        }

        .sorbet-image img {
          width: 100%;
          height: auto;
          border-radius: 12px;
        }

        
        .sorbet-text {
          width: 100%;
        }

        .sorbet-text h2 {
          color: var(--ember);
          margin-bottom: 1rem;
        }

        .sorbet-text > p {
          margin-bottom: 1rem;
        }

        .sorbet-text li {
          list-style: disc;
          margin-bottom: 0.5rem;
        }


        .sorbet-text ul {
          background: var(--sunburst);
          padding: 1.5rem 2rem;
          border-radius: 10px;
          margin: 1rem 0;
          list-style-position: inside;
        }

        .sorbet-text ul li strong {
          color: var(--olive);
        }

        .sorbet-text ul li em {
          color: var(--cocoa);
          font-style: italic;
        }

        /* Recipe CTA Section */
        .recipe-cta {
            background: var(--white);
            border: 2px solid var(--ember);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
            text-align: center;
        }

        .recipe-cta p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--cocoa);
        }

        .recipe-cta .button {
            margin: 0.5rem;
            margin-top: 0;
            display: inline-block;
            min-width: 180px;
        }

        .recipe-cta .button-secondary {
            background: var(--white);
            color: var(--olive);
            border: 2px solid var(--olive);
        }

        .recipe-cta .button-secondary:hover,
        .recipe-cta .button-secondary:focus {
            background: var(--olive);
            color: var(--white);
            border-color: var(--olive);
        }

        /* Safety section*/

      .safety {
        background: var(--sunburst);
        padding: 2rem;
        border-radius: 10px;
      }

      .safety h2 {
        font-family: "Karla", sans-serif;
      }
      
        .safety-flex {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .safety-flex > div:first-child {
            margin-bottom: 1rem;
            text-align: center;
        }

        .safety-flex > div:first-child img {
            max-width: 100%;
            width: 300px;
            margin: 0 auto;
            display: block;
        }

        .safety-content h2 {
            color: var(--olive);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .safety-content h3 {
            color: var(--olive);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
        }

        .safety-content p {
            padding-bottom: 1rem;
            line-height: 1.7;
        }

        .disclaimer {
            font-style: italic;
            font-size: 0.9rem;
            background: var(--white);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--tangy);
        }


            /*CTA */
          .conclusion {
            background: var(--ember);
            text-align: center;
            padding: 4rem 2rem;
          }

          .conclusion-inner {
            max-width: 800px;
            margin: 0 auto;
          }

          .conclusion h2 {
            font-family: "Nothing You Could Do", cursive;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.8;
            color: var(--red);
          }

          .conclusion span {
            color: var(--cocoa);
            font-weight: 800;
          }

    
            .conclusion a.inline-link {
            color:var(--red);
            font-weight: 700;
            text-decoration: none;
            }

            .conclusion a.inline-link:hover,
            .conclusion a.inline-link:focus {
            color:  var(--cocoa);
            text-decoration: underline;
            }

          

          /* CTA Buttons Container */
          .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
          }

          .cta-subtext {
            font-size: 1rem;
            color: var(--cocoa);
            margin-top: 1.5rem;
            font-style: italic;
          }

          .Link {
            background-color: var(--pink); 
            border-radius: 8px;
            padding: 2rem 1.5rem;
            margin: 2rem auto;
            text-align: center;
            max-width: 800px;
            line-height: 1.6;
          }
          .Link h2 {
            color: var(--red);
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            font-family: "Karla", sans-serif;
          }

          .Link p {
            color: var(--cocoa);
            margin: 0 auto;
            font-size: 1rem;
            max-width: 600px;
          }

          .Link a {
            color: var(--red);
            font-weight: 700;
            text-decoration: none;
          }

          .Link a:hover {
            text-decoration: underline;
          }


        /* Footer */
        footer {
            background: var(--olive);
            color: var(--white);
            text-align: center;
            padding: 2rem;
            
        }

        footer p {
            margin: 0.5rem 0;
            line-height: 1.6;
        }

        footer ul {
            list-style: none;
            padding: 2rem 0 1rem;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        footer ul li {
            display: inline-block;
            margin: 0 0.5rem;
        }

        footer ul a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer ul a:hover,
        footer ul a:focus {
            color: var(--mango);
            text-decoration: underline;
        }

        footer .about-me {
            max-width: 700px;
            margin: 0 auto 2rem;
            text-align: center;
           
           
        }

        footer .about-me h3 {
            color: var(--mango);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        footer .about-me p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #f5f5f5;
        }

        footer .iubenda-white {
            display: inline-block;
            margin: 0.5rem;
        }

       .banner-leaderboard {
        display: flex;
        justify-content: center; 
        margin: 2rem 0;           
        }

        .banner-leaderboard img {
        display: block;
        max-width: 100%;
        height: auto;
        }

        .banner-square {
        display: flex;
        justify-content: center;
              }

        .banner-square img {
        border-radius: 12px; 
        }

        .social-icons {
        list-style: none;
        display: flex;
        gap: 16px;
        padding: 0;
        }

        .social-icons li a svg {
        transition: 0.3s;
        }

        .social-icons li a:hover svg {
        opacity: 0.7;
        }

        .news-article {
        max-width: 1000px;
        margin: 3rem auto;
        padding: 3rem;
        background-color: var(--white);         
        border-radius: 1.5rem;
       
        }

        .news-article h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        color:var(--mango);                   
        }

        .news-article p {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
        color: var(--cocoa);                    
        }

        /* Quote styling */
        .news-quote {
        font-style: italic;
        padding-left: 1.2rem;
        margin: 1.8rem 0;
        border-left: 5px solid var(--mango);
        color: var(--cocoa);
        }

        /* Link styling */
        .news-source {
        margin-top: 2rem;
        font-weight: 600;
        }

        .news-source a {
        color: var(--mango);
        text-decoration: underline;
        }

        .news-source a:hover {
        text-decoration: none;
        }

        /*What's new */
        .whats-new {
        text-align: center;
        margin: 3rem auto;
        }

        .whats-new h2 {
        color:var(--white);            
        font-size: 1.75rem;
        margin-bottom: 2rem;
        }

        .image-row {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        }

        .image-row img {
        width: 280px;
        height: 200px;              
        object-fit: cover;          
        border: 6px solid var(--mango);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        background-color: var(--white);
        padding: 6px;
        }

        /* Picnic Spot */

        .picnic-spot {
        text-align: center;
        max-width: 600px;
        margin: 3rem auto;
        padding: 2rem;
        }

         .picnic-spot em{
            font-size: 0.8rem;
        }

        .picnic-spot a{
        color: var(--olive);
        text-decoration: underline;
        display: inline-block;
        }

        .picnic-spot a:hover {
        text-decoration: none;
        }

        .picnic-spot p {
        max-width: 600px;      
        margin: 0 auto 1rem;   
        line-height: 1.7;    
        
        }







            /* Media Queries */
        @media screen and (min-width: 760px) {


            .hamburger {
                display: none;
          }

            .collapsed,
            .expanded {
                max-height: unset;
                opacity: 1;
                visibility: visible;
            }

            .menu {
                position: static;
                width: unset;
                margin-top: 0;
                flex-flow: row wrap;
                justify-content: flex-end;
                padding: 0;
            }

            .menu li {
                padding: 0;
            }

            .menu a {
                display: inline;
                padding: 0.5rem 1rem;
            }

            nav ol {
                line-height: normal;
            }

            a:focus, a:hover, a:active {
                text-decoration: none;
            }

             .hero {
        padding: 2.5rem 2rem;
    }

    .hero h1 {
        font-family: "Karla", sans-serif;
        font-size: 2.5rem;
    }
    
            .hero .image {
                max-width: 650px;
                height: 300px;
            }

            
        .mom-mango {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 1rem;
        }

         .mom-mango-2 {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .mom-mango-2 .item1{
            order: 1;
        }
        
          .mom-mango-3 {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-top: 1rem;
        }

        .mom-mango-3 > div:first-child {
            flex: 1 1 55%;
        }

        .mom-mango-3 > div:last-child {
            flex: 1 1 45%;
            display: flex;
            justify-content: center;
        }

        .mom-mango-3 > div:last-child img {
            max-width: 350px;
        }
   
         .mom-mango-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .mom-mango-2 .item1 {
    flex: 1 1 50%;
    text-align: left;
  }

  .mom-mango-2 .item2 {
    flex: 1 1 50%;
    text-align: center;
  }

  .mom-mango-2 .item2 img {
    max-width: 450px; 
  }

 
  .safety-flex {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 2rem;
      margin-top: 1rem;
  }

  .safety-flex > div:first-child {
      flex: 0 0 300px;
      margin-bottom: 0;
  }

  .safety-flex > div:first-child img {
      width: 100%;
      max-width: 300px;
  }

  .safety-flex > div:last-child {
      flex: 1;
  }

  .safety-content p {
      padding-bottom: 1rem;
  }

  /* Recipe Section Desktop Layout */
  .mom-mango-4 {
      flex-direction: row;
      align-items: flex-start;
  }

  .sorbet-image {
      flex: 0 0 380px;
      max-width: 380px;
  }

  .sorbet-text {
      flex: 1;
  }

}


      @media screen and (min-width: 1024px) {
    .hero {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-wrap: nowrap;
    }

}