/*---------------------------------------------
 * Responsive Styles
 * Media queries for different screen sizes
 *--------------------------------------------*/

/* Extra Large Devices (Large Desktops) */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (Desktops) */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 4.8rem;
    }
}

/* Medium Devices (Tablets) */
@media screen and (max-width: 992px) {
    html {
        font-size: 56.25%;
    }

    .container {
        max-width: 720px;
    }

    #header {
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navbar {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav.active {
        right: 0;
    }

    .section-title .title {
        font-size: 3.2rem;
    }

    .hero-text h1 {
        font-size: 4.2rem;
    }

    .hero-text h2 {
        font-size: 2.4rem;
    }

    .skills-category {
        padding: 20px;
    }
}

/* Small Devices (Landscape Phones) */
@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .container {
        max-width: 540px;
    }

    .projects-grid,
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

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

    .project-filters {
        flex-direction: column;
        gap: 10px;
    }

    .filter-btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 3.6rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-info {
        grid-template-columns: 1fr;
    }

    .section-title .title {
        font-size: 2.8rem;
    }

    .section-title .sub-title {
        font-size: 1.6rem;
    }

    .project-info h3 {
        font-size: 1.8rem;
    }

    .project-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1.6rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .skill-item {
        padding: 15px;
    }

    .help-bot-container {
        width: 300px;
        right: -10px;
    }

    .help-bot-button {
        width: 50px;
        height: 50px;
    }
}

/* Very Small Devices */
@media screen and (max-width: 380px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .logo a {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 15px;
    }

    .help-bot-container {
        width: 280px;
    }
}