
body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f5f0;
    color: #5d4037;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 50px 0;
    border-bottom: 1px solid #efebe9;
}

header h1 {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 3em;
    margin: 0;
    color: #d32f2f;
}

header .date {
    font-size: 1.2em;
    margin-top: 10px;
}

header .place {
    font-size: 1.1em;
    margin-top: 10px;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.invitation h2, .gallery h2, .location h2, .account-info h2 {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #8d6e63;
}

.invitation p {
    font-size: 1.1em;
    line-height: 1.8;
}

.invitation .names {
    margin-top: 30px;
}

.invitation .names .name {
    font-weight: bold;
    font-size: 1.2em;
}

.gallery-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0; /* 지도 API 로딩 전 임시 배경 */
    border-radius: 10px;
    margin-bottom: 20px;
}

.account-info .account-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.account-info .account {
    padding: 20px;
    border: 1px solid #d7ccc8;
    border-radius: 10px;
    background-color: #fff;
    width: 280px;
}

.account-info .account h3 {
    font-size: 1.2em;
    color: #8d6e63;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #efebe9;
    font-size: 0.9em;
}
