/* Landing Page Modern Styles */

/* Hero Section */
.landing-hero {
    position: relative;
    z-index: 10;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: transparent;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .sparkle-icon {
    color: #fbbf24;
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e9d5ff, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle .highlight {
    color: #c084fc;
    font-weight: 600;
}

/* Stats Section */
.stats-section-landing {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stat-card-landing {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.stat-icon-landing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.stat-value-landing {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label-landing {
    color: #9ca3af;
}

/* Projects Grid */
.projects-section-landing {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title .gradient-text {
    background: linear-gradient(to right, #c084fc, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.project-card-landing {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-landing:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image-container {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card-landing:hover .project-image-container img {
    transform: scale(1.1);
}

.project-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
}

.project-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title-landing {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.project-description-landing {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.explore-btn {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.more-projects-btn {
    background: linear-gradient(to right, #9333ea, #06b6d4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.more-projects-btn:hover {
    background: linear-gradient(to right, #7e22ce, #0891b2);
    transform: scale(1.05);
}

/* Features Section */
.features-section-landing {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper.purple {
    background: #9333ea;
}

.feature-icon-wrapper.cyan {
    background: #06b6d4;
}

.feature-icon-wrapper.green {
    background: #10b981;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #d1d5db;
}

.feature-showcase {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.showcase-item-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem;
}

.showcase-item-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.showcase-item-label {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* CTA Section */
.cta-section-landing {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Smooth transitions for animated elements */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.project-card-landing:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Category Colors */
.category-purple { background: #9333ea; }
.category-green { background: #10b981; }
.category-blue { background: #3b82f6; }
.category-orange { background: #f97316; }
.category-cyan { background: #06b6d4; }
.category-red { background: #ef4444; }
.category-yellow { background: #eab308; }
.category-indigo { background: #6366f1; }
.category-pink { background: #ec4899; }
.category-teal { background: #14b8a6; }
.category-lime { background: #84cc16; }
.category-emerald { background: #10b981; }