@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

/* ════════════════════════════════
   HANDY (Basis)
════════════════════════════════ */

.header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4vw;
}

#logo {
    width: 20vw;
    height: auto;
    object-fit: contain;
}

#bild1 {
    width: 65vw;
    height: 80vw;
    object-fit: cover;
}

.galerie-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 4vw;
}

.table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 8vw;
    border: none;
}

.table th,
.table td {
    width: 50%;
    padding: 1vw;
    border: none;
}

.table th:empty,
.table td:empty {
    display: table-cell;
}

.table img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    width: 100%;
    margin-top: 6vw;
}

.image-gallery img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.ausstellung-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-top: 8vw;
    gap: 3vw;
}

.exhibition-label {
    font-size: 3.5vw;
    text-align: right;
    line-height: 1.8;
}

#bild9 {
    width: 100%;
    height: auto;
}

#bild10 {
    width: 55vw;
    height: auto;
    margin-top: 8vw;
    align-self: flex-end;
}

#bild11 {
    width: 60vw;
    aspect-ratio: 2/3;
    object-fit: cover;
}

#bild12 {
    width: 60vw;
    aspect-ratio: 2/3;
    object-fit: cover;
    margin-top: 8vw;
    align-self: flex-end;
}

.about-section {
    padding: 10vw 5vw;
    width: 100%;
}

.about-section h2 {
    font-size: 8vw;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 6vw;
    color: #1a1a1a;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.about-text p {
    font-size: 4vw;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
    margin-bottom: 0 !important;
}

#bild-lilly,
#bild-projekt {
    width: 100%;
    height: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 6vw;
    padding: 8vw 0;
}

.social-icon {
    font-size: 7vw;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icon:hover { opacity: 0.5; }
.social-icon.black { color: black; }
.social-icon.teal  { color: black; }


/* ════════════════════════════════
   TABLET
════════════════════════════════ */
@media (min-width: 768px) {

    .header-row {
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 4vw 0 2vw;
    }

    #logo {
        height: 15vw;
        width: auto;
    }

    #bild1 {
        width: 50vw;
        height: 60vw;
        margin-top: 3vh;
    }

    .galerie-wrapper {
        align-items: flex-end;
        padding-right: 3vw;
    }

    .table {
        width: 75%;
        margin-top: 8vh;
    }

    .table th,
    .table td {
        padding: 1vw;
    }

    .image-gallery {
        width: auto;
        margin-top: 6vh;
        gap: 1.5vw;
    }

    .image-gallery img {
        width: 25vw;
        aspect-ratio: 2/3;
    }

    .ausstellung-block {
        flex-direction: row;
        align-items: flex-start;
        margin-top: 8vh;
        gap: 2vw;
    }

    .exhibition-label {
        font-size: clamp(0.7rem, 1.3vw, 1.1rem);
    }

    #bild9  { width: 55vw; }
    #bild10 { width: 28vw; margin-top: 8vh; margin-right: 8vw; }
    #bild11 { width: 28vw; aspect-ratio: 2/3; }
    #bild12 { width: 28vw; aspect-ratio: 2/3; margin-top: 8vh; }

    .about-section {
        padding: 6rem 4vw;
        max-width: 90vw;
        margin-left: 5vw;
    }

    .about-section h2 {
        font-size: clamp(20px, 3vw, 40px);
        margin-bottom: 1vh !important;
    }

    .about-content {
        flex-direction: row;
    }

    .about-content #bild-lilly,
    .about-content #bild-projekt {
        width: 35vw;
        height: auto;
    }

    .about-text p {
        font-size: clamp(0.8rem, 1.3vw, 1rem);
    }

    .social-icons {
        position: absolute;
        left: 3vw;        
        top: 40vw;         
        right: auto;       
        padding: 0;       
        flex-direction: column;
        display: flex;
        z-index: 100;
        gap: 1vw;
    }

    .social-icon { 
        font-size: clamp(1.8rem, 2.5vw, 2.5rem); 
    }
}


/* ════════════════════════════════
   DESKTOP
════════════════════════════════ */
@media (min-width: 1024px) {

    #logo { height: 20vw; width: auto; }

    #bild1 {
        width: 45vw;
        height: 55vw;
    }

    .table { width: 60%; }

    .image-gallery img {
        width: 20vw;
        aspect-ratio: 2/3;
    }

    #bild9 { width: 55vw; }

    #bild10 {
        width: 25vw;
        margin-right: 15vw;
        margin-top: 8vh;
    }

    .ausstellung-block {
        justify-content: flex-end;
    }

    #bild11 {
        width: 20vw;
        aspect-ratio: 2/3;
    }

    #bild12 {
        width: 20vw;
        aspect-ratio: 2/3;
        align-self: flex-end;
        margin-top: 8vh;
        margin-right: 0;
    }

    .about-section {
        max-width: 70vw;
        margin-left: 12vw;
    }

    .about-section h2 {
        font-size: clamp(24px, 3vw, 48px);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4vw;
    }

    .about-content #bild-lilly,
    .about-content #bild-projekt {
        width: 100%;
    }

    .about-text p {
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }
}
