body {
    margin: 0;
    font-family: 'Lora', serif;
    color: #595D48;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.hero {
    background-color: #f3eacb;
    padding: 60px 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 3em;
    margin: 20px 0;
    color: #2f2f2f;
}

.hero p {
    font-size: 1.5em;
    color: #7d7d7d;
}
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-text {
        margin-bottom: 0;
    }

    .hero-image img {
        max-width: 400px;
    }
}
    .story {
        background-color: #e6f7f9;
        background-image: url('./images/os3.jpg');
        background-size: cover;
        background-position: center;
        padding: 60px 20px;
        position: relative;
    }
    
    .story::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(230, 247, 249, 0.7);
        z-index: 1;
    }
    
    .story .container {
        position: relative;
        z-index: 2;
    }
    .details {
    background-color: #f9f3e6;
    padding: 60px 20px;
    }
    .rsvp {
    background-color: #f1e6f9;
    padding: 60px 20px;
    }
    .story img, .details img, .rsvp img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    }
    h2 {
    font-size: 2.5em;
    color: #3e3e3e;
    }
    p {
    font-size: 1.2em;
    color: #5a5a5a;
    }
    .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #f07c44;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    }
    .btn:hover {
    background-color: #e96b33;
    }
    .lang-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    }
    .flag {
    width: 30px;
    height: 20px;
    margin: 0 5px;
    cursor: pointer;
    }
    .lang-en {
    display: none;
    }
    .gallery {
        background-color: #e6f7f9;
        padding: 60px 20px;
    }
    
    .thumbnails {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .thumbnail {
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin: 5px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .thumbnail:hover {
        transform: scale(1.1);
    }
    
    .full-image {
        max-width: 100%;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .full-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .details {
        background-color: #f9f3e6;
        padding: 60px 20px;
    }
    
    .details-flowers {
        display: block;
        margin: 0 auto 20px;
    }
    
    .details-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .details-ceremony,
    .details-location {
        flex: 1;
        margin: 0 20px;
    }
    
    .details-ceremony h2,
    .details-location h2 {
        font-size: 2.5em;
        color: #3e3e3e;
    }
    
    .details-ceremony p,
    .details-location p {
        font-size: 1.2em;
        color: #5a5a5a;
    }
    
    .details-location h3 {
        margin-top: 20px;
        font-size: 1.5em;
        color: #3e3e3e;
    }
    
    @media (max-width: 768px) {
        .details-content {
            flex-direction: column;
            align-items: center;
        }
    
        .details-ceremony,
        .details-location {
            margin: 20px 0;
        }
    }