        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f9f7f0 0%, #e8f4e8 100%);
            color: #333;
            line-height: 1.6;
        }

        /* Навигация */
        header {
            background: linear-gradient(to right, #4a7c59, #8d9f87);
            color: white;
            padding: 1.5rem 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .logo i {
            color: #ffd700;
            font-size: 2.2rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        nav a:hover, nav a.active {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Общи стилове */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/img/splash_carrot.jpg') center/cover;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 700px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }

        .btn {
            display: inline-block;
            background: #4a7c59;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #3a6a48;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #4a7c59;
            display: inline-block;
            padding: 0 20px;
            background: linear-gradient(135deg, #f9f7f0 0%, #e8f4e8 100%);
            position: relative;
            z-index: 1;
        }

        .section-title::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, #4a7c59, #8d9f87);
            z-index: 0;
        }

        /* Стилове за страница "За нас" */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .about-img img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .mission-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s ease;
        }

        .mission-card:hover {
            transform: translateY(-10px);
        }

        .mission-card i {
            font-size: 3rem;
            color: #4a7c59;
            margin-bottom: 20px;
        }

        .team {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-member {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .member-img {
            height: 250px;
            overflow: hidden;
        }

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

        .team-member:hover .member-img img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 20px;
        }

        .member-info h3 {
            color: #4a7c59;
            margin-bottom: 5px;
        }

        .member-info p {
            color: #666;
            font-style: italic;
            margin-bottom: 15px;
        }

        /* Стилове за страница "Плодове" */
        .filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .filter-btn {
            background: white;
            border: 2px solid #4a7c59;
            color: #4a7c59;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active, .filter-btn:hover {
            background: #4a7c59;
            color: white;
        }

        .fruit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .fruit-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .fruit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .fruit-img {
            height: 220px;
            overflow: hidden;
        }

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

        .fruit-card:hover .fruit-img img {
            transform: scale(1.1);
        }

        .fruit-content {
            padding: 25px;
        }

        .fruit-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }

        .fruit-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .nutrition {
            background: #f8f8f8;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
        }

        .nutrition h4 {
            color: #4a7c59;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nutrition ul {
            list-style: none;
            padding-left: 10px;
        }

        .nutrition li {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .nutrition span {
            font-weight: 600;
            color: #4a7c59;
        }

        .season {
            margin-top: 15px;
            padding: 10px;
            background-color: #f1f8e9;
            border-radius: 8px;
            font-weight: 600;
            color: #4a7c59;
            text-align: center;
        }

        /* Стилове за страница "Рецепти" */
        .recipes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }

        .recipe-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .recipe-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .recipe-img {
            height: 250px;
            overflow: hidden;
        }

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

        .recipe-card:hover .recipe-img img {
            transform: scale(1.1);
        }

        .recipe-content {
            padding: 25px;
        }

        .recipe-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }

        .recipe-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #666;
        }

        .recipe-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .recipe-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .recipe-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .tag {
            background: #f1f8e9;
            color: #4a7c59;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* Футър */
        footer {
            background: linear-gradient(to right, #333, #555);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #8d9f87;
        }

        .footer-section p {
            margin-bottom: 20px;
            color: #ddd;
        }

        .socials a {
            display: inline-block;
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .socials a:hover {
            background: #8d9f87;
            transform: translateY(-5px);
        }

        .links ul {
            list-style: none;
        }

        .links li {
            margin-bottom: 12px;
        }

        .links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .links a:hover {
            color: #8d9f87;
            padding-left: 5px;
        }

        .contact span {
            display: block;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            color: #aaa;
            font-size: 0.9rem;
        }

	.orchard-image {
	    max-width: 100%;
	    height: auto;
	    border-radius: 10px;
	    margin-top: 20px;
	    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
.season-info {
    margin-top: 15px;
    font-size: 1.1rem;
    background: rgba(76, 175, 80, 0.8);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Стилове за контейнера на градината */
.orchard-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.orchard-container img {
	width: 1200px;
}
/* Стилове за снимката */
.orchard-image {
    width: 30%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.orchard-container:hover .orchard-image {
    transform: scale(1.03);
}

/* Стилове за текста върху снимката */
.orchard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.orchard-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.orchard-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

        /* Адаптивност */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .about-content {
                grid-template-columns: 1fr;
            }
        }

        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animated {
            animation: fadeIn 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        /* Странична навигация */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }
