* {
    font-family: "Poppins";
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}
  
body {
    background-color:  #F3F4E7;
    margin-top: 80px;
}

body:not(.homepage) .navbar {
    background-color: #00473C;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar {
    display: flex;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    align-content: center;
    align-items: center;
    text-decoration: none;
    justify-content: space-between;
    font-size: 2em;
    background-color: transparent;
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 80px;
    top: 0;
    transition: top 0.3s, background-color 0.3s;
}

.left-nav {
    color: white;
    max-width: 100%;
    padding-top: 15px;
    margin-left: 30px;
    display: flex;
    flex-wrap: nowrap;
}

.right-nav {
    color: white;
    max-width: 100%;
    padding-top: 15px;
    text-decoration: none;
    margin-right: 40px;
    display: flex;
    gap: 50px;
    flex-wrap: nowrap;
}

.icon {
    display:none;
    visibility: hidden;
    color: #C3EF4C;
    position: absolute;
    max-width: 100%;
    top:35px;
    right:15px;
    text-decoration: none;
    margin-right: 40px;
    display: flex;
    flex-wrap: nowrap;
    transition: color 0.4s;
}

.icon:hover{
    color:#F3F4E7
}

a:visited {
    color: #C3EF4C;
}

.navText{
    padding: 0 10px;
}


.navBtn{
    color: #C3EF4C;
    transition: color 0.4s;
}
.navBtn:hover{
    color: #F3F4E7;
}

.navBtnAlt{
    color: #C3EF4C;
    transition: color 0.4s;
    display:inline-flex;
    flex-wrap: nowrap;
}
.navBtnAlt:hover{
    color: #F3F4E7;
}

.navLogo {

    height: 35px;
    transition: opacity 0.4s;
}



@media screen and (max-width: 1275px) {
    .right-nav {
        display:none;
    }
    .icon{
        display:flex;
        visibility: visible;
    }  
    .navText{
        display:none;
    }

    .right-nav.active {
        display: flex; 
        flex-direction: column;
        gap: 30px; 
        position: fixed;
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100vh; 
        background-color: #003129; 
        justify-content: flex-start;
        align-items:flex-end;
        padding: 100px 55px;
        box-sizing: border-box; 
        overflow-y: auto; 
        transition: ease-in;
    }
    .navBtn{width:fit-content;}
}

@keyframes slideDown {
    0% {
        transform: translate(-50%, -80%);
    }

    100% {
        transform: translate(-50%, -40%);
    }
}


.hero {
    display:flex;
    width:100%;
    height: 92vh;
    margin-top: 80px;
    align-items: center;
    color: #00473c;

}


.leftHero{
    width:50%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    line-height: 0.75;  
    height:100%;
    animation: slideInLeft 1s ease-out forwards;

}


