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

body {
    background-color: #ebe8e1;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.invitation {
    background-color: #f2f2f2;
    text-align: center;
    max-width: 700px;
    padding: 80px 50px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
}

.brand {
    font-family: 'Bodoni Moda', serif;
    font-size: 90px;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 40px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Form Styles */
#rsvpForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.name-input {
    font-family: 'Great Vibes', cursive;
    font-size: 75px;
    font-weight: 400;
    text-align: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    outline: none;
    margin-bottom: 20px;
    color: #000;
    padding: 0 10px;
    line-height: 1.2;
}

.name-input::placeholder {
    color: rgba(0,0,0,0.2);
    font-family: 'Great Vibes', cursive;
}

.email-input {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    width: 250px;
    padding: 8px;
    letter-spacing: 2px;
    outline: none;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #000;
}

.email-input::placeholder {
    color: rgba(0,0,0,0.4);
}

.submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 12px 40px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: transparent;
    color: #000;
}

.collection {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 50px;
    margin-top: 10px;
    line-height: 1.4;
    text-transform: uppercase;
}

.reveal {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.date {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 55px;
    line-height: 1.6;
    text-transform: uppercase;
}

.website {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .invitation {
        padding: 30px 15px;
        width: 85%;
    }

    .brand {
        font-size: 40px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .name-input {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .collection {
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .reveal {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .date {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .website {
        font-size: 12px;
    }
}
