/* Footer Styles */
.footer {
    margin: auto;
    width: 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1919;
    color: rgb(206, 210, 237);
    padding: 3rem;
    margin-top: 4rem;
    width: 100vw;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    line-height: 2rem;
    color: rgb(140, 145, 160);
    font-size: 1rem;
}
/* Mobile responsive footer adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
        padding: 0 1rem;
        justify-content: flex-start;
    }

    .footer-section {
        width: 100%;
        text-align: left;
    }

    .footer-section h3 {
        text-align: left;
    }

    .footer-section p {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem 0;
    }

    .footer-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .profile-slideshow {
        width: 200px;
        height: 200px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot-navigation {
        gap: 8px;
        margin-top: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1rem;
    }
    
    .carousel-container {
        max-width: 100%;
        width: 100%;
    }
    
    .profile-slideshow {
        width: 100%;
        height: auto;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .slides-container {
        width: 400%;
        height: 100%;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        padding: 10px;
    }

    .image-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }

    .footer {
        padding: 2rem 0 1.5rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }
}
