/*
Theme Name: Graph Theme
Theme URI: https://example.com/graph-theme
Author: Antigravity
Author URI: https://example.com
Description: Individuelle Weblösungen aus Hamm. Converted from HTML template.
Version: 1.0
Text Domain: graph
*/

/* ===================================
   Graph Website - Custom Animations
   Nur für Animationen die nicht mit 
   Tailwind CSS darstellbar sind
   =================================== */

/* Float Animation für Hero Grafik-Elemente */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.element-1 {
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    animation: float 8s ease-in-out infinite 1s;
}

.element-3 {
    animation: float 7s ease-in-out infinite 2s;
}

/* Scroll Indicator Animation */
@keyframes scrollLine {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.scroll-line {
    animation: scrollLine 2s ease-in-out infinite;
}

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