/* Media Queries for Responsive Design */
@media (max-width: 915px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image {
        width: 40%;
    }

    #sticky-header {
        width: 50%;
        background-color: red; /* temporary for testing */
    }
}


@media (max-width: 768px) {
    /* Mobile landscape and tablet adjustments */
    .pt-140 {
        padding-top: 80px !important;
    }
    
    .pb-90 {
        padding-bottom: 50px !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hello-iam {
        font-size: 1.5rem !important;
    }

    .iam-designer {
        font-size: 1rem !important;
    }

    .hero-image {
        position: relative !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 30px auto 0;
        right: auto !important;
        top: auto !important;
    }

    .hero-btn-wraper {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-wraper .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-spin svg {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    /* Mobile portrait adjustments */
    .hero-title {
        font-size: 2rem;
    }

    .hello-iam img {
        width: 25px;
    }

    .social-icons a img {
        width: 24px;
        margin: 5px;
    }

    .contact-spin svg {
        width: 100px;
        height: 100px;
    }

    .position-absolute.hero-image {
        position: relative !important;
        margin-top: 30px;
    }
}

/* Optional: Adjust animation speeds for mobile */
@media (max-width: 768px) {
    [data-aos] {
        transition-duration: 0.6s !important;
    }
}