/* ============================================================
   Footer styly (extrahováno z vcreate-footer.php)
   Načítá se přes shortcode [unicef_footer]
   ============================================================ */

    /* Footer Styles */
    .unicef-footer {
        position: relative;
        background-color: rgba(50, 50, 50, 1);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
    }
    
    .footer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(50, 50, 50, 0.9);
        z-index: 1;
    }
    
    .footer-content {
        position: relative;
        z-index: 2;
        padding: 120px 0 80px;
    }
    
    .footer-container {
        max-width: 1440px;
        margin: 0 auto;
    }
    
    /* First Section - Logo + Main Columns */
    .footer-section-one {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
        align-items: start;
    }
    
    .footer-logo-column {
        display: flex;
        align-items: flex-start;
        padding-top: 5px;
    }
    
    .footer-logo-column img {
        height: auto;
        width: 175px;
    }
    
    /* Second Section - Newsletter + Secondary Columns */
    .footer-section-two {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 60px;
    }
    
    /* Footer Columns */
    .footer-column h3 {
        font-size: 24px;
        font-weight: 900;
        margin: 0 0 20px 0;
        color: white;
        text-transform: none;
    }
    
    .footer-links {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.4;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: white;
        text-decoration: underline;
    }
    
    /* Newsletter Section */
    .footer-newsletter p {
        color: rgba(255, 255, 255, 1);
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .newsletter-form .form-group {
        display: flex;
        gap: 0;
        max-width: 300px;
    }
    
    .newsletter-form input[type="email"] {
        flex: 1;
        padding: 12px 15px;
        border: none;
        background: rgba(255, 255, 255, 0);
        color: white;
        font-size: 16px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .newsletter-form input[type="email"]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .newsletter-form input[type="email"]:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
        border-bottom-color: #00AEEF;
    }
    
    .newsletter-form button {
        padding: 10px 30px;
        background: transparent;
        color: white;
        border: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: none;
    }
    
    .newsletter-form button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-bottom-color: #00AEEF;
    }
    
    /* Newsletter zprávy - NOVÉ */
    .newsletter-message {
        margin-top: 12px;
        font-size: 14px;
        display: none;
    }

    .newsletter-message.success {
        color: #4ade80;
        display: block;
    }

    .newsletter-message.error {
        color: #f87171;
        display: block;
    }
    
    .newsletter-form button.loading {
        opacity: 0.7;
        pointer-events: none;
    }
    
    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 15px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background: #00AEEF;
        transform: translateY(-2px);
    }
    
    .social-icons svg {
        width: 20px;
        height: 20px;
    }
    
    /* Bottom Bar */
    .footer-bottom {
        background: rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        position: relative;
        z-index: 2;
    }
    
    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 1);
        font-size: 16px;
        font-weight: 300;
        padding-bottom: 0px !important;
    }
    
    .footer-bottom a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-bottom a:hover {
        color: white;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .footer-section-one,
        .footer-section-two {
            gap: 40px;
        }
    }
    
    @media (max-width: 992px) {
        .footer-section-one {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .footer-section-two {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .footer-logo-column {
            grid-column: span 2;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .footer-newsletter {
            grid-column: span 2;
        }
        
        .newsletter-form .form-group {
            max-width: 100%;
        }
    }
    
    @media (max-width: 768px) {
        .footer-content {
            padding: 40px 0 30px;
        }
        
        .footer-container {
            padding: 0 20px;
        }
        
        .footer-section-one,
        .footer-section-two {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-logo-column {
            grid-column: span 1;
            justify-content: flex-start;
        }
        
        .footer-newsletter {
            grid-column: span 1;
        }
        
        .footer-column h3 {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
        
        .newsletter-form .form-group {
            flex-direction: column;
        }
        
        .newsletter-form input[type="email"],
        .newsletter-form button {
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }
        
        .newsletter-form button {
            margin-top: 10px;
        }
    }
    
    @media (max-width: 576px) {
        .footer-section-one {
            margin-bottom: 40px;
        }
        
        .social-icons {
            justify-content: center;
        }
        
        .footer-logo-column {
            text-align: center;
            margin-bottom: 30px;
        }
    }
