/**
 * 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%;
}

/* 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-trust-bar {
    background: rgba(255,107,0,0.05);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 8px;
    padding: 15px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

.elf-trust-value {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B00;
}

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

.elf-trust-star {
    width: 16px;
    height: 16px;
    fill: #FFD700;
}

.elf-trust-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
}

.elf-trust-link:hover {
    color: #FF6B00;
    border-bottom-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: 12px 20px;
    }
    
    .elf-trust-value {
        font-size: 18px;
    }
    
    .elf-trust-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}