
:root {
    --primary: #15803d;         
    --primary-dark: #166534;    
    --primary-light: #dcfce7;   
    --secondary: #2d3a3a;      
    --accent-earth: #c2410c;    
    
    --bg-main: #fcfaf6;        
    --bg-section-alt: #f3efe6; 
    --bg-section-sage: #eef3ee; 
    --bg-card: #ffffff;         
    
    --text-main: #1e293b;       
    --text-muted: #475569;      
    --border-color: #e2dcd5;    
    
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px -2px rgba(45, 58, 58, 0.06);
    --shadow-lg: 0 12px 30px -4px rgba(21, 101, 52, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.shadow {
    box-shadow: var(--shadow-lg);
}

/* Typography */
h1, h2, h3, h4, h5 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h1 { font-size: 2.8rem; letter-spacing: -0.02em; }
h2 { font-size: 2.1rem; letter-spacing: -0.01em; position: relative; }
h3 { font-size: 1.5rem; color: var(--primary-dark); }

.section-subtitle {
    display: inline-block;
    color: var(--accent-earth);
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-center {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(252, 250, 246, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 650;
    color: #c2410c;
    letter-spacing: -0.03em;
    line-height: 1;
    display: block;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-btn {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.nav-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    position: relative;
    transition: var(--transition);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(21, 128, 61, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 128, 61, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--bg-section-alt);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(252,250,246,0.98) 35%, rgba(252,250,246,0.60) 40%, rgba(252,250,246,0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 0 24px;
    margin-left: 30px;
}

.badge {
    display: inline-block;
    background-color: #ffedd5;
    color: var(--accent-earth);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(194, 65, 12, 0.15);
}

.hero-section h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-section p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-left: 60px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    z-index: 1;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections Base */
section {
    padding: 100px 0;
}

/* About Section */
.about-section {
    background-color: var(--bg-main);
}

.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.text-block p {
    margin-bottom: 1.4rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.image-block {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-section-alt);
    padding: 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    background-color: white;
    box-shadow: var(--shadow);
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.card-body h3 {
    margin-left: 40px;
}

.card-body h3, .card-body p {
    padding: 20px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Offer & Logistics Section */
.offer-section {
    background-color: var(--bg-section-sage);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.offer-card.wide-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.card-image-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 2rem;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.logistics-item {
    background-color: var(--bg-main);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.logistics-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.log-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.logistics-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.logistics-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Products Section */
.products-section {
    background-color: var(--bg-main);
}

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

.fruit-tile {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.fruit-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fruit-img {
    height: 200px;
    overflow: hidden;
}

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

.fruit-tile:hover .fruit-img img {
    transform: scale(1.06);
}

.fruit-info {
    padding: 24px;
}

.fruit-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.fruit-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Process Section */
.process-section {
    background-color: var(--bg-section-sage);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.process-card {
    background-color: var(--bg-card);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(21, 128, 61, 0.2);
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.process-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Why Us Section */
.why-section {
    background-color: var(--bg-section-alt);
}

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

.benefit-card {
    background-color: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
    color: var(--secondary);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-banner-section {
    background: linear-gradient(135deg, #0d3b1e 0%, #166534 60%, #15803d 100%);
    color: #f0fdf4;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-banner-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.contact-banner-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.contact-banner-header p {
    color: #bbf7d0;
    font-size: 1.05rem;
    padding: 0;
}

.light-subtitle {
    color: #86efac !important;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
}

.title{
    font-weight:bolder;
    font-size:x-large;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-details h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: #dcfce7;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 4px;
}

.contact-sub {
    color: #86efac !important;
    font-size: 0.85rem !important;
}

.contact-value {
    color: #ffffff;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1e293b;
}

/* Responsywność */
@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        padding: 160px 0 100px 0;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(252,250,246,0.98) 0%, rgba(252,250,246,0.92) 100%);
    }
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .section-grid, .offer-card.wide-card, .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.85rem; }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .logistics-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }

    .contact-banner-section {
        padding: 45px 0;
    }
}

a {
    text-decoration: none;
}

