/* Egyedi stílusok - Tailwind kiegészítéseként */

/* Alapértelmezett smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar stílus */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: #22222e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}

/* Selection stílus */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #ffffff;
}

/* Animációk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Fade-in animáció osztály */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Glow effekt */
.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Háttér effektek */
.bg-pulse {
    animation: pulse-slow 4s ease-in-out infinite;
}

/* Kártya hover effekt */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

/* Gradient szöveg */
.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Input focus állapot */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Link hover underline effekt */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobil menü átmenet */
.mobile-menu-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-menu-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Pricing kártya népszerű badge */
.popular-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
}

/* Scroll indikátor animáció */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Loading spinner (ha szükséges) */
.spinner {
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top-color: #00d4ff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Glassmorphism effekt a headerhez */
.glass {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Technikai adatok grid responsive fix */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing card scale effekt mobil nézeten */
@media (max-width: 768px) {
    .pricing-popular {
        transform: scale(1);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* Focus visible stílusok akadálymentességhez */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* Tartalom konténer max-width */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero háttér animáció */
.hero-bg-animation {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

/* Szekció elválasztó */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #22222e, transparent);
}
