﻿:root {
    --primary-color: #a8c33b;
    --secondary-color: #f8fc6c;
    --bg-dark: #f6f8ea;
    --bg-light: #fffbe6;
    --bg-muted: #eef4d5;
    --card-bg: #ffffff;
    --text-light: #ffffff;
    --text-dark: #1b1d10;
    --text-primary: #1f1f1f;
    --accent-gradient: linear-gradient(135deg, #a8c33b 0%, #f8fc6c 100%);
    --shadow: 0 12px 24px rgba(168, 195, 59, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.header {
    background-color: var(--bg-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--primary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 195, 59, 0.03) 0%, rgba(248, 252, 108, 0.01) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.hero-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-shadow: none;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    border-radius: 12px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(168, 195, 59, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto;
}

.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-subtitle {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.about-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.reviews {
    background-color: var(--bg-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(168, 195, 59, 0.3);
}

.review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
}

.plant-selection {
    background-color: var(--bg-light);
}

.compositions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

.compositions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.composition-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.composition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(168, 195, 59, 0.3);
}

.composition-image {
    height: 250px;
    overflow: hidden;
    background-color: #808080;
}

.composition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.composition-title {
    font-size: 24px;
    color: var(--primary-color);
    padding: 20px 20px 10px;
}

.composition-text {
    padding: 0 20px 20px;
    line-height: 1.8;
}

.composition-benefits {
    padding: 0 20px 20px;
}

.composition-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.rockeries {
    background-color: var(--bg-muted);
}

.rockeries-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.rockeries-subtitle {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.rockeries-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.rockery-type {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.rockery-type-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.rockery-icon {
    width: 24px;
    height: 24px;
}

.rockery-type p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.rockeries-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rockery-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.rockery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #808080;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--primary-color);
    padding: 30px 15px 15px;
    font-weight: 600;
}

.faq {
    background-color: var(--bg-light);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--card-bg);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--bg-light);
}

.accordion-title {
    flex: 1;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-text {
    padding: 0 20px 20px;
}

.accordion-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.cta {
    background: var(--accent-gradient);
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.footer {
    background-color: var(--bg-light);
    padding: 60px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer {
    color: var(--text-primary);
}

.footer-links a {
    color: var(--text-primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(168, 195, 59, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-primary);
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-primary);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    border-top: 3px solid var(--primary-color);
    padding: 20px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-hero {
    background: var(--accent-gradient);
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    color: var(--text-dark);
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(168, 195, 59, 0.3);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
}

.success-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-content {
    max-width: 600px;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    margin: 0 auto 30px;
}

.success-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.flowers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

.flowers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.flower-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.flower-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(168, 195, 59, 0.3);
}

.flower-image {
    height: 300px;
    overflow: hidden;
    background-color: #808080;
}

.flower-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.flower-info {
    padding: 25px;
}

.flower-season {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-gradient);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.flower-name {
    font-size: 26px;
    color: black;
    margin-bottom: 10px;
}

.flower-latin {
    font-style: italic;
    color: black;
    margin-bottom: 15px;
}

.flower-description {
    line-height: 1.8;
    margin-bottom: 20px;
}

.flower-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flower-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.flower-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.alpine-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
}

.alpine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.alpine-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.alpine-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.alpine-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    background-color: #808080;
}

.alpine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-section {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.steps-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(168, 195, 59, 0.3);
}

.step:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-content p {
    line-height: 1.8;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-light);
        transition: var(--transition);
        z-index: 1001;
        padding: 80px 20px 20px;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .compositions-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 10px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .legal-content {
        padding: 25px;
    }

    .steps-section {
        padding: 25px;
    }
}

@media (max-width: 320px) {
    .hero-icon {
        font-size: 40px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .compositions-grid,
    .flowers-grid {
        grid-template-columns: 1fr;
    }
}