/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #0a0a0a;
    color: white;
}

.text-gradient {
    background: linear-gradient(45deg, #4ADE80, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1 !important;
    visibility: visible !important;
}


h1, h2, h3 {
    font-family: 'Gilda Display', serif;
}

.hero-content h1 {
    opacity: 1 !important; /* Force visibility */
    visibility: visible !important;
    transform: none !important; /* Prevent any transform animations */
    position: relative;
    z-index: 10; /* Ensure it's above other elements */
}

.hero-content {
    z-index: 5;
    position: relative;
}

/* Wave Shape */
.wave-shape {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 100" xmlns="http://www.w3.org/2000/svg"><path d="M 0 50 Q 250 0 500 50 T 1000 50 L 1000 100 L 0 100 Z" fill="%230a0a0a"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glassmorphism:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #4ADE80, #22C55E);
    color: #0a0a0a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn-primary:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, #4ADE80, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

/* @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
} */