body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    font-size: 16px;
}

.navbar {
    height: 45px;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 1000;

}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding-right: 20px;
}

.nav-list li {
    padding: 10px;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #f0a500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    background: white;
    height: 4px;
    width: 25px;
    margin: 3px 0;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 45px;
        right: 0;
        width: 30%;
        text-align: center;
        padding: 0;
    }

    .nav-list.active {
        display: flex;
    }
}

header {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.fullscreen {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.halfscreen {
    display: flex;
    flex-direction: column;
    height: 70vh;
    width: 100%;
    position: relative;
}

.map {
    width: 100%;
    height: 25vh;
    border: 0;
}

header .image {
    flex: 1;
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
}

header .names {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

@media (max-width: 768px) {
    header .image {
        background-image: url('background-mobile.jpg');
    }
}

.ceremony-image {
    flex: 1;
    background: url('church.jpg') no-repeat center center;
    background-size: cover;
}


.reception-image {
    flex: 1;
    background: url('reception.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.section-body {
    position: relative;
    justify-content: center;
    text-align: center;
}

section {
    scroll-margin-top: 100px;
}

header h1 {
    font-size: 4em;
    margin: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

header h2 {
    font-size: 2em;
    margin: 0;
}

header h3 {
    font-size: 1.5em;
    margin: 0;
}

main h1 {
    font-size: 2em;
    margin: 0;
}

main h2 {
    font-size: 1em;
    margin: 0;
}

header p {
    font-size: 1.8em;
    margin-top: 10px;
}

.button {
    border-style: solid;
    background-color: transparent;
    border-color: white;
    position: fixed;
    height: 24px;
    width: 24px;
    justify-content: center;
    align-content: center;
}

.menu-toggle {
    right: 0;
    margin-right: 20px;
}

.language-button {
    left: 0;
    margin-left: 20px;
}

img {
    position: absolute;
    top: 0;
    left: 0;
}

.menu-toggle {
    border-style: solid;
    background-color: transparent;
    border-color: white;
    position: fixed;
    right: 0;
    margin-right: 20px;
}

main {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
    justify-content: center;
    justify-items: center;
    position: relative;
}

section h1 {
    font-size: 2em;
    color: #444;
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

.lang {
    display: none;
}

.lang.active {
    display: block;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 3em;
    }

    header p {
        font-size: 1.5em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}