/* Общие настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fcf9f7;
    color: #3d3d3d;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 680px;
    width: 100%;
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Фото */
.photo {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Заголовки */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2b2b2b;
    margin-bottom: 6px;
}
.names {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    color: #b48c7c;
    margin-bottom: 18px;
    font-style: italic;
}

/* Информация о дате и месте */
.info {
    text-align: center;
    background: #faf6f3;
    padding: 18px 12px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.info p {
    margin: 4px 0;
    font-size: 1.05rem;
}
.date {
    font-weight: 500;
}
.place {
    font-weight: 300;
    color: #5e5e5e;
}

/* Форма */
.wedding-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
}
.form-group input[type="text"],
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafaf9;
    transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b48c7c;
    box-shadow: 0 0 0 3px rgba(180, 140, 124, 0.2);
}

.radio-group {
    display: flex;
    gap: 24px;
    padding: 8px 0;
}
.radio-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Кнопка отправки */
.btn-submit {
    background: #b48c7c;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 8px;
}
.btn-submit:hover {
    background: #a07463;
    transform: scale(1.02);
}
.btn-submit:active {
    transform: scale(0.98);
}

/* Стили для таблицы и дополнительных кнопок удалены */

/* Адаптив */
@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }
    .title {
        font-size: 1.6rem;
    }
    .names {
        font-size: 1.4rem;
    }
    .radio-group {
        flex-direction: column;
        gap: 8px;
    }
}