/* Fonts & Base */
body {
    font-family: 'Manrope', sans-serif;
}

h1,
h2,
h3,
.headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Hover Effect */
a:hover {
    transform: translateY(-4px);
}

/* Material Icons */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Text Slider */
.slider-word {
    font-size: 120px;
    font-weight: 900;
    color: white;
    text-align: center;
    display: block;
    letter-spacing: -2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    height: 140px;
    line-height: 140px;
    margin-bottom: 10px;
}

.text-slider-container {
    height: 140px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.text-slider {
    position: relative;
    animation: slideUpSmooth 10s infinite;
}

/* Animation */
@keyframes slideUpSmooth {
    0% { transform: translateY(0); opacity: 1; }
    18% { transform: translateY(0); opacity: 1; }
    23% { transform: translateY(-150px); opacity: 1; }
    43% { transform: translateY(-150px); opacity: 1; }
    48% { transform: translateY(-300px); opacity: 1; }
    68% { transform: translateY(-300px); opacity: 1; }
    73% { transform: translateY(-450px); opacity: 1; }
    93% { transform: translateY(-450px); opacity: 1; }
    98% { transform: translateY(-600px); opacity: 0; }
    99% { transform: translateY(0); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .slider-word {
        font-size: 60px;
        height: 70px;
        line-height: 70px;
    }

    .text-slider-container {
        height: 70px;
    }
}

/* Horizontal Infinite Marquee Scroll */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}
