/* footer.css */

/* Footer Container */
.footer {
    background: white;
    border-top: 1px solid #e9ecef;
    margin-top: 60px;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

/* WebCV Logo */
.footer-logo {
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.logo-shape {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2;
}

.logo-document {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 45px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.document-header {
    position: absolute;
    top: 8px;
    left: 6px;
    right: 6px;
    height: 3px;
    background: #28a745;
    border-radius: 2px;
}

.document-line {
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: #e9ecef;
    border-radius: 1px;
}

.document-line:nth-child(2) { top: 15px; }
.document-line:nth-child(3) { top: 20px; right: 12px; }
.document-line:nth-child(4) { top: 25px; }
.document-line:nth-child(5) { top: 30px; right: 10px; }

.document-line.short {
    right: 12px;
}

.logo-checkmark {
    position: absolute;
    top: 15px;
    right: 5px;
    width: 15px;
    height: 15px;
    z-index: 3;
}

.checkmark-line {
    position: absolute;
    background: #28a745;
    border-radius: 2px;
}

.checkmark-line:first-child {
    width: 8px;
    height: 3px;
    top: 8px;
    left: 2px;
    transform: rotate(45deg);
    transform-origin: left center;
}

.checkmark-line:last-child {
    width: 12px;
    height: 3px;
    top: 6px;
    left: 4px;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #28a745, #20c997, #17a2b8);
    border-radius: 25px;
    opacity: 0.3;
    z-index: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 4px;
    margin: 12px 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    position: relative;
}

.web {
    color: #28a745;
    position: relative;
    display: inline-block;
    transform: skew(-5deg);
}

.web::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.2;
}

.cv {
    color: #20c997;
    position: relative;
    display: inline-block;
    transform: skew(5deg);
    margin-left: 8px;
}

.cv::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #20c997, #17a2b8);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.2;
}

.logo-tagline {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
}

/* Company Information */
.company-info {
    max-width: 800px;
    line-height: 1.6;
}

.company-info p {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 8px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.company-info p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .logo-shape {
        width: 45px;
        height: 45px;
    }
    
    .logo-document {
        width: 30px;
        height: 38px;
    }
    
    .logo-text {
        font-size: 34px;
        letter-spacing: 3px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    .company-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-shape {
        width: 40px;
        height: 40px;
    }
    
    .logo-document {
        width: 28px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 30px;
        letter-spacing: 2px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .company-info p {
        font-size: 12px;
    }
}