        /* Grundlegende Stile */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Open Sans", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            font-variation-settings:"wdth" 100;
        }
        
        body {
                 color: #333;
                 line-height: 1.6;
                 background-image: url('./pictures/rightcorner.png');
                 background-repeat: no-repeat;
                 background-position: right top 5%;
                 background-attachment: fixed;
                 background-size: 25vw auto; /* 25% der Bildschirmbreite */
            }

         @media (max-width: 600px) {
            body {
                background-size: 40vw auto; /* etwas größer auf kleinen Screens */
                background-position: right top 50px;
            }
        }

    /* Tablets (601px bis 1024px) */
        @media (min-width: 601px) and (max-width: 1024px) {
             body {
                background-size: 30vw auto;
            }
        }
        
        /* Header mit Hintergrundbild */
        .hero {
            height: 100vh;
            /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); */
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: black;
        }
        
        .hero h1 {
            font-size: 7rem;
            font-style: normal;
            margin-bottom: 5px;
            color: rgba(192,176,165,1.0);
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
            font-family: 'Faustine';
        }

        /* 192 176 165
        95 95 95 */
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 250px;
            color: grey;
           /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
        }
        
        .date {
            font-size: 2.5rem;
            /* font-weight: bold; */
            font-family:'GFS Didot';
            color: grey;
            margin-bottom: 40px;
        }
        
 /* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center; /* Menüeinträge zentriert */
    align-items: center;
    padding: 10px 20px;
}

.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0 11px;
}

.nav-menu li a {
    text-decoration: none;
    color:   rgba(42, 70, 99, 1.00);
    font-weight: 500;
    font-size: 1.5rem; /* Schriftgröße erhöht */
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: rgba(125, 155, 166, 1.00);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between; /* Toggle-Button & Menü */
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        display: none;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
}
        
        /* Abschnitte */
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-family:'GFS Didot';
            color: rgba(192,176,165,1.0);
        }
        
        /* Unsere Geschichte */
        .story {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .story-text {
            flex: 1;
            min-width: 300px;
            padding: 0 20px;
        }
        
        .story-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .story-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Details */
        .details {
          /* color: rgba(192,176,165,1.0); */
          color: grey;
           /* background-color: #f9f9f9; */
        }
        
        .detail-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }
        
        .detail-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
        }
        
        .detail-card h3 {
            color: rgba(42, 70, 99, 1.00);
           /* color: rgba(163, 191, 217, 1.0); */
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .detail-card i {
            font-size: 2.5rem;
            color: rgba(42, 70, 99, 1.00);
           /* color: rgba(163, 191, 217, 1.0); */
            margin-bottom: 20px;
        }
        
        /* RSVP-Formular */
        .rsvp-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 100px;
        }
        
        button {
            background-color: rgba(42, 70, 99, 1.00);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #9e5d67;
        }
        
        /* Galerie */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Footer */
        footer {
            background-color: rgba(125, 155, 166, 1.00);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 10px;
        }

        .person-card {
           display: flex;
           flex-direction: row;
           align-items: center;
           gap: 20px;
           background-color: #fff;
           padding: 20px;
           border-radius: 12px;
           box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
           margin-bottom: 10px;
           max-width: 900px;
           margin-inline: auto;
           transition: all 0.3s ease;
           font-family:'GFS Didot';
        }

        .person-card img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .person-info {
            flex: 1;
            font-family:'GFS Didot';
            color: rgba(42, 70, 99, 1.00);
        }

        .person-info h3 {
             margin: 0 0 10px;
            font-size: 1.4rem;
            font-family:'GFS Didot';
            color: rgba(125, 155, 166, 1.00);
        }

        .person-info p {
            margin: 0;
            color: #555;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .person-card {
            gap: 15px;
            padding: 16px;
        }

        .person-info h3 {
            font-size: 1.2rem;
            color: rgba(42, 70, 99, 1.00);
        }

        /* Smartphone */
        @media (max-width: 500px) {
            .person-card {
            flex-direction: column;
            text-align: center;
            padding: 16px;
         }

         .person-card img {
                margin-bottom: 10px;
         }

        .person-info {
            align-items: center;
         }

        .person-info h3 {
            font-size: 1.1rem;
            color: rgba(42, 70, 99, 1.00);
         }
        }
        
    .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}



.modal h2 {
    margin-top: 0;
    text-align: center;
}

.modal ul {
    padding-left: 1.2rem;
}

.modal .close {
    position: absolute;
    right: 12px;
    top: 10px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal .ok {
    width: 100%;
    margin-top: 1.2rem;
    padding: 0.6rem;
    font-size: 1rem;
}

@keyframes popup {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p, .date {
                font-size: 1.2rem;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
            }
            
            nav ul li {
                margin: 5px 0;
            }
        }