/* Custom Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
}

/* Geometric shapes */
.geometric-shape {
    position: absolute;
    pointer-events: none;
}

.shape-circle {
    border-radius: 50%;
}

.shape-square {
    border-radius: 8px;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

/* Custom animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

.animate-pulse-soft {
    animation: pulse-soft 4s ease-in-out infinite;
}

/* Smooth transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FFF8F5;
}

::-webkit-scrollbar-thumb {
    background: #720E1E;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a0a16;
}

/* Focus styles */
*:focus-visible {
    outline: 3px solid #FADADD;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .shadow-hard {
        box-shadow: 4px 4px 0px #000;
    }
}
