html.overflow-hidden, body.overflow-hidden { overflow: hidden; height: 100%; } :root { --font-family: 'Exo 2', sans-serif; --primary: #ff2d95; --secondary: #ff6b6b; --accent: #ffb703; --bg-dark: #0e0a14; --bg-light: #fff9fb; --text-light: #fff9fb; --text-dark: #0e0a14; } /* CSS Reset */ * { font-family: var(--font-family); margin: 0; padding: 0; box-sizing: border-box; } html, body { margin: 0; padding: 0; box-sizing: border-box; } /* Reset default link styles */ a { color: inherit; text-decoration: none; } /* Reset button styles */ button { background: none; border: none; padding: 0; margin: 0; font: inherit; color: inherit; cursor: pointer; } /* Reset list styles */ ul, ol { list-style: none; } /* Reset heading margins */ h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: inherit; } /* Reset paragraph margins */ p { margin: 0; } /* Neon Theme Styles */ body { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%); background-attachment: fixed; color: var(--text-light); } .card { background: rgba(255, 249, 251, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 45, 149, 0.3); box-shadow: 0 8px 32px rgba(255, 45, 149, 0.2); } .btn-primary { background: linear-gradient(45deg, var(--primary), var(--secondary)); box-shadow: 0 0 20px rgba(255, 45, 149, 0.5); animation: heartbeat 2s ease-in-out infinite; } /* Animations */ @keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .animate-slide-up { animation: slideUp 0.6s ease-out; } .animate-fade-in { animation: fadeIn 0.8s ease-out; } /* Accessibility */ .focus-visible:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } /* Button styles */ .btn { min-height: 44px; padding: 12px 24px; border-radius: 8px; font-weight: 700; transition: all 0.3s ease; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; } .btn-primary { background: var(--primary); color: var(--text-light); } .btn-secondary { background: var(--secondary); color: var(--text-dark); } .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .btn:active { transform: translateY(0); } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-dark); } ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; } /* Navbar styles */ .nav-bg { background-color: var(--bg-dark) !important; border-color: var(--primary) !important; } /* Footer styles */ .footer-bg { background-color: var(--bg-dark) !important; border-color: var(--primary) !important; } /* Navigation link styles */ nav a { color: var(--text-light); transition: opacity 0.3s ease; } nav a:hover { opacity: 0.8; } /* Mobile menu link styles */ .mobile-nav-link { color: var(--text-light); transition: opacity 0.3s ease; } .mobile-nav-link:hover { opacity: 0.8; } /* Footer link styles */ footer a { color: var(--text-light); transition: opacity 0.3s ease; } footer a:hover { opacity: 1; } /* Sticker styles */ .sticker { background: var(--accent); color: var(--text-dark); border-radius: 20px; padding: 4px 12px; font-weight: 700; display: inline-block; transform: rotate(-5deg); transition: transform 0.3s ease; } .sticker:hover { transform: rotate(5deg) scale(1.1); } /* Organizer photo styles */ .organizer-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); box-shadow: 0 0 20px rgba(255, 45, 149, 0.3); } /* Logo styles */ .logo-img { height: 50px; } /* Mobile menu styles */ .mobile-menu { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%); } .mobile-menu.open { transform: translateX(0); } /* Layout & Utility Classes */ .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } .max-w-4xl { max-width: 56rem; margin: 0 auto; } .max-w-6xl { max-width: 72rem; margin: 0 auto; } .max-w-7xl { max-width: 80rem; margin: 0 auto; } .mx-auto { margin-left: auto; margin-right: auto; } .text-center { text-align: center; } .text-left { text-align: left; } /* Flexbox */ .flex { display: flex; } .flex-col { flex-direction: column; } .flex-row { flex-direction: row; } .items-center { align-items: center; } .items-start { align-items: flex-start; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .flex-1 { flex: 1; } .flex-shrink-0 { flex-shrink: 0; } /* Grid */ .grid { display: grid; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } /* Spacing */ .p-2 { padding: 0.5rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; } .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .px-8 { padding-left: 2rem; padding-right: 2rem; } .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; } .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; } .py-8 { padding-top: 2rem; padding-bottom: 2rem; } .py-12 { padding-top: 3rem; padding-bottom: 3rem; } .py-16 { padding-top: 4rem; padding-bottom: 4rem; } .py-20 { padding-top: 5rem; padding-bottom: 5rem; } .pb-6 { padding-bottom: 1.5rem; } .pb-8 { padding-bottom: 2rem; } .pt-8 { padding-top: 2rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; } /* Additional margin utilities that might be missing */ .m-0 { margin: 0; } .m-auto { margin: auto; } .my-4 { margin-top: 1rem; margin-bottom: 1rem; } .my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; } .my-8 { margin-top: 2rem; margin-bottom: 2rem; } .mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; } .mr-2 { margin-right: 0.5rem; } .mr-3 { margin-right: 0.75rem; } .ml-4 { margin-left: 1rem; } .ml-10 { margin-left: 2.5rem; } /* Sizing */ .w-full { width: 100%; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-8 { width: 2rem; } .w-12 { width: 3rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-8 { height: 2rem; } .h-12 { height: 3rem; } .h-16 { height: 4rem; } .min-h-screen { min-height: 100vh; } /* Typography */ .text-sm { font-size: 0.875rem; } .text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; } .font-bold { font-weight: 700; } .font-medium { font-weight: 500; } .text-white { color: white; } .opacity-70 { opacity: 0.7; } .opacity-80 { opacity: 0.8; } .opacity-90 { opacity: 0.9; } /* Borders */ .border { border-width: 1px; } .border-b { border-bottom-width: 1px; } .border-t { border-top-width: 1px; } .border-current { border-color: currentColor; } .border-pink-500 { border-color: var(--primary); } .border-opacity-20 { border-color: rgba(255, 45, 149, 0.2); } .border-opacity-30 { border-color: rgba(255, 45, 149, 0.3); } .rounded { border-radius: 0.25rem; } .rounded-md { border-radius: 0.375rem; } .rounded-lg { border-radius: 0.5rem; } /* Positioning */ .relative { position: relative; } .absolute { position: absolute; } .fixed { position: fixed; } .sticky { position: sticky; } .top-0 { top: 0; } .inset-0 { top: 0; right: 0; bottom: 0; left: 0; } .z-50 { z-index: 50; } /* Display */ .block { display: block; } .inline-block { display: inline-block; } .inline-flex { display: inline-flex; } .hidden { display: none; } /* Transforms */ .transform { transform: var(--tw-transform); } .transition-all { transition-property: all; } .transition-transform { transition-property: transform; } .duration-300 { transition-duration: 300ms; } .duration-500 { transition-duration: 500ms; } .ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } .translate-x-full { transform: translateX(100%); } .hover\:opacity-80:hover { opacity: 0.8; } .hover\:opacity-100:hover { opacity: 1; } .hover\:scale-105:hover { transform: scale(1.05); } /* Background utilities */ .bg-opacity-90 { background-color: rgba(14, 10, 20, 0.9); } .backdrop-blur-md { backdrop-filter: blur(12px); } /* Overflow */ .overflow-hidden { overflow: hidden; } /* Space utilities */ .space-y-2 > * + * { margin-top: 0.5rem; } .space-y-3 > * + * { margin-top: 0.75rem; } .space-y-4 > * + * { margin-top: 1rem; } .space-x-4 > * + * { margin-left: 1rem; } /* Screen reader only */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } /* Responsive breakpoints */ @media (min-width: 640px) { .sm\:text-2xl { font-size: 1.5rem; } .sm\:text-4xl { font-size: 2.25rem; } .sm\:text-6xl { font-size: 3.75rem; } .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .sm\:flex-row { flex-direction: row; } .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } } @media (min-width: 768px) { .md\:block { display: block; } .md\:hidden { display: none; } .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .md\:col-span-2 { grid-column: span 2 / span 2; } } @media (min-width: 1024px) { .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } } @media (min-width: 1280px) { .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } } /* Missing utility classes */ .max-w-2xl { max-width: 42rem; margin: 0 auto; } .max-w-3xl { max-width: 48rem; margin: 0 auto; } /* Missing color utilities */ .text-green-400 { color: #4ade80; } .text-red-400 { color: #f87171; } .text-pink-400 { color: #f472b6; } /* Box-sizing for pseudo-elements */ *, *::before, *::after { box-sizing: border-box; } /* Fix button styling */ .btn { text-decoration: none; box-sizing: border-box; } /* Fix grid layouts */ .grid { display: grid; } /* Additional spacing that might be missing */ .space-x-2 > * + * { margin-left: 0.5rem; } /* Missing baseline alignment */ .items-baseline { align-items: baseline; } /* Missing focus styles */ .focus-visible:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } /* Fix min-width classes */ .min-w-0 { min-width: 0; } /* Fix line-height */ .leading-tight { line-height: 1.25; } .leading-relaxed { line-height: 1.625; } /* Fix any missing italic styles */ .italic { font-style: italic; } /* Flex gap fallback for older browsers */ .flex.gap-4 > * + * { margin-left: 1rem; } .flex.flex-col.gap-4 > * + * { margin-left: 0; margin-top: 1rem; } /* Responsive flex gap fallback */ @media (min-width: 640px) { .flex.sm\:flex-row.gap-4 > * + * { margin-top: 0; margin-left: 1rem; } } /* Ensure buttons display properly */ .btn { display: inline-flex; align-items: center; justify-content: center; } /* Fix hero section spacing specifically */ .hero-buttons { margin-top: 2rem; } .hero-subtitle { margin-bottom: 2rem !important; } /* Reduced motion */ @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
.faq-content { padding: 1rem; }
