body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #5a5a5a;
    text-align: center;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #f8f1e9, #e8d5b7);
    color: #8b4513;
    padding: 80px 20px;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text fill="%23f0e68c" font-size="20" y="50%">❀</text></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

h1 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 4em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 400;
    margin: 10px 0 0 0;
    color: #a0522d;
}

p {
    font-size: 1.4em;
    font-weight: 300;
    margin-top: 20px;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #8b4513;
    margin-bottom: 40px;
}

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

img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

#rsvp h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #8b4513;
    margin-bottom: 30px;
}

form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #f0e68c;
}

label {
    display: block;
    margin-top: 20px;
    font-weight: 400;
    color: #5a5a5a;
    text-align: left;
}

input[type="text"], input[type="email"], select, input[type="text"]:not([name="other-dietary"]) {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 2px solid #e8d5b7;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, select:focus, input[type="text"]:not([name="other-dietary"]):focus {
    border-color: #8b4513;
    outline: none;
}

input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

button {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-family: 'Playfair Display', serif;
    margin-top: 30px;
    transition: background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

button:hover {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    transform: translateY(-2px);
}