/* Base styles */
:root {
    --color-primary: #1a5c3a;
    --color-primary-light: #2d8b57;
    --color-primary-dark: #14432b;
    --color-secondary: #8cd3c5;
    --color-accent: #5e2c0d;
    --color-accent-light: #8f4213;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-light: #f5f8f7;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Amatic SC', cursive;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    color: var(--color-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn--primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn--secondary {
    background-color: var(--color-accent);
    color: white;
}

.btn--secondary:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    border-radius: 0;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
    left: 0;
}

.nav__icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover .nav__icon {
    transform: translateY(-2px);
    color: var(--color-primary-light);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    position: relative;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.hero__wave-top,
.hero__wave-bottom {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
}

.hero__wave-top {
    top: 0;
}

.hero__wave-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero__info {
    flex: 1;
}

.hero__image {
    flex: 1;
    position: relative;
}

.hero__image img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow);
}

.hero__title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero__benefit-icon {
    flex-shrink: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.about__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about__image {
    flex: 1;
    position: relative;
}

.about__drop {
    position: absolute;
}

.about__drop--1 {
    bottom: -20px;
    right: -10px;
}

.about__drop--2 {
    top: -15px;
    left: 30px;
}

.about__info {
    flex: 1;
}

.about__title {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.about__text {
    margin-bottom: 1.5rem;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about__item-icon {
    flex-shrink: 0;
}

/* Ingredient Section */
.ingredient {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.ingredient__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ingredient__image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ingredient__image img {
    transition: var(--transition);
}

.ingredient__image:hover img {
    transform: scale(1.05);
}

.ingredient__info {
    flex: 1;
}

.ingredient__title {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.ingredient__text {
    margin-bottom: 2rem;
}

.ingredient__facts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ingredient__fact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ingredient__fact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ingredient__fact-icon {
    flex-shrink: 0;
}

.ingredient__fact-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.ingredient__fact-text {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.timeline__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.timeline__content::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--color-secondary);
    border-radius: 1.5px;
}

.timeline__item {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.timeline__time {
    width: 100px;
    text-align: right;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.timeline__info {
    flex: 1;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.timeline__item:hover .timeline__info {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 100px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transform: translateX(-8.5px);
    z-index: 2;
}

.timeline__title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.timeline__text {
    margin-bottom: 1rem;
}

.timeline__tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline__image {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.timeline__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.timeline__item:hover .timeline__image img {
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.gallery__filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery__filter-item {
    padding: 8px 15px;
    border-radius: 30px;
    background-color: white;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gallery__filter-item:hover,
.gallery__filter-item--active {
    background-color: var(--color-primary);
    color: white;
}

.gallery__content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__title {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Myths Section */
.myths {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.myths__content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.myths__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.myths__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.myths__icon {
    flex-shrink: 0;
}

.myths__info {
    flex: 1;
}

.myths__title {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.myths__text {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.contact__content {
    display: flex;
    gap: 50px;
}

.contact__info {
    flex: 1;
    position: relative;
}

.contact__text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact__icon {
    flex-shrink: 0;
}

.contact__watercolor {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    background-color: var(--color-secondary);
    opacity: 0.15;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
}

.contact__form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.1);
}

.form__group--checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form__checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form__checkbox-label {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
}

.footer__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer__logo {
    grid-column: 1;
    grid-row: 1;
}

.footer__links {
    grid-column: 2;
    grid-row: 1;
}

.footer__newsletter {
    grid-column: 1;
    grid-row: 2;
}

.footer__policy {
    grid-column: 2;
    grid-row: 2;
}

.footer__tagline {
    margin-top: 10px;
    margin-bottom: 0;
    opacity: 0.9;
}

.footer__title {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer__link:hover {
    color: white;
}

.footer__text {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer__form {
    display: flex;
    gap: 10px;
}

.footer__input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
}

.footer__input:focus {
    outline: none;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer__copyright {
    opacity: 0.8;
    margin-bottom: 0;
}

.footer__decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.footer__fruit {
    position: absolute;
}

.footer__fruit--1 {
    bottom: 50px;
    right: 10%;
}

.footer__fruit--2 {
    top: 30%;
    left: 5%;
}

.footer__fruit--3 {
    top: 20%;
    right: 15%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero__content,
    .about__content,
    .ingredient__content {
        flex-direction: column;
    }

    .hero__image {
        order: -1;
    }

    .nav__list {
        gap: 10px;
    }

    .nav__link {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .contact__content {
        flex-direction: column;
    }

    .myths__content {
        grid-template-columns: 1fr;
    }

    .timeline__content::before {
        left: 85px;
    }

    .timeline__item::before {
        left: 85px;
    }

    .timeline__time {
        width: 85px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .header__inner {
        flex-direction: column;
        gap: 15px;
    }

    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__content {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }

    .footer__logo,
    .footer__links,
    .footer__newsletter,
    .footer__policy {
        grid-column: 1;
    }

    .footer__logo {
        grid-row: 1;
    }

    .footer__links {
        grid-row: 2;
    }

    .footer__newsletter {
        grid-row: 3;
    }

    .footer__policy {
        grid-row: 4;
    }

    .timeline__item {
        flex-wrap: wrap;
    }

    .timeline__image {
        order: -1;
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }

    .timeline__content::before {
        display: none;
    }

    .timeline__item::before {
        display: none;
    }

    .timeline__time {
        width: auto;
        text-align: left;
    }

    .timeline__content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .gallery__content {
        grid-template-columns: 1fr;
    }

    .gallery__filter {
        gap: 8px;
    }

    .gallery__filter-item {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .footer__form {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .btn {
        width: 100%;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline__info {
        padding: 15px;
    }

    .timeline__title {
        font-size: 1.5rem;
    }

    .myths__item {
        padding: 15px;
        flex-direction: column;
    }
}