/* Birthday Theme - Mobile First */
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Pacifico&display=swap');
body {
    background: linear-gradient(135deg, #ffe0ec 0%, #fffbe6 100%);
    min-height: 100vh;
    margin: 0;
    font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
    color: #4d2c1e;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Pacifico', cursive, 'Segoe UI', Arial, sans-serif;
    color: #ff69b4;
    margin-top: 0;
}

.birthday-confetti {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* Add a fun border to main containers */
.invite-container, .ecard-main-container, .ecard-container {
    border: 3px dashed #ffb347;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 6px 32px rgba(255,105,180,0.08);
}

/* Buttons */
.invite-btn, .ecard-rsvp-btn, .rsvp-btn {
    background: linear-gradient(90deg, #ff69b4 60%, #ffb347 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255,105,180,0.12);
    transition: background 0.2s, transform 0.2s;
}
.invite-btn:hover, .ecard-rsvp-btn:hover, .rsvp-btn:hover {
    background: linear-gradient(90deg, #d2691e 60%, #ffb347 100%);
    transform: scale(1.05);
}

/* Add some fun to RSVP thank you */
.thank-you {
    font-family: 'Pacifico', cursive, 'Segoe UI', Arial, sans-serif;
    color: #ff69b4;
    font-size: 2.2rem;
    margin-top: 1.5rem;
    text-shadow: 2px 2px 0 #fffbe6, 4px 4px 0 #ffb347;
}

/* Responsive adjustments */
@media (min-width: 700px) {
    .invite-container, .ecard-main-container, .ecard-container {
        max-width: 500px;
    }
}

.reet-logo {
    font-family: 'Pacifico', cursive, Arial, sans-serif;
    font-weight: bold;
    font-size: x-large;
    text-shadow: 2px 2px 3px pink;
    position: static;        /* Remove absolute positioning */
    margin: 0 auto;          /* Center if needed */
    left: unset;
    top: unset;
    padding: 1.2rem 2.2rem 1.2rem 1.2rem;
}

header {
    position: relative;
    min-height: 60px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; 
}
main[role="main"] {
    margin-top: 3.5rem;
}