/* ============================================
   Wanna Be Delulu - Styles
   Converted from Tailwind CSS
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-weight: 600;
}

/* Utility Classes - Colors */
.bg-dark {
    background-color: #0a0a0a;
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-purple-300 {
    color: #d8b4fe;
}

.text-purple-400 {
    color: #c084fc;
}

/* Background Effects */
.bg-gradient {
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.2), rgba(131, 24, 67, 0.1), rgba(21, 94, 117, 0.2));
}

.bg-purple-blur {
    background-color: rgba(147, 51, 234, 0.1);
    filter: blur(64px);
}

.bg-pink-blur {
    background-color: rgba(219, 39, 119, 0.1);
    filter: blur(64px);
}

/* Layout */
.min-h-screen {
    min-height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-20 {
    top: 5rem;
}

.left-20 {
    left: 5rem;
}

.bottom-20 {
    bottom: 5rem;
}

.right-20 {
    right: 5rem;
}

.z-10 {
    z-index: 10;
}

/* Sizing */
.w-64 {
    width: 16rem;
}

.h-64 {
    height: 16rem;
}

.w-96 {
    width: 24rem;
}

.h-96 {
    height: 24rem;
}

.w-full {
    width: 100%;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

/* Spacing */
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.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;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

/* Borders */
.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styling */
.flex-1 {
    flex: 1;
}

input[type="email"] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

input[type="email"]::placeholder {
    color: #6b7280;
}

input[type="email"]:focus {
    outline: none;
    border-color: #a855f7;
}

button[type="submit"] {
    background: linear-gradient(to right, #9333ea, #db2777);
    color: #ffffff;
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

button[type="submit"]:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px -10px rgba(168, 85, 247, 0.5);
}

button[type="submit"]:active {
    transform: scale(0.95);
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Grid */
.grid {
    display: grid;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

/* Font Sizes */
.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-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

/* Font Weight */
.font-medium {
    font-weight: 500;
}

/* Transitions */
.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Links */
a {
    text-decoration: none;
}

a:hover {
    color: #c084fc;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.telegram-highlight {
    background: linear-gradient(135deg, #9333ea, #db2777);
    border-color: transparent;
    animation: pulse-glow 2s infinite;
}

/* Animations */
@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(147, 51, 234, 0.8);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-scale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes success-pop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 1s;
}

/* Page Load Animations */
.logo-animation {
    animation: fade-in-scale 0.8s ease-out forwards;
}

.headline-animation {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.2s forwards;
}

.subheadline-animation {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

.body-animation {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.4s forwards;
}

.form-animation {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.5s forwards;
}

.microcopy-animation {
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.6s forwards;
}

.pillars-animation {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.7s forwards;
}

.footer-animation {
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.8s forwards;
}

.success-animation {
    animation: success-pop 0.6s ease-out forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Form Messages */
#form-message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

#form-message.success {
    background-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

#form-message.error {
    background-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
    }
    
    .md\:text-5xl {
        font-size: 3rem;
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:text-6xl {
        font-size: 3.75rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 639px) {
    .text-4xl {
        font-size: 1.875rem;
    }
    
    .text-5xl {
        font-size: 2.25rem;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .gap-8 {
        gap: 1.5rem;
    }
    
    /* Reduce blur effects on mobile for performance */
    .bg-purple-blur,
    .bg-pink-blur {
        filter: blur(32px);
        opacity: 0.6;
    }
    
    .w-64,
    .h-64 {
        width: 8rem;
        height: 8rem;
    }
    
    .w-96,
    .h-96 {
        width: 12rem;
        height: 12rem;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
