<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HYFIZ - Premium Fizz Drinks</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}
body{
background:#080808;
color:white;
overflow-x:hidden;
}
html{
scroll-behavior:smooth;
}
:root{
--gold:#D4AF37;
--dark:#080808;
--card:#111111;
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
position:fixed;
width:100%;
z-index:1000;
backdrop-filter:blur(20px);
background:rgba(8,8,8,.75);
}
.logo{
font-size:32px;
font-weight:800;
color:var(--gold);
letter-spacing:2px;
}
nav ul{
display:flex;
list-style:none;
gap:35px;
}
nav a{
text-decoration:none;
color:white;
transition:.3s;
}
nav a:hover{
color:var(--gold);
}
.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 10%;
position:relative;
}
.hero::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:radial-gradient(var(--gold),transparent 70%);
opacity:.15;
filter:blur(80px);
}
.hero-content{
max-width:900px;
position:relative;
z-index:2;
}
.hero h1{
font-size:clamp(3rem,8vw,7rem);
line-height:1;
margin-bottom:25px;
}
.hero h1 span{
color:var(--gold);
}
.hero p{
color:#bbb;
font-size:1.2rem;
line-height:1.8;
max-width:700px;
margin:auto;
}
.btn{
display:inline-block;
margin-top:40px;
padding:16px 40px;
border-radius:50px;
text-decoration:none;
color:black;
background:var(--gold);
font-weight:700;
transition:.4s;
}
.btn:hover{
transform:translateY(-4px);
}
.section{
padding:100px 8%;
}
.section-title{
text-align:center;
margin-bottom:60px;
}
.section-title h2{
font-size:3rem;
color:var(--gold);
}
.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}
.card{
background:var(--card);
border:1px solid rgba(212,175,55,.15);
border-radius:24px;
padding:30px;
transition:.4s;
}
.card:hover{
transform:translateY(-10px);
border-color:var(--gold);
}
.can{
font-size:70px;
text-align:center;
margin-bottom:20px;
}
.card h3{
margin-bottom:15px;
color:var(--gold);
}
.card p{
color:#aaa;
line-height:1.7;
}
.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}
.feature{
background:#101010;
padding:30px;
border-radius:20px;
}
.feature h4{
color:var(--gold);
margin-bottom:15px;
}
.cta{
text-align:center;
padding:120px 10%;
background:linear-gradient(180deg,#111,#080808);
}
.cta h2{
font-size:3rem;
margin-bottom:20px;
}
footer{
text-align:center;
padding:40px;
color:#777;
border-top:1px solid #222;
}
</style>
</head>
<body>
<nav>
<div class="logo">HYFIZ</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#features">Why Hyfiz</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-content">
<h1>Premium <span>Fizz</span> Reimagined</h1>
<p>
Experience a new generation of luxury sparkling beverages.
Crafted with exceptional ingredients, bold flavors, and
an unforgettable premium finish.
</p>
<a href="#products" class="btn">Explore Collection</a>
</div>
</section>
<section class="section" id="products">
<div class="section-title">
<h2>Signature Collection</h2>
</div>
<div class="products">
<div class="card">
<div class="can">🥂</div>
<h3>Gold Citrus</h3>
<p>
Sparkling citrus blend with a luxurious golden finish.
Crisp, refreshing, and sophisticated.
</p>
</div>
<div class="card">
<div class="can">🍓</div>
<h3>Royal Berry</h3>
<p>
Rich berry infusion balanced with elegant fizz and
crafted for refined taste.
</p>
</div>
<div class="card">
<div class="can">🍍</div>
<h3>Tropical Reserve</h3>
<p>
Exotic tropical flavors combined with premium
carbonation for a vibrant experience.
</p>
</div>
</div>
</section>
<section class="section" id="features">
<div class="section-title">
<h2>Why HYFIZ</h2>
</div>
<div class="features">
<div class="feature">
<h4>Premium Ingredients</h4>
<p>
Carefully selected ingredients sourced for exceptional quality.
</p>
</div>
<div class="feature">
<h4>Luxury Branding</h4>
<p>
Crafted for those who appreciate sophistication and style.
</p>
</div>
<div class="feature">
<h4>Unique Flavors</h4>
<p>
Signature recipes designed to stand out from ordinary drinks.
</p>
</div>
<div class="feature">
<h4>Refreshing Experience</h4>
<p>
Crisp sparkling sensation with every sip.
</p>
</div>
</div>
</section>
<section class="cta" id="contact">
<h2>Elevate Every Sip</h2>
<p style="max-width:700px;margin:auto;color:#aaa;line-height:1.8;">
Join the world of premium refreshment. Discover the drink
that combines luxury, flavor, and unforgettable fizz.
</p>
<a href="#" class="btn">Become a Distributor</a>
</section>
<footer>
© 2026 HYFIZ.COM | Premium Fizz Drinks
</footer>
</body>
</html>