:root {
    --primary-color: #4a6741;
    --secondary-color: #8b9d83;
    --accent-color: #e9b44c;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
}

* {
    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-color);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-brand a {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 4px;
    min-width: 200px;
    padding: 0.5rem 0;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown-menu a.active {
    color: var(--primary-color);
    font-weight: bold;
    background-color: var(--light-bg);
}

/* Main Content */
.main-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Banner */
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo {
    max-width: 150px;
    height: auto;
}

.main-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 0 2rem;
}

/* Workshops Section */
.workshops-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.workshops-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.workshops-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.workshops-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.workshop-details {
    margin-top: 2rem;
}

.half-day, .full-day {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.half-day h3, .full-day h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.note {
    font-style: italic;
    color: var(--text-color);
    margin-top: 1rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.price-list {
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.price-name {
    flex-grow: 1;
}

.price-dots {
    flex-grow: 1;
    margin: 0 0.5rem;
    border-bottom: 2px dotted var(--text-color);
}

.price-value {
    font-weight: bold;
    color: var(--primary-color);
}

.price-notes {
    margin-top: 1.5rem;
    font-style: italic;
}

/* Activities Section */
.activities-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.activities-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.activities-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.activities-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.activities-note {
    font-style: italic;
    margin-top: 1rem;
}

/* Schedule Section */
.schedule-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

/* Booking Section */
.booking-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-methods {
    margin-top: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 0.5rem;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Dairy Products Page */
.dairy-content {
    margin-top: 2rem;
}

.dairy-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.dairy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.products-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    align-items: baseline;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-name {
    flex-shrink: 0;
    margin-right: 1rem;
}

.product-dots {
    flex-grow: 1;
    margin: 0 0.5rem;
    border-bottom: 2px dotted var(--text-color);
}

.product-price {
    flex-shrink: 0;
    font-weight: bold;
    color: var(--primary-color);
}

.opening-hours {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.professional-info {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-section {
    margin-bottom: 2rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-map {
    height: 400px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Gallery Page */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

/* Donkey Page */
.donkey-content {
    margin-top: 2rem;
}

.donkey-types {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.donkey-type {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

.donkey-type h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Breeding Page */
.breeding-content {
    margin-top: 2rem;
}

.breeding-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.donkey-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.donkey-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.donkey-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.donkey-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.donkey-group {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.donkey-group h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.donkey-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.donkey-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Hike Page Styles */
.hike-content {
    margin-top: 2rem;
}

.hike-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.route-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.route-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.route-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.route-item p {
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: auto;
}

.download-link:hover {
    color: var(--accent-color);
}

/* Groups Page Carousel */
.farm-carousel {
    width: 100%;
    height: 500px;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.farm-carousel .swiper-slide {
    width: 100%;
    height: 100%;
}

.farm-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farm-carousel .swiper-button-next,
.farm-carousel .swiper-button-prev {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
}

.farm-carousel .swiper-button-next:after,
.farm-carousel .swiper-button-prev:after {
    font-size: 1.5rem;
}

.farm-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    opacity: 0.5;
}

.farm-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--white);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem 0;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 2rem;
    }

    .logos-section {
        flex-direction: column;
    }

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

    .donkey-card {
        grid-template-columns: 1fr;
    }

    .product-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-dots {
        display: none;
    }

    .product-price {
        align-self: flex-end;
    }

    .dairy-images {
        grid-template-columns: 1fr;
    }

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

    .farm-carousel {
        height: 300px;
    }

    .hike-image {
        max-height: 300px;
    }

    .banner {
        margin-top: 6rem;
        height: 300px;
    }
}