@keyframes slideInLeft {
    from {
        transform: translateX(-800px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight{
    from {
        transform: translateX(100%);
    }
    to{
        transform: translateX(0px);
    }
}


.subHero {
    font-family: "swear-display";
    font-size: 4em;
    font-weight: 500;
}

.heroTitle{
    font-size:8em;
    font-family: "swear-display";
    font-weight: 800;
    font-style: italic;
    height: fit-content;

}

.rightHero {
    display: flex;
    background-color: #E1E6CF;
    width:50%; 
    height:100%;
    padding: 0 50px;

    justify-content: end;
    align-items: center;
    text-align: right;
    font-size: 2em;
}

.heroDesc{
    animation: slideInRight 1s ease-out forwards; 

}

.headers{
    font-family: "swear-display";
    font-size: 6em;
    padding: 50px 0;
    text-align: center;
    width: 100%;
}


.ourStory {
    display:flex;
    flex-direction: column;
    background-color: #00473c;
    color:#C3EF4C;
    padding-bottom:100px;
    align-items: center;
}

.storyDesc {
    font-size: 1.5em;
    width: 40%;
    text-align: center;
}

.storyImgs{
    display:flex;
    padding-bottom: 100px;
    border-radius: 1.25rem;

}



.chef {
    max-height:100%;
    width:240px;
    
    
}
.village{
    width:400px;
    height:50%;
}


.prepProcess{
    color: #C3EF4C;
    background-color: #013029;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}

.prepVideo {
    max-width:70%;
    border-radius: 1.25rem;
}
  
.farmToTable {
    background-color: #F3F4E7;
    color: #00473C;
    display:flex;
    flex-direction: column;
    align-items: center;
    height: 1050px;
}



.slideshow-wrapper {
    height: 100%; 
    width: 100%;
    padding: 50px 0;
}


  
  .slideshow-container {
    max-width: 1000px;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
  }
  
  .mySlides {
    position: relative; 
    display: inline-block; 
}


  .mySlides img {
    width: 90%; 
    height: 600px; 
    border-radius: 1.25rem;
    object-fit: cover;
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    top:55%;
    padding: 16px;
    color: #F3F4E7;
    font-weight: bold;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0px; /* Moves the "previous" arrow 20px from the left edge */
}

.next {
    right: 0px; /* Moves the "next" arrow 20px from the right edge */
}


  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  

  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px; 
    position: absolute; 
    top: 95px;
    left: -90px; 
    z-index: 10; 
}
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    position: relative;
    top: 40px;
    bottom: 130px;
  }
  
  .text{
    padding-top:50px;
    font-size:1.5em;
    text-align:center;
  }

  .active, .dot:hover {
    background-color: #717171;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  

.sustainability {
    background-color: #E1E6CF;
    color:#00473C;
    display:flex;
    flex-direction: column;
}

.progress-bar-section {
    width: 60%;
    background-color: #00473C;
    padding: 35px;
    border-radius: 15px;
    opacity: 1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    margin-bottom: 40px;
}

@keyframes fill-bar {
    from {
        width: 0;
    }
    to {
        width: var(--target-width);
    }
}

@keyframes fadeInLeftToCenter {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(5%);
    }
}

@keyframes fadeInRightToCenter {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(33%);
    }
}

@keyframes fadeInLeftToCenter2 {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(60.5%);
    }
}

.progress-bar-section:nth-child(2) {
    animation-name: fadeInLeftToCenter;
}

.progress-bar-section:nth-child(3) {
    animation-name: fadeInRightToCenter;
}

.progress-bar-section:nth-child(4) {
    animation-name: fadeInLeftToCenter2;
}

.progress-bar-container {
    text-align: center;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 1.25rem;
    height: 25px;
    
}

.progress {
    background-color: #C3EF4C;
    height: 100%;
    border-radius: 8px 0 0 8px;
    width: 0;
    animation: fill-bar 2s ease forwards;
}

.progress-bar-container:nth-child(1) .progress {
    --target-width: 85%;
    animation-delay: 0.2s;
}

.progress-bar-container:nth-child(2) .progress {
    --target-width: 90%;
    animation-delay: 0.4s;
}

.progress-bar-container:nth-child(3) .progress {
    --target-width: 75%;
    animation-delay: 0.6s;
}

.progress-bar-container p {
    font-family: "swear-display", serif;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.progress-description {
    color: #e0e0e0;
    margin-top: 10px;
    line-height: 1.5em;
}

.progress-bar-container p:first-of-type {
    font-size: 2.5em; 
}

.progress-bar-container p:last-of-type {
    font-size: 1.4em; 
    font-family: "Poppins"
}   






.footer{    
    display:flex;
    height:250px;
    background-color: #071b1a;
    color: #C3EF4C;
    padding-left: 50px;

    flex-direction:row;
}
.fullLogo {
    margin-top:60px;
    height:128px;
    width:128px;
}

.wordmark{
    padding: 100px 0 0 20px;
}

.footerPara{
    margin:20px 0 0 0;
}

.row{
    padding-left: 100px;
    padding-top: 30px;
}

.fa-brands{
    padding: 0 10px 0 10px;
}



.icons {
    line-height: 3em;
}