/* 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;
    }

    .exp-badge-premium {
        position: absolute !important;
        bottom: 25px !important;
        left: 20px !important;
        margin: 0 !important;
        padding: 10px 15px !important;
        gap: 10px !important;
        border-radius: 15px !important;
        min-width: 140px !important;
        width: auto !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        z-index: 100 !important;
    }

    .exp-num {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }

    .exp-text {
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
        text-align: left !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 */
    }
}