* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sorts Mill Goudy', serif;
    background-color: #F0E6DE;
    color: #4A2C2A;
    line-height: 1.6;
    padding: 20px;
}

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

/* Header */
header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

header h2 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

header h3 {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

header h4 {
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 0.1em;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.story-image {
    width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: left;
}

/* Details Section */
.details-section {
    margin-bottom: 50px;
}

.details-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.details-section strong {
    font-weight: bold;
}

/* RSVP Section */
.rsvp-section {
    margin-top: 50px;
}

.rsvp-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1.5px solid #4A2C2A;
    background-color: transparent;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1rem;
    color: #4A2C2A;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
    border-color: #6B4542;
}

textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
}

input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

button[type="submit"] {
    display: block;
    margin: 30px auto 0;
    padding: 12px 40px;
    background-color: transparent;
    border: 1.5px solid #4A2C2A;
    color: #4A2C2A;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #4A2C2A;
    color: #F0E6DE;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header h2 {
        font-size: 1.8rem;
    }

    header h3 {
        font-size: 1.5rem;
    }

    header h4 {
        font-size: 1.3rem;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-text p {
        font-size: 1rem;
    }

    .details-section p {
        font-size: 1rem;
    }
}