html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.navbar {
    background-color: rgb(184, 247, 218);
    opacity: 0.9;
    position: fixed;
    top: 0;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.navbar div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar:hover {
    opacity: 1;
}

.navbar a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: rgb(92, 148, 123);
}

.navbar img {
    height: 50px;
    width: auto;
}

.navbar-news {
    background-color: rgb(184, 247, 218);
    padding: 0.5rem;
    border-radius: 5px;
    margin: 0 auto;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    color: #333;
}

.navbar-news a {
    margin: 5px;
    color: #333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 1rem;
    }

    .navbar div {
        justify-content: flex-start;
        width: 100%;
    }

    .navbar a {
        margin: 0.5rem 0;
    }

}

.navbar a:last-child {
    margin-right: 30px;

}

.text-container {
    display: flex;
    text-align: center;
}

.textbox {
    margin: 5px;
    background-color: rgb(184, 247, 218);
    border-radius: 20px;
    padding: 2px;
    color: #333;
    border: rgb(159, 239, 202) thick solid;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.textbox:hover {
    cursor: pointer;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.t2 {
    margin-top: 7%;
}

.t1 {
    margin-bottom: 7%;
}

.section {
    position: relative;
    height: 85vh;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    background-color: rgb(237, 255, 247);
}

#about-section {
    background-color: rgb(250, 255, 230);
}

#indepth-section {
    background-color: rgb(237, 255, 247);
}

#items-section {
    background-color: rgb(250, 255, 230);
    height: 76vh;
}

#reviews-section {
    background-color: rgb(184, 247, 218);
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.review-text p {
    display: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.review-text p.active {
    display: block;
}

.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #000000;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.scroll-down:first-child {
    bottom: 3rem;
}

.scroll-down p:hover {
    text-decoration: underline;
}

.scroll-down span {
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.product-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 1;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.product-text {
    width: 50%;
    text-align: left;
}

.fruit-imgs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

footer {
    text-align: center;
    font-size: 11px;
    padding: 1rem;
    background: #eee;
}

.items-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    background-color: rgb(251, 252, 207);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.more-button {
    width: 80%;
    height: 10%;
    margin-top: 20px;
    text-align: center;
    background-color: rgb(251, 252, 207);
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
}

.more-button:hover {
    color: #222;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.items-container:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.item-box {
    width: 30%;
    height: 100%;
    margin: 2px;
    margin-top: 10px;
    border: thick solid rgb(245, 247, 184);
    border-radius: 25px;
    text-align: center;
}