Changed around line 1
+ :root {
+ --primary: #ff3366;
+ --secondary: #ff758c;
+ --bg: #1a1a2e;
+ }
+
+ * {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: linear-gradient(45deg, var(--bg), #16213e);
+ color: #fff;
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ .hero {
+ position: relative;
+ height: 70vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ overflow: hidden;
+ }
+
+ .hearts {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ }
+
+ .heart {
+ position: absolute;
+ font-size: 2rem;
+ opacity: 0;
+ }
+
+ @keyframes float {
+ 0% { transform: translateY(100vh) scale(0); opacity: 0; }
+ 50% { opacity: 1; }
+ 100% { transform: translateY(-50vh) scale(1.5); opacity: 0; }
+ }
+
+ .animate-float {
+ animation: float 8s infinite linear;
+ }
+ .delay-1 { animation-delay: 2s; }
+ .delay-2 { animation-delay: 4s; }
+
+ .hero-content {
+ text-align: center;
+ z-index: 1;
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(to right, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: text-glow 2s ease-in-out infinite alternate;
+ }
+
+ @keyframes text-glow {
+ from { text-shadow: 0 0 10px var(--primary); }
+ to { text-shadow: 0 0 20px var(--secondary); }
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ opacity: 0.9;
+ }
+
+ .invitation {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 15px;
+ backdrop-filter: blur(10px);
+ }
+
+ .time-selector {
+ display: grid;
+ gap: 1rem;
+ margin: 2rem 0;
+ }
+
+ .time-option {
+ background: none;
+ border: 2px solid var(--primary);
+ color: white;
+ padding: 1rem;
+ font-size: 1.2rem;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .time-option:hover {
+ background: var(--primary);
+ transform: translateY(-3px);
+ }
+
+ .time-option.selected {
+ background: var(--primary);
+ box-shadow: 0 0 15px var(--primary);
+ }
+
+ .rsvp-form {
+ max-width: 500px;
+ margin: 0 auto;
+ opacity: 0;
+ transform: translateY(20px);
+ transition: all 0.5s ease;
+ }
+
+ .form-group {
+ margin: 1.5rem 0;
+ }
+
+ input, textarea {
+ width: 100%;
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.1);
+ border: none;
+ border-radius: 10px;
+ color: white;
+ margin-top: 0.5rem;
+ }
+
+ button[type="submit"] {
+ background: linear-gradient(to right, var(--primary), var(--secondary));
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ color: white;
+ font-weight: bold;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ button[type="submit"]:hover {
+ transform: scale(1.05);
+ }
+
+ .confirmation {
+ text-align: center;
+ padding: 4rem 0;
+ display: none;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ opacity: 0.7;
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2.5rem; }
+ .tagline { font-size: 1.2rem; }
+ .time-selector { grid-template-columns: 1fr; }
+ }