/* 
   Pomocnik Ogrodniczy Landing Page Styles 
   Theme: Fresh, Friendly, and accessible
*/

:root {
    /* New Palette: Fresh & Friendly */
    --primary-color: #2ECC71;      /* Emerald Green - Vitality */
    --primary-dark: #27ae60;       /* Darker Emerald */
    --primary-light: #d5f5e3;      /* Very light green for backgrounds */
    
    --secondary-color: #34495E;    /* Dark Blue-Grey - Trust/Text */
    --text-color: #2c3e50;         /* Midnight Blue - Readable Text */
    --text-light: #7f8c8d;         /* Grey - Subtitles */
    
    --accent-color: #E67E22;       /* Carrot Orange - Highlights */
    --accent-hover: #d35400;       
    
    --bg-soft: #ECF0F1;            /* Soft Cloud - Backgrounds */
    --white: #FFFFFF;
    
    /* Typography - Lato for friendliness */
    --font-main: 'Lato', sans-serif;
    
    /* Spacing & Layout */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 20px;         /* Softer, rounder corners */
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    font-size: 18px; /* Slightly larger text for readability */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.narrow-container {
    max-width: 800px;
}

.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-5 { margin-bottom: 50px; }

.section {
    padding: var(--section-padding);
}

.bg-soft { background-color: var(--bg-soft); }

.highlight {
    color: var(--primary-color);
}

/* Buttons - Modified for friendly feel */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 12px; /* Not fully pill, soft rect */
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-main {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-main:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-white-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-white-outline:hover {
    background-color: var(--white);
    color: var(--text-color);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header */
.site-header {
    background-color: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.nav-cta {
    padding: 10px 25px; /* Smaller for nav */
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section - Softer, friendlier look */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1557429287-b2e26467fc2b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Garden tools/greenery */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 140px;
    text-align: center;
    border-bottom-left-radius: 50px; /* Unconventional shape */
    border-bottom-right-radius: 50px;
    margin-bottom: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.9), rgba(52, 73, 94, 0.8)); /* Green to Blueish mix */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--white);
}

.hero-subtitle {
    font-size: 22px;
    margin: 0 auto 50px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* Intro Section */
.intro-section {
    background-color: var(--white);
}

.section-title {
    font-size: 42px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.intro-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-10px);
}

.rounded-img {
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.intro-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Features Section */
.row {
    display: flex;
    gap: 80px;
    align-items: center;
}

.col-content { flex: 1; }
.col-image { flex: 1; position: relative; }

.check-list li {
    display: flex;
    margin-bottom: 40px;
}

.check-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.check-list h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.check-list p {
    color: var(--text-light);
    font-size: 16px;
}

/* Blob effect for image */
.feature-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
    max-width: 90%;
}

.blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background-color: #FAD02E; /* Yellowish blob */
    top: -30px;
    right: -30px;
    filter: blur(40px);
}

.blob-2 {
    width: 400px;
    height: 400px;
    background-color: #7BE495; /* Greenish blob */
    bottom: -50px;
    left: -50px;
    filter: blur(50px);
}

/* Workshop Section */
.workshop-card {
    background: linear-gradient(135deg, #34495E, #2C3E50);
    border-radius: 30px;
    padding: 80px;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.4);
}

.workshop-content {
    flex: 3;
    z-index: 2;
}

.workshop-visual {
    flex: 1;
    text-align: right;
    color: rgba(255,255,255,0.1);
    z-index: 1;
    transform: scale(1.5);
}

.badge-new {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.workshop-card h2 {
    color: var(--white);
    font-size: 36px;
}

.workshop-card p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.workshop-details {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
}

.workshop-details i {
    color: var(--primary-color);
    margin-right: 10px;
}

.shadow-hover:hover {
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

/* Contact/Form Section */
.clean-form {
    background-color: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, select, textarea {
    width: 100%;
    padding: 18px;
    background-color: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

/* Footer */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.footer-brand h4 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #eee;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-copy {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .workshop-card {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .workshop-content {
        margin-bottom: 30px;
    }
    
    .workshop-details {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .main-nav, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 140px 0 80px;
        border-radius: 0 0 30px 30px;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .clean-form {
        padding: 30px;
    }
}
