137 lines
6.0 KiB
PHP
137 lines
6.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fi">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hydro-Premium: Autosi uusi aikakausi</title>
|
|
<meta name="description" content="Emme vain pese autoasi. Me palautamme sen sielun. Suomen eksklusiivisin viimeistely.">
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lexend:wght@700;800&display=swap" rel="stylesheet">
|
|
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
|
|
|
|
<style>
|
|
body {
|
|
background-color: #050505;
|
|
color: white;
|
|
font-family: 'Inter', sans-serif;
|
|
overflow-x: hidden;
|
|
}
|
|
.font-lexend { font-family: 'Lexend', sans-serif; }
|
|
.hero-bg {
|
|
background-image: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
|
|
}
|
|
.glass-morphism {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
.electric-cyan-glow {
|
|
box-shadow: 0 0 15px #00FFFF, 0 0 30px #00FFFF;
|
|
}
|
|
.liquid-reveal-char {
|
|
display: inline-block;
|
|
opacity: 0;
|
|
transform: translateY(50px) scale(0.8) rotateZ(-15deg);
|
|
filter: blur(10px);
|
|
transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
|
|
transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
|
|
filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="antialiased">
|
|
|
|
<main class="hero-bg min-h-screen w-full flex items-center justify-center text-center px-4 overflow-hidden">
|
|
<div class="relative z-10 flex flex-col items-center space-y-8">
|
|
<h1 id="main-headline" class="font-lexend text-5xl md:text-8xl lg:text-9xl font-extrabold tracking-tighter text-white">
|
|
<span class="whitespace-nowrap">HYDRO-PREMIUM:</span>
|
|
<span class="whitespace-nowrap text-gray-300">Autosi uusi aikakausi.</span>
|
|
</h1>
|
|
|
|
<h2 id="sub-headline" class="font-lexend text-2xl md:text-5xl lg:text-6xl font-bold tracking-tight text-transparent bg-clip-text bg-gradient-to-r from-[#00FFFF] to-[#C0C0C0] opacity-0" style="transition: opacity 1s ease-in-out 1s;">
|
|
PUHTAUS ON TAIDETTA
|
|
</h2>
|
|
|
|
<p id="tagline" class="max-w-2xl text-base md:text-lg text-gray-400 tracking-wide leading-relaxed opacity-0" style="transition: opacity 1s ease-in-out 1.5s;">
|
|
Emme vain pese autoasi. Me palautamme sen sielun. Suomen eksklusiivisin viimeistely.
|
|
</p>
|
|
|
|
<div id="cta-button-container" class="pt-8 opacity-0" style="transition: opacity 1s ease-in-out 2s;">
|
|
<button id="magnetic-button" class="group glass-morphism font-lexend text-lg md:text-xl font-bold rounded-xl px-8 py-4 flex items-center space-x-3 transition-all duration-300 hover:electric-cyan-glow hover:scale-105 hover:border-cyan-400">
|
|
<span>VARAA ELÄMYS</span>
|
|
<i data-lucide="arrow-right" class="w-6 h-6 transition-transform duration-300 group-hover:translate-x-1"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Subtle decorative elements -->
|
|
<div class="absolute top-0 left-0 w-full h-full opacity-20">
|
|
<div class="absolute top-[10%] left-[5%] w-48 h-48 bg-cyan-500 rounded-full filter blur-3xl opacity-20"></div>
|
|
<div class="absolute bottom-[10%] right-[5%] w-48 h-48 bg-gray-500 rounded-full filter blur-3xl opacity-20"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
lucide.createIcons();
|
|
|
|
// --- Liquid Reveal for H2 ---
|
|
const headline2 = document.getElementById('sub-headline');
|
|
const originalText = headline2.innerText;
|
|
headline2.innerHTML = originalText.split('').map(char => {
|
|
return char === ' ' ? ' ' : `<span class="liquid-reveal-char">${char}</span>`;
|
|
}).join('');
|
|
|
|
// --- Staggered Animations ---
|
|
gsap.timeline()
|
|
.to('#sub-headline', { autoAlpha: 1, duration: 0.1 })
|
|
.to(".liquid-reveal-char", {
|
|
opacity: 1,
|
|
transform: "translateY(0) scale(1) rotateZ(0)",
|
|
filter: "blur(0)",
|
|
stagger: {
|
|
each: 0.05,
|
|
from: "random"
|
|
},
|
|
delay: 0.5
|
|
})
|
|
.to("#tagline", { autoAlpha: 1, duration: 1 }, "-=0.5")
|
|
.to("#cta-button-container", { autoAlpha: 1, duration: 1 }, "-=0.5");
|
|
|
|
|
|
// --- Magnetic Button ---
|
|
const button = document.getElementById('magnetic-button');
|
|
const strength = 50;
|
|
|
|
button.addEventListener('mousemove', (e) => {
|
|
const { offsetX, offsetY, target } = e;
|
|
const { clientWidth, clientHeight } = target;
|
|
const x = (offsetX / clientWidth - 0.5) * strength;
|
|
const y = (offsetY / clientHeight - 0.5) * strength;
|
|
gsap.to(button, {
|
|
x: x,
|
|
y: y,
|
|
duration: 0.7,
|
|
ease: "elastic.out(1, 0.3)"
|
|
});
|
|
});
|
|
|
|
button.addEventListener('mouseleave', () => {
|
|
gsap.to(button, {
|
|
x: 0,
|
|
y: 0,
|
|
duration: 1,
|
|
ease: "elastic.out(1, 0.3)"
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |