/* assets/css/hero.css */
.hero {
    position: relative;
    padding: 120px 5% 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.2;
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -150px;
    left: -150px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Obrázek má nyní více prostoru */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge-wrapper { margin-bottom: 24px; }
.hero-badge {
    background: #f0fdf4;
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(39, 174, 96, 0.1);
}

/* Nadpis - zmenšen pro lepší čitelnost */
.hero-title {
    font-size: 4rem; /* Sníženo z 5.5rem */
    line-height: 1.1;
    font-weight: 900;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient {
    display: block;
    color: var(--primary);
}

/* Popis */
.hero-description {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Tlačítka */
.hero-cta-group { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 60px; 
}

.btn-lg { 
    padding: 16px 32px; 
    font-size: 1rem; 
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: #27ae60;
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(39, 174, 96, 0.2);
    border: none;
}

.btn-primary:hover {
    background: #219150;
    transform: translateY(-2px);
}

.btn-glass {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
}

/* Statistiky */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #f3f4f6;
}

.stat-item strong { 
    font-size: 1.25rem; 
    color: #111827; 
    font-weight: 800; 
}

.stat-item span { 
    font-size: 0.7rem; 
    color: #9ca3af; 
    text-transform: uppercase; 
    font-weight: 700; 
    letter-spacing: 0.05em;
}

.hero-stats .divider { 
    width: 1px; 
    height: 30px; 
    background: #e5e7eb; 
}

/* Pravá strana - Vizuál */
.hero-visual {
    position: relative;
}

.visual-wrapper {
    width: 100%;
}

.main-image-frame {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
    width: 100%;
}

.hero-img { 
    width: 100%; 
    height: auto; 
    display: block;
    object-fit: cover;
}

/* Info boxy pod obrázkem */
.visual-info-box {
    margin-top: 32px;
    display: flex;
    gap: 32px;
    padding-left: 10px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 0.9rem;
}

.info-line svg {
    color: #111827;
    opacity: 0.8;
}

.info-line b {
    color: #111827;
}

/* Responzivita */
@media (max-width: 1100px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 40px; }
}

@media (max-width: 1024px) {
    .hero { padding-top: 100px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 40px; }
    .hero-cta-group, .hero-stats { justify-content: center; }
    .visual-info-box { justify-content: center; }
    .main-image-frame { max-width: 600px; margin: 0 auto; }
}