    :root {
        --main-color: #BA84BC;
    }

    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: #f7f3f8;
        color: #333;
    }

    /* HEADER */
    header {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }


/*Hintergrundvideo*/
    .olaf {
    position: relative;   /* Damit Text über dem Video liegt */
    height: 100vh;
    overflow: hidden;
}
 
.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Video füllt die ganze Hero-Section */
    z-index: -1;         /* Video liegt hinter dem Text */
    opacity: 0.9;
}
 
.olaf {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/*Hintergrundvideo*/
 
    .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;    
    }

    table, th, td {
        border: 1px solid black;
        border-collapse: collapse;
        }

        tr:nth-child(even) {
        background-color: #D4A8D6;
         }

        th:nth-child(even),td:nth-child(even) {
         background-color: #D4A8D6;
        }

        * {

      margin: 0;

      padding: 0;

      box-sizing: border-box;

      font-family: 'Poppins', sans-serif;

    }

    body {

      background: #f9f9f9;

      color: #555;

    }

    /* NAVIGATION */

    nav {

      width: 100%;

      height: 80px;

      background: white;

      display: flex;

      justify-content: center;

      align-items: center;

      box-shadow: 0 2px 10px rgba(0,0,0,0.08);

      position: sticky;

      top: 0;

      z-index: 100;

    }

    .nav-container {

      width: 90%;

      max-width: 1300px;

      display: flex;

      justify-content: center;

      align-items: center;

      position: relative;

      gap: 20px;

    }

    .logo {

      font-size: 2rem;

      color: #b7d7e8;

      cursor: pointer;

      width: 50px;

      height: 50px;

      display: flex;

      align-items: center;

      justify-content: center;

    }

    .logo img {

      width: 100%;

      height: 100%;

      object-fit: contain;

      border-radius: 8px;

    }

    .nav-links {

      list-style: none;

      display: flex;

      gap: 50px;

    }

    .nav-links a {

      text-decoration: none;

      color: #555;

      font-weight: 500;

      transition: 0.3s;

    }

    .nav-links a:hover {

      color: #b7d7e8;

    }

    body.page-index .nav-links a,
    body.page-index .nav-dropdown-toggle {

      color: #000;

      font-weight: 700;

    }

    body.page-index .nav-links a:hover,
    body.page-index .nav-dropdown-menu a:hover {

      color: #b7d7e8;

      background: #f7f3f8;

    }

    body.page-index .nav-dropdown-menu a {

      color: #000;

      font-weight: 700;

    }

    /* Dropdown-Menü für Fächer */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-menu {
      list-style: none;
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 10px 0;
      min-width: 250px;
      margin-top: 5px;
      z-index: 1000;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      display: block;
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 12px 20px;
      color: #555;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-dropdown-menu a:hover {
      color: #b7d7e8;
      background: #f7f3f8;
    }

    .brand-circle {

      width: 50px;

      height: 50px;

      background: #b7d7e8;

      border-radius: 50%;

      display: flex;

      justify-content: center;

      align-items: center;

      color: white;

      font-size: 0.8rem;

      margin-left: auto;

      text-align: center;

      font-weight: 600;

    }

    /* HEADER IMAGE */

    .hero {

      width: 100%;

      height: 350px;

      background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c') center/cover no-repeat;*/

      display: flex;

      justify-content: center;

      align-items: center;

      position: relative;

      overflow: hidden;

    }

    .hero::after {

      content: "";

      position: absolute;

      inset: 0;

      background: rgba(0,0,0,0.35);

    }

    .hero h1 {

      position: relative;

      z-index: 2;

      color: white;

      font-size: 3rem;

      font-weight: 700;

      text-shadow: 2px 2px 10px rgba(0,0,0,0.4);

    }

    /* SECTION STYLE */

    .fach-section {

      padding: 70px 10%;

      border-bottom: 1px solid #ddd;

      text-align: center;

      background: white;

    }

    .fach-section h2 {

      color: #b7d7e8;

      margin-bottom: 50px;

      font-size: 1.8rem;

      font-weight: 500;

    }

    .projekt-grid {

      display: flex;

      justify-content: center;

      gap: 60px;

      flex-wrap: wrap;

    }

    /* BILDER MIT ANIMATION */

    .projekt-box {

      text-align: center;

      transition: transform 0.4s ease;

    }

    .projekt-box:hover {

      transform: translateY(-12px);

    }

    .projekt-box img {

      width: 230px;

      height: 230px;

      object-fit: cover;

      border: 3px solid #ddd;

      transition: transform 0.5s ease, box-shadow 0.5s ease;

      cursor: pointer;

    }

    .projekt-box img:hover {

      transform: scale(1.08);

      box-shadow: 0 12px 30px rgba(0,0,0,0.2);

    }

    .projekt-box p {

      margin-top: 15px;

      font-size: 1rem;

      color: #666;

      font-weight: 500;

    }

    /* RESPONSIVE */

    @media(max-width: 900px) {

      .nav-links {

        gap: 20px;

        font-size: 0.9rem;

      }

      .hero h1 {

        font-size: 2rem;

        text-align: center;

      }

      .projekt-box img {

        width: 180px;

        height: 180px;

      }

    }

    @media(max-width: 650px) {

      .nav-container {

        flex-direction: column;

        gap: 10px;

        padding: 10px 0;

      }

      nav {

        height: auto;

      }

      .nav-links {

        flex-wrap: wrap;

        justify-content: center;

      }

      .brand-circle {

        display: none;

      }

    }

    #entrySection {
            position: relative;
            display: flex;
        }

        #entrySection > div:first-child,
        #entrySection > div:nth-child(2) {
            flex: 1;
        }

        #entrySection > div:first-child img,
        #entrySection > div:nth-child(2) img {
            width: 100%;
            height: auto;
            opacity: 0.75;
        }

        #entrySection > div:nth-child(3) {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 8em;
            animation: fadeIn 4s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        :root {
            --menu-color: #5C6BAA;
            --menu-size: 40px;
            --menu-gap: 16px;
            --menu-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--menu-font);
        }

        header {
            display: flex;
            align-items: center;
            gap: var(--menu-gap);
            padding: 12px 16px;
            background: rgba(255,255,255,0.85);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .logo {
            width: 2cm;
            height: 2cm;
            object-fit: contain;
            border-radius: 8px;
            margin-left: auto;
        }

        .menu-toggle {
            width: var(--menu-size);
            height: var(--menu-size);
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: var(--menu-color);
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle span {
            display: block;
            width: 18px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .menu-toggle span + span {
            margin-top: 4px;
        }

        .menu-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav {
            display: flex;
            gap: 20px;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            padding: 10px 14px;
            border-radius: 10px;
            transition: background 0.2s ease;
        }

        .nav a:hover {
            background: rgba(92, 107, 170, 0.2);
        }

        .nav.collapsed {
            display: none;
        }

        .section {
            display: flex;
            align-items: center;
            gap: 40px;
            margin: 40px auto;
            padding: 30px 40px;
            max-width: 1200px;
        }

        .half-image {
            width: 45%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
            flex-shrink: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .half-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .text-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .text-side h2 {
            margin: 0 0 20px 0;
            font-size: 1.5em;
            color: #333;
        }

        .link-button {
            border: 2px solid #5C6BAA;
            background: transparent;
            color: #5C6BAA;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-block;
            cursor: pointer;
        }

        .link-button:hover {
            background-color: #5C6BAA;
            color: white;
            box-shadow: 0 4px 12px rgba(92, 107, 170, 0.3);
        }

        @media (max-width: 768px) {
            .section {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
                margin: 20px auto;
            }

            .half-image {
                width: 100%;
            }

            .text-side {
                width: 100%;
            }

            .text-side h2 {
                font-size: 1.2em;
            }
        }