:root {
    --bg-color: #023118;
    --text-color: #ffffff;
    --btn-bg: #023118;
    --btn-hover: #023118;
    --nav-color: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    /* Add a subtle gradient overlay to match lighting if needed */
    background: radial-gradient(circle at 60% 40%, #c4c5a9 0%, #b7b89d 100%);
}

section,
header,
footer,
main {
    width: 100%;
    max-width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2% 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--bg-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--btn-bg);
}

.nav-contact-btn {
    background-color: var(--btn-bg);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-contact-btn:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    color: var(--bg-color);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 9rem 5% 5rem;
    position: relative;
    min-height: calc(100vh - 120px);
    align-items: center;
    justify-content: space-between;
}

.content-left {
    flex: 0 0 45%;
    z-index: 10;
}

.content-right {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.main-title {
    font-family: 'Caveat', cursive;
    font-size: 8rem;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.05);
}

.subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.buy-now-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--btn-bg);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: max-content;
}

.buy-now-btn:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 144, 143, 0.4);
}

.btn-icon {
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outline-btn {
    background-color: transparent;
    border: 1px solid var(--btn-bg);
    color: #333333;
    padding: 0.3rem 1.8rem 0.3rem 0.3rem;
}

.outline-btn:hover {
    background-color: rgba(226, 144, 143, 0.1);
    color: #023118;
    box-shadow: 0 5px 15px rgba(226, 144, 143, 0.2);
}

.outline-btn .btn-icon {
    background-color: var(--btn-bg);
}

/* Images Container */
.images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-img {
    position: absolute;
    mix-blend-mode: multiply;
    /* Blends the solid background of the image with the body */
}

.strawberries {
    bottom: 2%;
    left: 2%;
    width: 250px;
    z-index: 2;
    /* Keep it behind text and button */
}

.apple-ginger {
    bottom: 12%;
    right: 35%;
    left: auto;
    width: 280px;
    z-index: 4;
}

.smoothie-jar {
    bottom: 5%;
    right: 15%;
    width: 320px;
    z-index: 7;
}

.smoothie-jar-back {
    bottom: 15%;
    right: 6%;
    width: 280px;
    z-index: 3;
    opacity: 0.6;
    filter: blur(4px) brightness(0.9);
}

.autumn-leaf {
    top: -5%;
    right: -2%;
    width: 350px;
    z-index: 8;
}

/* Decorative SVG Line Shape (Optional Outline behind smoothies) */
.bg-shape {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 2;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Bottom Splash Effect */
.bottom-splash {
    position: absolute;
    bottom: -5px;
    /* Pull down slightly to avoid gap */
    left: 0;
    width: 100%;
    z-index: 15;
    line-height: 0;
    /* Removes extra space below svg */
}

.bottom-splash svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .content-left {
        padding-left: 0;
    }

    .main-title {
        font-size: 6rem;
    }

    .smoothie-jar {
        width: 300px;
        right: 10%;
    }

    .smoothie-jar-back {
        width: 250px;
        right: 2%;
    }

    .strawberries {
        width: 220px;
        left: 5%;
    }

    .apple-ginger {
        width: 240px;
        right: 30%;
        left: auto;
    }
}

@media (max-width: 991px) {
    .main-title {
        font-size: 5rem;
    }

    .subtitle {
        max-width: 100%;
    }

    .hero {
        flex-direction: column;
    }

    .content-left {
        flex: none;
        width: 100%;
        text-align: center;
        padding-top: 2rem;
    }

    .subtitle {
        margin: 0 auto 2rem auto;
    }

    .buy-now-btn {
        margin: 0 auto;
    }

    .images-container {
        position: relative;
        height: 60vh;
        margin-top: 2rem;
    }

    .apple-ginger {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20%;
    }

    .strawberries {
        left: 10%;
        bottom: 10%;
    }

    .smoothie-jar {
        right: 10%;
        bottom: 10%;
    }

    .smoothie-jar-back {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-title {
        font-size: 4rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .autumn-leaf {
        width: 200px;
    }
}

/* Juices Section */
.juices-section {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('images/about-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333333;
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
}

.juices-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.juices-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.juices-right {
    flex: 1;
    padding-left: 5rem;
    position: relative;
    z-index: 5;
}

.juices-subtitle {
    font-family: 'Caveat', cursive;
    color: #023118;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: -5px;
    letter-spacing: 1px;
}

.juices-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.juices-title span {
    color: #e2908f;
}

.separator {
    margin-bottom: 2rem;
}

.juices-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.outline-btn {
    background-color: transparent;
    color: #333333;
    border: 1px solid #023118;
    box-shadow: none;
    padding-left: 0.4rem;
}

.outline-btn:hover {
    background-color: #fff5f5;
    transform: translateY(-2px);
    color: #023118 !important;
    box-shadow: 0 4px 15px rgba(226, 144, 143, 0.15);
}

.outline-btn .btn-icon {
    background-color: #023118;
}

.sketch-overlay {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 600px;
    opacity: 0.05;
    /* very faint */
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .juices-section {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .juices-right {
        padding-left: 0;
        margin-top: 3rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .juices-text {
        text-align: center;
    }

    .sketch-overlay {
        display: none;
    }
}

/* Beverage Section */
.beverage-section {
    background-color: #ffffff;
    padding: 4rem 5%;
    text-align: center;
}

.beverage-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beverage-subtitle {
    font-family: 'Caveat', cursive;
    color: #023118;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.beverage-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.center-separator {
    display: flex;
    justify-content: center;
}

.beverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.beverage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beverage-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.beverage-card:hover img {
    transform: translateY(-5px);
}

.beverage-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.3rem;
}

.beverage-card.highlight-text h4 {
    color: #023118;
}

.beverage-card p {
    font-size: 0.85rem;
    color: #aaaaaa;
}

.beverage-footer {
    display: flex;
    justify-content: center;
}



@media (max-width: 991px) {
    .beverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .beverage-grid {
        grid-template-columns: 1fr;
    }
}

/* Deals Section */
.deals-section {
    position: relative;
    background: url('images/newsletter-bg.webp') center/cover no-repeat;
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
}

.deals-top-splash,
.deals-bottom-splash {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    background-size: cover;
    z-index: 5;
}

.deals-top-splash {
    top: -5px;
}

.deals-bottom-splash {
    bottom: -5px;
}

.deals-circle {
    position: relative;
    background-color: rgba(2, 49, 24, 0.95);
    width: 550px;
    height: 550px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
    color: #ffffff;
    margin-left: 5%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.circle-sketch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.deals-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.deals-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.deals-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 80%;
    position: relative;
    z-index: 2;
}

.deals-prompt {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}

.deals-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    width: 80%;
    position: relative;
    z-index: 2;
}

.deals-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    flex: 1;
}

.deals-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.deals-form button {
    background-color: #ffffff;
    color: #023118;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.deals-form button:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .deals-section {
        justify-content: center;
    }

    .deals-circle {
        width: 450px;
        height: 450px;
        margin-left: 0;
    }

    .deals-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .deals-circle {
        width: 90vw;
        height: 90vw;
        padding: 2rem;
    }

    .deals-title {
        font-size: 2rem;
    }

    .deals-form {
        width: 100%;
    }
}

/* Recipe Section */
.recipe-section {
    background-color: #ffffff;
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Caveat', cursive;
    font-size: 28vw;
    color: rgba(245, 245, 245, 0.8);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.recipe-header {
    position: relative;
    z-index: 5;
    margin-bottom: 5rem;
}

.recipe-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 550px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.concentric-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.concentric-circles div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

.circle-1 {
    width: 350px;
    height: 350px;
}

.circle-2 {
    width: 500px;
    height: 500px;
}

.circle-3 {
    width: 650px;
    height: 650px;
}

.recipe-bottle {
    position: relative;
    z-index: 3;
    height: 100%;
}

.bottle-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.ingredient {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 5;
    width: 350px;
}

.item-left {
    text-align: right;
    left: 0;
}

.item-right {
    text-align: left;
    right: 0;
    flex-direction: row-reverse;
}

.item-1 {
    top: 25%;
}

.item-2 {
    bottom: 25%;
}

.item-3 {
    top: 25%;
}

.item-4 {
    bottom: 25%;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #023118;
    /* Orange color */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(241, 129, 26, 0.3);
    position: relative;
}

.ingredient-text h4 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.3rem;
}

.ingredient-text p {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.6;
}

/* Floating leaves */
.floating-leaf {
    position: absolute;
    color: #7ccc54;
    z-index: 4;
    opacity: 0.8;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.leaf-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-30deg);
    font-size: 5rem;
}

.leaf-2 {
    bottom: 10%;
    right: 15%;
    transform: rotate(45deg);
    font-size: 6rem;
}

@media (max-width: 991px) {
    .recipe-content {
        height: auto;
        flex-direction: column;
        gap: 2rem;
    }

    .concentric-circles {
        display: none;
    }

    .ingredient {
        position: static;
        width: 100%;
        max-width: 400px;
        text-align: left;
        flex-direction: row-reverse;
    }

    .item-right {
        flex-direction: row-reverse;
    }

    .item-left {
        text-align: left;
    }

    .recipe-bottle {
        height: 300px;
        margin: 2rem 0;
    }

    .leaf-1,
    .leaf-2 {
        display: none;
    }
}

/* Upcoming Section */
.upcoming-section {
    display: flex;
    background-color: #f7f3e8;
    /* Creamy beige */
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.upcoming-left {
    flex: 1;
    padding: 8rem 5%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.upcoming-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2c302e;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.upcoming-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.upcoming-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F7E373;
    /* Dark background to match image edges if needed */
}

.upcoming-right-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Creating a realistic watercolor edge using SVG filter */
.ragged-edge {
    position: absolute;
    top: -5%;
    left: -15px;
    width: 60px;
    height: 110%;
    background-color: #f7f3e8;
    filter: url(#ragged-filter);
    z-index: 5;
}

/* Floating Items using CSS art */
.floating-items {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 10;
}

.css-avocado {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 70px;
    background: #d6e594;
    border: 4px solid #3c5a14;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-25deg);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 0 15px 15px rgba(0, 0, 0, 0.15);
}

.css-avocado::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    background: #6a4224;
    border-radius: 50%;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.css-lime {
    position: absolute;
    bottom: 120px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #a3d95b;
    border: 3px solid #5a8a1c;
    border-radius: 50%;
    transform: rotate(20deg);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.css-leaf {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 40px;
    height: 40px;
    background: #3e7019;
    border-radius: 0 40px 0 40px;
    transform: rotate(-10deg);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .upcoming-section {
        flex-direction: column;
    }

    .upcoming-left {
        padding: 5rem 5%;
    }

    .upcoming-right {
        min-height: 400px;
    }

    .ragged-edge {
        top: -2px;
        left: 0;
        width: 100%;
        height: 60px;
        background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 50" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 L1000 50 L1000 0 Q900 20 800 10 T600 20 T400 0 T200 25 T0 0 Z" fill="%23f7f3e8"/></svg>') repeat-x left top;
    }
}

/* Story Section */
.story-section {
    background-color: #fbfbfb;
    padding: 6rem 5%;
}

.story-top-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.story-content-left {
    flex: 1;
    text-align: left;
}

.story-bottom-full {
    text-align: left;
}

.story-title {
    font-family: 'Caveat', cursive;
    color: #023118;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.story-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c302e;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-footer {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #b7b89d;
    margin-top: 2rem;
}

.story-image-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ffffff;
    padding: 4rem 5%;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.testimonial-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

.testimonial-header,
.testimonial-slider {
    position: relative;
    z-index: 5;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.slider-dots .dot {
    cursor: pointer;
    height: 8px;
    width: 24px;
    margin: 0 4px;
    background-color: rgba(2, 49, 24, 0.4);
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background-color: #023118;
    width: 32px;
}

.testimonial-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 2rem auto 2rem;
    border-radius: 50%;
    padding: 6px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #555555;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 1.5rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #999999;
}

.testimonial-author span {
    color: #023118;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    background-color: #fbfbfb;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.blog-pattern {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
}

.floating-sketches {
    font-size: 3rem;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 250px;
}

.floating-sketches i {
    transform: rotate(-15deg);
}

.blog-header {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-bottom: 4rem;
}

.blog-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #f2f2f2;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.blog-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 49, 24, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .img-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.blog-card:hover .overlay-icon {
    transform: translateY(0);
}

.blog-content {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.blog-tag {
    display: inline-block;
    background-color: rgba(183, 184, 157, 0.2);
    color: #023118;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.blog-card:hover .blog-title {
    color: #b7b89d;
}

.blog-meta {
    font-size: 0.85rem;
    color: #777777;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid #f2f2f2;
    padding-top: 1.5rem;
}

.read-more-link {
    color: #023118;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #b7b89d;
}

.read-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(4px);
}

.dot-separator {
    font-size: 1.2rem;
    line-height: 0;
    position: relative;
    top: -2px;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Nere Section */
.why-nere-section {
    padding: 4rem 5%;
    background-color: #fbfbfb;
    position: relative;
}

.why-nere-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-nere-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-nere-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f2f2f2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(183, 184, 157, 0.15);
    color: #023118;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.why-card:hover .why-icon {
    background-color: #023118;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.why-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.why-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-nere-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-nere-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Feed Section */
.gallery-feed {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.gallery-row {
    display: flex;
    width: 100%;
}

.gallery-item {
    flex: 1 1 20%;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .gallery-item {
        flex: 1 1 33.333%;
    }

    .gallery-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        flex: 1 1 50%;
    }
}

/* Footer Section */
.site-footer {
    background-color: #0a0a0a;
    /* background-image: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.3)), url('images/footer-bg.webp'); */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    color: #e0e0e0;
    position: relative;
    padding: 5rem 2% 2rem;
    overflow: hidden;
}

.footer-ragged-edge {
    position: absolute;
    top: -15px;
    left: -2%;
    width: 104%;
    height: 50px;
    z-index: 5;
    pointer-events: none;
}

.footer-ragged-shape {
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    filter: url(#footer-ragged);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #023118;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #999999;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #999999;
}

.footer-contact-item i {
    color: #999999;
    margin-top: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #023118;
    padding-left: 5px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links i {
    width: 16px;
}

.footer-subscribe .input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.footer-subscribe input {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-subscribe input:focus {
    border-color: #023118;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #cccccc;
    color: #333;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 2px;
}

.subscribe-btn {
    width: 100%;
    background-color: #023118;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #a5a68c;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #777777;
}

/* Floating aesthetic elements */
.footer-leaf-1 {
    position: absolute;
    top: 30%;
    left: 10%;
    color: #023118;
    opacity: 0.05;
    font-size: 5rem;
    transform: rotate(45deg);
}

.footer-lemon-1 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    color: #023118;
    opacity: 0.05;
    font-size: 6rem;
    transform: rotate(-20deg);
}

.footer-seedling-1 {
    position: absolute;
    top: 15%;
    right: 25%;
    color: #023118;
    opacity: 0.05;
    font-size: 3.5rem;
    transform: rotate(15deg);
}

.footer-apple-1 {
    position: absolute;
    bottom: 15%;
    left: 20%;
    color: #023118;
    opacity: 0.05;
    font-size: 4rem;
    transform: rotate(-15deg);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Story Section */
.story-section {
    background-color: #f7f7f7;
    padding: 4rem 5%;
    text-align: center;
    color: #333333;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-title {
    font-family: 'Caveat', cursive;
    font-size: 4.5rem;
    color: var(--bg-color);
    margin-bottom: 1rem;
}

.story-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #2c302e;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555555;
}

.story-footer {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--bg-color);
    margin-top: 4rem;
}

/* --- Mobile Responsiveness Enhancements --- */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 19px;
    position: relative;
    z-index: 101;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #023118;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 8px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 16px;
}

.mobile-menu-btn:hover span {
    background-color: #b7b89d;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background-color: #fbfbfb;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333333;
    background-color: #f9f9f9;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b7b89d;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.mobile-contact-link {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-contact-btn {
        display: none;
        /* Hide on mobile to save space */
    }

    .mobile-contact-link {
        display: block;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 300px;
        max-width: 100vw;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem 2rem;
        z-index: 100;
        align-items: flex-start;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .main-title {
        font-size: 3.8rem !important;
        line-height: 1.1;
    }

    .beverage-title,
    .story-title,
    .juices-title,
    .upcoming-title {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 768px) {

    .beverage-section,
    .testimonial-section,
    .blog-section,
    .why-nere-section,
    .story-section,
    .contact-section {
        padding: 3rem 5% !important;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .story-top-row {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }

    .hero .content-left,
    .hero .content-right,
    .story-content-left,
    .story-image-right {
        flex: 0 0 100%;
        padding-top: 0;
    }

    .story-image-right {
        justify-content: center;
    }

    .hero .hero-buttons {
        justify-content: center;
    }

    .main-title {
        font-size: 3rem !important;
    }

    .beverage-title,
    .story-title,
    .juices-title,
    .upcoming-title {
        font-size: 2.2rem !important;
    }

    .deals-title {
        font-size: 1.8rem !important;
    }

    .footer-section,
    .site-footer {
        padding: 4rem 5% 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-contact-item {
        word-break: break-all;
    }
}