/* assets/css/responsive.css */

/* Extra large devices (large desktops) */
@media (max-width: 1199.98px) {
    .display-3 {
        font-size: 3.5rem;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .display-3 {
        font-size: 3rem;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .dark-mode .navbar-collapse {
        background: #1a1d21;
    }

    #home {
        padding-top: 120px !important;
        /* Fixed: Added more top padding for tablet/mobile */
        text-align: center;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    #home {
        padding-top: 140px !important;
        /* Fixed: Extra space to prevent overlapping with fixed navbar */
        text-align: center;
    }

    #home .w-75 {
        width: 100% !important;
    }

    #home .d-flex {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .about-img-wrapper {
        margin-bottom: 50px;
    }

    .experience-badge {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important;
    }

    .hero-img-blob {
        margin-bottom: 30px;
        /* Space between image and text in mobile */
    }

    .hero-img-blob img {
        max-width: 280px !important;
        /* Ensuring profile pic remains visible but not oversized */
    }
}

/* Small devices (landscape phones, less than 750px) */
@media (max-width: 575.98px) {
    #home {
        padding-top: 130px !important;
    }

    .display-3 {
        font-size: 2.2rem;
    }

    .btn-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-img-blob img {
        max-width: 220px !important;
    }

    .hero-img-blob::before {
        filter: blur(40px);
        /* Reduced blur for smaller screens */
    }
}