.developer-footer {
    background: linear-gradient(45deg, #2C3E50, #3B3B3B);
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.developer-info {
    flex: 1;
    min-width: 300px;
}

.developer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F9B234;
    font-weight: 600;
}

.developer-info p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #F9B234;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #F9B234, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F9B234;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center; /* Center items horizontally */
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap; /* Allow social links to wrap */
    }

    .developer-info p {
        word-wrap: break-word; /* Ensure long text wraps */
    }
}

.kente-pattern {
    height: 10px;
    background-image: repeating-linear-gradient(
        45deg,
        #F9B234 0px,
        #F9B234 10px,
        #2C3E50 10px,
        #2C3E50 20px
    );
    margin-bottom: 2rem;
}

/* Floating social/contact icons (fixed on right edge) */
.floating-icons {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    opacity: 0.98;
}

.floating-icon:hover,
.floating-icon:focus {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 26px rgba(0,0,0,0.32);
    outline: none;
}

.floating-icon .fa-stack {
    vertical-align: top;
}

/* Platform brand colors */
.floating-icon.youtube { background: #FF0000; }
.floating-icon.facebook { background: #1877F2; }
.floating-icon.instagram { background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.floating-icon.tiktok { background: linear-gradient(45deg,#69C9D0,#EE1D52); }
.floating-icon.corporacion { background: #1b5e20; }
.floating-icon.email { background: #6c63ff; }
.floating-icon.phone { background: #00b894; }

/* small label on hover for wider screens */
@media (min-width: 900px) {
    .floating-icon[data-label]:hover::after {
        content: attr(data-label);
        position: absolute;
        right: 70px;
        background: rgba(0,0,0,0.85);
        color: #fff;
        padding: 6px 10px;
        border-radius: 6px;
        white-space: nowrap;
        font-size: 0.9rem;
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }
}
