/* ========================================
   RESPONSIVE PROJEKTE CSS - Karolin Wunderlich
   Nur für die Projekte-Seite (projekte.html)
   ======================================== */

@media screen and (max-width: 768px) {
    
    /* ========================================
       BACKGROUND-CONTAINER MIT TITEL
       ======================================== */
    
    .background-container {
        width: 100% !important;
        max-height: none !important;
        aspect-ratio: auto !important;
        height: auto !important;
        min-height: 40vh;
        margin-left: 0 !important;
        padding: 2rem 1rem !important;
        align-items: center;
        justify-content: center;
        background-position: center center !important;
    }
    
    .background-container .title {
        font-size: 1.8rem !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        line-height: 1.3;
        text-shadow: 
            2px 2px 6px rgba(0, 0, 0, 1.5),
            0 0 15px rgba(0, 0, 0, 1.2) !important;
    }
    
    /* ========================================
       PROJEKTE-CONTAINER
       ======================================== */
    
    .projekte-container {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        padding: 0 1rem;
        width: 100% !important;
    }
    
    .projekt-item {
        width: 100%;
    }
    
    .projekt-item .text {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    .projekt-item hr.lila {
        margin: 0.5rem 0;
    }
    
    /* ========================================
       TEXTE
       ======================================== */
    
    .text,
    .text2 {
        margin-left: 0 !important;
        text-align: center !important;
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .text strong {
        font-size: 1.1rem !important;
        display: block;
        margin-bottom: 0 !important;
    }
    
    /* ========================================
       BILDER
       ======================================== */
    
    .img-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }
    
    .img {
        width: 100% !important;
        max-width: 400px;
        height: auto !important;
        aspect-ratio: 3/2;
        object-fit: cover;
        margin: 0.5rem auto;
    }
    
    /* ========================================
       COMING SOON LABEL & BUTTON - LINKS UNTEN
       ======================================== */
    
    .coming-soon-label {
        top: auto !important;
        bottom: 20px !important;
        left: 10px !important;
        transform: none !important;
        font-size: 1rem !important;
        padding: 8px 16px !important;
    }
    
    .coming-soon-button {
        top: auto !important;
        bottom: 20px !important;
        left: 10px !important;
        transform: none !important;
        font-size: 1rem !important;
        padding: 10px 20px !important;
    }
}

/* =======