

    /* HEADER */
    header {
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    

    .logo {
        width: 60px;
        margin-left: auto;
    }

    nav a {
        margin-right: 20px;
        text-decoration: none;
        color: #333;
    }

    /* CONTAINER */
    .about-container {
        max-width: 900px;
        margin: 40px auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* KARTEN */
    .about-card {
        background: white;
        border-radius: 25px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(186,132,188,0.15);
        transition: 0.3s;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeIn 0.8s forwards;
    }

    .about-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(186,132,188,0.3);
    }

    .about-card:nth-child(2) { animation-delay: 0.2s; }
    .about-card:nth-child(3) { animation-delay: 0.4s; }
    .about-card:nth-child(4) { animation-delay: 0.6s; }

    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* PROFIL */
    .profile {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .profile-img {
        width: 130px;
        border-radius: 20px;
        transition: 0.3s;
    }

    .profile-img:hover {
        transform: scale(1.08);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* HERZ */
    .favorites {
        display: flex;
        align-items: center;
        gap: 40px;
        padding-left: 200px;
    }

    .heart {
        width: 120px;
        height: 120px;
        background: var(--main-color);
        transform: rotate(-45deg);
        position: relative;
        animation: pulse 1.5s infinite;
    }

    .heart::before,
    .heart::after {
        content: "";
        width: 120px;
        height: 120px; 
        background: var(--main-color);
        border-radius: 50%;
        position: absolute;
    }

    .heart::before {
        top: -60px;
        left: 0;
    }

    .heart::after {
        left: 60px;
        top: 0;
    }

    .loves {
        text-align: left;
        padding-left: 150px;
    }

    @keyframes pulse {
        0% { transform: rotate(-45deg) scale(1); }
        50% { transform: rotate(-45deg) scale(1.1); }
        100% { transform: rotate(-45deg) scale(1); }
    }

    /* TEXT */
    h1 {
        font-family: 'Playfair Display', serif;
        color: var(--main-color);
        transition: 0.3s;
    }

    h1:hover {
        letter-spacing: 2px;
    }

    p {
        line-height: 1.6;
    }

    .profile-text {
        position: relative;
        display: inline-block;
        padding: 24px 22px;
        margin: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(186,132,188,0.14));
        background-clip: text;
        -webkit-background-clip: text;
        clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
        mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0) 100%);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .profile-text:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(186,132,188,0.12);
    }

    /* GALERIE */
    .gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 10px;
    }

    .gallery img {
        width: 100%;
        border-radius: 12px;
        transition: 0.3s;
    }

    .gallery img:hover {
        transform: scale(1.08) rotate(1deg);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* GALERIE REITEN - ASYMMETRISCHES GRID */
    .galleryReiten {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }

    .galleryReiten img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: 0.3s;
    }

    .galleryReiten img:hover {
        transform: scale(1.08) rotate(1deg);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Bild 1: Spalte 1, Zeilen 1-2 */
    .galleryReiten img:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    /* Bild 3: Spalte 3, Zeilen 1-2 */
    .galleryReiten img:nth-child(3) {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    /* Bild 5: Spalte 2, Zeilen 2-3 */
    .galleryReiten img:nth-child(5) {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    /* MOBILE RESPONSIVITÄT - KARUSSELL */
    @media (max-width: 768px) {
        .galleryReiten {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
            grid-auto-flow: column;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .galleryReiten img {
            scroll-snap-align: start;
            scroll-snap-stop: always;
            grid-column: auto;
            grid-row: auto;
            height: 300px;
        }
    }

    /* SOCIAL */
    .social {
        display: flex;
        gap: 30px;
    }

    .icon {
        width: 40px;    
    }
