/* Custom styles for Nyokos Touch website */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Custom selection color */
::selection {
    background-color: #2DD4BF;
    color: #0B1D3A;
}

/* Image hover effect */
img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Button hover effects */
button, a {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid #2DD4BF;
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-split {
        min-height: auto;
    }
    
    .hero-split > div:first-child {
        padding: 80px 20px 40px;
    }
    
    .hero-split > div:last-child {
        min-height: 50vh;
    }
}

/* Print styles */
@media print {
    nav, .mobile-menu, button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-split {
        min-height: auto;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
