@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    /* Earthy, natural palette */
    --primary-color: #4C6F4F; /* Linden green */
    --primary-hover: #3b573d;
    --secondary-color: #5D4037; /* Wood brown */
    --accent-color: #D7CCC8; /* Light warm brown/cream */
    --bg-color: #FDFBF7; /* Off-white / warm background */
    --bg-alt: #F1F3EE; /* Subtle green-ish gray for sections */
    --text-main: #3E2723;
    --text-light: #5d5d5d;
    --white: #FFFFFF;
    
    --font-heading: 'Lora', serif; /* Classic, slightly rustic */
    --font-body: 'Open Sans', sans-serif; /* Readable */
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="%234C6F4F" fill-opacity="0.03" fill-rule="evenodd"><circle cx="3" cy="3" r="3"/><circle cx="13" cy="13" r="3"/></g></svg>'); /* Subtle texture */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

/* Typography & Utils */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
h2.section-title.text-center, h1.section-title.text-center {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 3rem auto;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: var(--font-body);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
}
.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Header & Nav */
header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo span {
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    gap: 25px;
}
.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background-image: linear-gradient(rgba(62, 39, 35, 0.75), rgba(62, 39, 35, 0.75)), url('zofka2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: none;
    color: var(--white);
    width: 100%;
}
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-text {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}
.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eaeaea;
    height: 100%;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.card-icon {
    height: 150px;
    background-color: var(--bg-alt);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    color: var(--primary-color);
    border-bottom: 1px solid #eaeaea;
}
.card-content {
    padding: 25px;
}
.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.card-text {
    color: var(--text-light);
}

/* Forms */
.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eaeaea;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fafafa;
    transition: border 0.2s;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: var(--white);
}
textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 3rem 0 1.5rem 0;
    border-top: 5px solid var(--primary-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 2rem;
}
.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer-text {
    color: var(--accent-color);
    font-size: 0.9rem;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: var(--accent-color);
}
.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .grid-2, .form-row, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Slider / Carousel */
.slider-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-bottom: 1px solid #eaeaea;
}
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-alt);
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide-img-placeholder {
    width: 100%;
    height: 500px;
    background-color: #d7ccc8;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(62, 39, 35, 0.9));
    color: var(--white);
    padding: 40px 20px 20px 20px;
    text-align: center;
}
.slide-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}
.slide-text {
    font-size: 1.1rem;
    color: #e0e0e0;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .slide-img-placeholder { height: 350px; }
    .slide-title { font-size: 1.5rem; }
}
