/* Fun Fiesta Theme */
:root { --primary: #FF6347; --secondary: #FFD700; --light: #FFF5F0; }
body { font-family: 'Poppins', sans-serif; background: var(--light); }
.hero-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 50px 20px; background: linear-gradient(135deg, #FF6347 0%, #FF8C00 50%, #FFD700 100%); }
.hero-title { font-size: 4rem; color: white; margin-bottom: 10px; font-weight: 700; text-shadow: 2px 2px 0 #FF6347; }
.hero-subtitle { font-size: 1.5rem; color: white; margin-bottom: 30px; }
.party-details { margin-bottom: 30px; }
.detail-item { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 30px; margin: 5px; color: white; }
.btn-rsvp { background: var(--secondary); color: var(--primary); padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; }
.rsvp-section { padding: 80px 0; background: white; }
.rsvp-card { background: var(--light); padding: 40px; border-radius: 20px; border: 2px solid var(--primary); }
.rsvp-card h2 { color: var(--primary); text-align: center; margin-bottom: 30px; }
.form-control { border: 2px solid var(--primary); border-radius: 10px; padding: 12px; }
.btn-submit { width: 100%; background: var(--primary); color: white; border: none; padding: 15px; border-radius: 10px; font-weight: 600; cursor: pointer; }
