/* Mobile styles */
@media (max-width: 768px) {
    /* Navigation */
    #navbar {
        padding: 0 10px;
    }

    .nav-menu {
        top: 15px;
        right: 15px;
    }

    /* Layout */
    .items {
        flex-direction: column;
        gap: 15px;
    }
    
    .item {
        width: 100%;
        min-width: auto;
    }
    
    .projects {
        width: 100%;
    }

   
    #home img {
        max-width: 150px;
    }

    .heading-medium {
        font-size: 20px;
    }

    .heading-big {
        font-size: 24px;
    }
    
    .project-tags {
        justify-content: center;
    }
    
    .tag {
        font-size: 12px;
    }
    
    .social-icons a {
        font-size: 20px;
        margin: 0 5px;
    }
    
    .contact-button {
        padding: 8px 20px;
        width: 100%;
        max-width: 300px;
    }

    /* Motivation section */
    .motivation_container_TR, .motivation_container_EN {
        padding: 15px;
    }

    .motivation_container_TR h3, .motivation_container_EN h3 {
        font-size: 20px;
    }

    .motivation_container_TR p, .motivation_container_EN p {
        font-size: 14px;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .projects {
        width: calc(50% - 20px);
    }

    .item {
        min-width: 250px;
    }

    .heading-medium {
        font-size: 22px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    #home {
        padding: 20px 10px;
    }

    #home img {
        max-width: 120px;
    }

    .heading-big {
        font-size: 20px;
    }

    .projects-container {
        padding: 10px;
    }

    .projects {
        padding: 15px;
    }

    .tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .contact-button {
        padding: 6px 15px;
        font-size: 14px;
    }
}

/* Landscape mode for mobile */
@media (max-height: 480px) and (orientation: landscape) {
    #home {
        min-height: auto;
        padding: 40px 20px;
    }

    #home img {
        max-width: 100px;
    }

    .items {
        flex-direction: row;
    }
} 