/**
 * Footer CSS - Profesionální design
 * Optimalizováno pro rychlost
 * Umístění: /css/footer.css
 */

/* Hlavní footer kontejner */
.elf-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

.elf-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid sekce */
.elf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Nadpisy sloupců */
.elf-column h3 {
    color: #FF6B00;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.elf-column h3 svg {
    width: 20px;
    height: 20px;
    stroke: #FF6B00;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Kontakt */
.elf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elf-contact-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.elf-contact-list strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.elf-contact-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.elf-contact-list a:hover {
    color: #FF6B00;
}

/* Služby */
.elf-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elf-services-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.elf-services-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #FF6B00;
    border-radius: 50%;
}

/* Služby jsou nově odkazy — sladit barvu s ostatními footer odkazy (bez modrého defaultu). */
.elf-services-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.elf-services-list a:hover {
    color: #FF6B00;
}

/* Extras */
.elf-extras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elf-extras-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.elf-extras-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B00;
    font-weight: bold;
}

/* Rychlé odkazy */
.elf-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elf-quick-links li {
    margin-bottom: 12px;
}

.elf-quick-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.elf-quick-links a:hover {
    color: #FF6B00;
}

/* Divider */
.elf-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 50px 0 30px;
}

/* Hodnocení ze Zboží.cz - pod odkazy */
.elf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.elf-trust-bar {
    /* Decentni — bez ramu/pozadi, jen jemny oddelujici prostor */
    padding: 8px 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.elf-trust-bar:hover {
    opacity: 1;
}

.elf-trust-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.elf-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.elf-trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}

.elf-trust-value {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.2px;
}

.elf-trust-stars {
    display: flex;
    gap: 1px;
}

.elf-trust-star {
    width: 13px;
    height: 13px;
    fill: rgba(255,215,0,0.85);
}

.elf-trust-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
    border: none;
}

.elf-trust-link:hover {
    color: #FF6B00;
}

/* Bottom section */
.elf-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.8;
}

.elf-bottom strong {
    color: #FF6B00;
}

.elf-bottom-links {
    margin-top: 10px;
}

.elf-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

.elf-bottom-links a:hover {
    color: #FF6B00;
}

/* Responsive */
@media (max-width: 1024px) {
    .elf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .elf-trust-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .elf-trust-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .elf-footer {
        padding: 40px 0 100px;
    }
    
    .elf-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .elf-trust-bar {
        padding: 6px 0;
        gap: 12px;
    }

    .elf-trust-value {
        font-size: 13px;
    }

    .elf-trust-item {
        flex-direction: row;
        gap: 6px;
    }
}