skyhigh-balloon-magic / index.html
franchb's picture
I need a website for a balloon decoration company in Moscow
bf8ea6a verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkyHigh Balloon Magic | Moscow's Premier Balloon Decorators</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}
.hero-gradient {
background: linear-gradient(135deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%);
}
.balloon-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white shadow-md">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<i data-feather="hexagon" class="text-pink-500 mr-2"></i>
<span class="text-xl font-bold text-pink-500">SkyHigh</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-pink-600 font-medium">Home</a>
<a href="#services" class="text-gray-600 hover:text-pink-600 transition">Services</a>
<a href="#gallery" class="text-gray-600 hover:text-pink-600 transition">Gallery</a>
<a href="#about" class="text-gray-600 hover:text-pink-600 transition">About</a>
<a href="#contact" class="text-gray-600 hover:text-pink-600 transition">Contact</a>
</div>
<button class="md:hidden focus:outline-none">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient min-h-screen flex items-center pt-20" id="home">
<div class="container mx-auto px-6 py-20">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Elevate Your Events with Balloon Magic</h1>
<p class="text-xl text-white mb-8">Moscow's premier balloon artists creating unforgettable decorations for weddings, corporate events, and celebrations.</p>
<div class="flex space-x-4">
<button class="bg-white text-pink-600 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition duration-300">Get a Quote</button>
<button class="border-2 border-white text-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-pink-600 transition duration-300">Our Gallery</button>
</div>
</div>
<div class="md:w-1/2 relative">
<img src="http://static.photos/party/1200x630/1" alt="Balloon decoration" class="rounded-lg shadow-2xl balloon-float">
<div class="absolute -bottom-10 -left-10 w-32 h-32 bg-yellow-300 rounded-full opacity-20"></div>
<div class="absolute -top-10 -right-10 w-24 h-24 bg-blue-300 rounded-full opacity-20"></div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-20 bg-gray-50" id="services">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Magical Services</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">From intimate gatherings to grand celebrations, we transform spaces with our balloon artistry.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-lg service-card transition duration-300">
<div class="w-16 h-16 bg-pink-100 rounded-full flex items-center justify-center mb-6">
<i data-feather="heart" class="text-pink-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3">Wedding Decor</h3>
<p class="text-gray-600 mb-4">Stunning arches, centerpieces, and photo backdrops to make your special day unforgettable.</p>
<a href="#" class="text-pink-600 font-medium flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg service-card transition duration-300">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i data-feather="briefcase" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3">Corporate Events</h3>
<p class="text-gray-600 mb-4">Professional balloon installations that impress clients and elevate brand experiences.</p>
<a href="#" class="text-pink-600 font-medium flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg service-card transition duration-300">
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
<i data-feather="gift" class="text-yellow-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3">Private Celebrations</h3>
<p class="text-gray-600 mb-4">Birthdays, anniversaries, and special occasions made magical with our creative designs.</p>
<a href="#" class="text-pink-600 font-medium flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section class="py-20" id="gallery">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Balloon Masterpieces</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Browse through our portfolio of stunning balloon installations across Moscow.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="relative group overflow-hidden rounded-xl">
<img src="http://static.photos/party/640x360/1" alt="Wedding balloon arch" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<div>
<h3 class="text-white font-bold text-xl">Wedding Arch</h3>
<p class="text-white">Grand Ballroom, Moscow</p>
</div>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl">
<img src="http://static.photos/party/640x360/2" alt="Corporate balloon installation" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<div>
<h3 class="text-white font-bold text-xl">Corporate Centerpiece</h3>
<p class="text-white">Tech Conference, Moscow</p>
</div>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl">
<img src="http://static.photos/party/640x360/3" alt="Birthday balloon decoration" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<div>
<h3 class="text-white font-bold text-xl">Birthday Extravaganza</h3>
<p class="text-white">Private Residence, Moscow</p>
</div>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl">
<img src="http://static.photos/party/640x360/4" alt="Balloon ceiling installation" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<div>
<h3 class="text-white font-bold text-xl">Ceiling Installation</h3>
<p class="text-white">Product Launch, Moscow</p>
</div>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl">
<img src="http://static.photos/party/640x360/5" alt="Balloon garland" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<div>
<h3 class="text-white font-bold text-xl">Floral Garland</h3>
<p class="text-white">Spring Festival, Moscow</p>
</div>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl">
<img src="http://static.photos/party/640x360/6" alt="Balloon photo backdrop" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<div>
<h3 class="text-white font-bold text-xl">Photo Backdrop</h3>
<p class="text-white">Wedding Reception, Moscow</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="bg-pink-600 text-white px-8 py-3 rounded-full font-bold hover:bg-pink-700 transition duration-300">View Full Gallery</button>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-20 bg-gray-50" id="about">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Our Story</h2>
<p class="text-gray-600 mb-6">Founded in 2015, SkyHigh Balloon Magic began with a simple passion for transforming ordinary spaces into extraordinary experiences through the art of balloon decoration.</p>
<p class="text-gray-600 mb-8">What started as a small team of creative enthusiasts has grown into Moscow's most sought-after balloon artistry company, with over 500 successful events under our belt.</p>
<div class="flex space-x-4">
<div class="text-center">
<div class="text-4xl font-bold text-pink-600">500+</div>
<div class="text-gray-600">Events</div>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-pink-600">98%</div>
<div class="text-gray-600">Happy Clients</div>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-pink-600">50+</div>
<div class="text-gray-600">Designs</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="grid grid-cols-2 gap-4">
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="http://static.photos/people/640x360/1" alt="Our team" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white font-bold">Our Creative Team</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="http://static.photos/office/640x360/1" alt="Our studio" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white font-bold">Our Moscow Studio</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="http://static.photos/workspace/640x360/1" alt="Materials" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white font-bold">Premium Materials</span>
</div>
</div>
<div class="relative group overflow-hidden rounded-xl h-64">
<img src="http://static.photos/event/640x360/1" alt="Award" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
<span class="text-white font-bold">Award Winning</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">What Our Clients Say</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear from our happy clients!</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="flex items-center mb-4">
<div class="text-yellow-400 flex">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="
</body>
</html>