@font-face {
    font-family: 'MyCustomFont';
    src: url('/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    font-family: 'MyCustomFont';
    color: white;
    padding: 2rem 0 1rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    font-weight: 200;
    font-style: normal;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #2ecc71);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-text {
    flex: 1;
    min-width: 200px;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin: 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1.5rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.brand-name {
    font-weight: 600;
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-text {
        order: 2;
    }

    .social-links {
        order: 1;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .footer {
        padding: 1rem 0 0.75rem;
    }

    .copyright {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .main-content {
        padding: 1rem;
    }

    .content-placeholder {
        padding: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .copyright {
        font-size: 0.75rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Accessibility improvements */
.social-link:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .social-link {
        transition: none;
    }

    .social-link:hover {
        transform: none;
    }
}