﻿/* CryptoArbitrage.Web/wwwroot/css/landing.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Base font */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Headings font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        filter: blur(60px);
    }

    50% {
        opacity: 0.8;
        filter: blur(80px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.glow-animation {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Price card hover effect */
.price-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; /* overflow: hidden yerine visible yapıyoruz ki badge görünsün */
}

    .price-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
        border-radius: inherit;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .price-card:hover::before {
        opacity: 1;
    }

    .price-card:hover {
        transform: translateY(-5px);
    }

/* Feature card animation */
.feature-card {
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}

/* Smooth transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.5);
    }

.dark ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.dark ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
}

    .dark ::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

/* Hero gradient background */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.1));
}

.dark .hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.1));
}

/* Button hover effects */
.btn-primary {
    background: linear-gradient(to right, #7c3aed, #4f46e5);
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.25);
        transform: translateY(-2px);
    }
