:root {
    --gold: #C8A96E;
    --gold-light: #E8D5A8;
    --green-dark: #2D4A22;
    --green: #4A7C3E;
    --green-light: #6B9E5C;
    --earth: #8B6F47;
    --earth-light: #B89C72;
    --cream: #FAF6EE;
    --dark: #1A1A1A;
    --text: #3A3A3A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--cream); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease; }
nav.scrolled { background: rgba(26,26,26,0.95); backdrop-filter: blur(20px); padding: 0.7rem 2rem; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: 1px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.lang-switch { background: rgba(200,169,110,0.2); padding: 0.4rem 0.8rem !important; border-radius: 6px; font-size: 0.8rem !important; }
.lang-switch::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; }
.nav-hamburger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s; }

/* HERO */
.hero { height: 100vh; min-height: 700px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('img/hero.png') center/cover no-repeat; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 2rem; }
.hero-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.5rem 1.5rem; border-radius: 30px; margin-bottom: 1.5rem; animation: fadeUp 1s ease-out 0.3s both; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; animation: fadeUp 1s ease-out 0.5s both; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); font-weight: 300; line-height: 1.7; max-width: 600px; margin: 0 auto 2rem; animation: fadeUp 1s ease-out 0.7s both; }
.hero-cta { display: inline-flex; gap: 1rem; animation: fadeUp 1s ease-out 0.9s both; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.scroll-indicator svg { width: 30px; height: 30px; stroke: var(--gold); stroke-width: 2; fill: none; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* BTN */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; border-radius: 4px; transition: all 0.3s ease; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,169,110,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* SECTIONS */
section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); font-weight: 300; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ABOUT */
.about { background: var(--white); }
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); position: relative; }
.about-image img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-image::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--gold); border-radius: 12px; transform: translate(12px, 12px); z-index: -1; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-dark); margin-bottom: 1.2rem; }
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 1rem; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #eee; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-dark); }
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

/* PRODUCTS */
.products { background: var(--green-dark); color: var(--white); }
.products .section-title { color: var(--white); }
.products .section-subtitle { color: rgba(255,255,255,0.65); }
.products-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(10px); }
.product-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.product-icon { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: linear-gradient(135deg, rgba(200,169,110,0.1), rgba(74,124,62,0.1)); }
.product-body { padding: 2rem; }
.product-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(200,169,110,0.15); padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 0.8rem; }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.8rem; }
.product-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.product-season { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: var(--gold-light); }

/* AGROTURYSTYKA */
.agro { background: linear-gradient(135deg, #F5ECD7 0%, #EDE4CC 100%); }
.agro-content { max-width: 1100px; margin: 0 auto; }
.agro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.agro-image { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.agro-image img { width: 100%; height: 500px; object-fit: cover; display: block; }
.agro-details { padding: 1rem 0; }
.agro-price-box { background: var(--green-dark); color: var(--white); border-radius: 16px; padding: 1.5rem 2rem; margin-bottom: 2rem; text-align: center; }
.agro-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); }
.agro-price span { font-size: 1.5rem; }
.agro-price-period { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }
.agro-details h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 1.2rem; }
.agro-features { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.agro-features li { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); padding: 1.2rem; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s; }
.agro-features li:hover { transform: translateX(4px); }
.agro-feat-icon { font-size: 1.8rem; flex-shrink: 0; }
.agro-features strong { font-size: 1rem; color: var(--green-dark); display: block; margin-bottom: 0.2rem; }
.agro-features p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* GALLERY */
.gallery { background: var(--dark); color: var(--white); }
.gallery .section-title { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.6); }
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; height: 280px; cursor: pointer; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.3s; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }

/* VALUES */
.values { background: var(--cream); }
.values-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.value-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--white); border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.value-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.8rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* CONTACT */
.contact { background: var(--white); }
.contact-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon { width: 48px; height: 48px; background: rgba(74,124,62,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item-text h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 0.3rem; }
.contact-item-text p { font-size: 1rem; color: var(--text); line-height: 1.5; }
.contact-item-text a { color: var(--green); text-decoration: none; font-weight: 500; }
.contact-item-text a:hover { color: var(--gold); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.9rem 1.2rem; border: 1px solid #ddd; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 1rem; transition: border-color 0.3s; background: var(--cream); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { height: 140px; resize: vertical; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 3rem 2rem; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.85rem; margin-top: 0.5rem; }
.footer-divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem auto; opacity: 0.5; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(26,26,26,0.98); justify-content: center; align-items: center; gap: 2rem; z-index: 100; }
    .nav-links.open a { font-size: 1.2rem; }
    .about-grid, .agro-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .products-grid, .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 200px; }
    .about-stats { justify-content: center; }
    .hero-cta { flex-direction: column; align-items: center; }
    .agro-image img { height: 300px; }
}
