body {
    background-color: #f7f3f0;
    color: #000000;
    font-family: system-ui, -apple-system, sans-serif;
    scroll-padding-top: 100px;
}

.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd12e' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #ffd12e;
    color: #000000;
    box-shadow: 3px 3px 0px #000000;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000000;
}

.input-primary {
    border: 2px solid #000000;
    background-color: #ffffff;
    box-shadow: 3px 3px 0px #000000;
    transition: all 0.2s ease-in-out;
}

.input-primary:focus {
    outline: none;
    border-color: #ffd12e;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000000;
}

.feature-card {
    border: 2px solid #000000;
    background-color: #ffffff;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slide-up 0.3s ease-out;
}

/* Dark theme gradients */
.dark-gradient {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Hero image animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    animation: float 4s ease-in-out infinite;
}

/* Additional decorative animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.hero-pattern::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,209,46,0.1) 0%, rgba(255,209,46,0) 70%);
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .hero-image-container {
        margin-top: -2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-full-width {
        width: 100%;
    }
    
    .mobile-center {
        text-align: center;
        justify-content: center;
    }
    
    .mobile-hidden {
        display: none;
    }
    
    .mobile-mt-0 {
        margin-top: 0;
    }
    
    .mobile-mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .mobile-p-4 {
        padding: 1rem;
    }
}
