/* === RESET & GLOBAL === */
:root {
    --primary-color: #3a6924;
    --primary-color-tint: #3a69249a;
    --background-color: #ece1da;
    --text-color: #333;
    --header-bg: #ffffff;
    --footer-bg: #333333;
    --font-heading: 'Sacramento', cursive;
    --font-body: 'Montserrat', sans-serif;
    --font-special: 'Merriweather', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-tint);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER & NAVIGATION === */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header--scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color-tint);
    margin: 0;
    font-weight: 400;
}

.header__logo a {
    color: var(--primary-color-tint);
}

.nav {
    margin-left: auto;
}

.nav__menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: var(--text-color);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 18px; }

.nav__toggle.is-active span:nth-child(1) { 
    transform: translateY(9px) rotate(45deg); 
}

.nav__toggle.is-active span:nth-child(2) { 
    opacity: 0; 
}

.nav__toggle.is-active span:nth-child(3) { 
    transform: translateY(-9px) rotate(-45deg); 
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('assets/images/Picture_Web.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-family: var(--font-special);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* === SECTIONS === */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-special);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* === ABOUT SECTION === */
.about {
    background-color: var(--background-color);
    position: relative;
    z-index: 1;
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about__content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* === GALLERY SECTION === */
.gallery {
    background-color: var(--background-color);
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* === COOPERATION SECTION === */
.cooperation {
    background-color: #fff;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.cooperation__grid {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.cooperation__card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cooperation__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.cooperation__img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background-color: #fff;
}

.cooperation__card-content {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--background-color);
}

.cooperation__card-title {
    font-family: var(--font-special);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cooperation__card-content p {
    color: #666;
    font-size: 0.9rem;
}

/* === GALLERY SECTION === */

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* === SLIDER === */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.slide {
    min-width: calc(33.333% - 1rem);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slide__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 105, 36, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.slide:hover .slide__overlay {
    opacity: 1;
}

.slide__overlay h4 {
    font-family: var(--font-special);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide__overlay p {
    font-size: 1rem;
}

/* Slider Buttons */
.slider-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: #2d5019;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d4c4bb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.indicator:hover {
    background-color: var(--primary-color);
    opacity: 0.7;
}

.btn--show-more.hidden {
    display: none;
}

/* === CONTACT SECTION === */
.contact {
    padding: 4rem 2rem;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.contact__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact__info,
.contact__hours {
    flex: 1;
    min-width: 280px;
}

.contact h3 {
    font-family: var(--font-special);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.contact__hours span {
    font-weight: bold;
    display: inline-block;
    min-width: 180px;
    text-align: left;
}

/* === FOOTER === */
.footer {
    background-color: var(--footer-bg);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.footer__content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        gap: 2rem;
    }

    .nav__menu--visible {
        right: 0;
    }

    .nav__item {
        width: 100%;
    }

    .nav__link {
        font-size: 1.1rem;
    }

    /* Slider - 2 images on tablet */
    .slide {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .gallery,
    .contact,
    .cooperation {
        padding: 3rem 1rem;
    }
    
    .contact__container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact__hours span {
        min-width: auto;
        margin-right: 10px;
    }

    /* Slider - 1 image on mobile */
    .slide {
        min-width: 100%;
    }
    
    .slide__img {
        height: 350px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

    .header__logo h1 {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .slide__img {
        height: 300px;
    }
    
    .slider-wrapper {
        gap: 0.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}
