File size: 21,333 Bytes
5d2550f 7d3a696 5d2550f 7d3a696 5d2550f 7d3a696 5d2550f 7d3a696 5d2550f 7d3a696 5d2550f 7d3a696 5d2550f 7d3a696 5d2550f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VIINSSUR | Monouré</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@100;200;300;400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
overflow-x: hidden;
scroll-behavior: smooth;
color: #333;
background-color: #FFF9FA;
}
.bg-pink-50 {
background-color: #FFF9FA;
}
.serif-font {
font-family: 'Cormorant Garamond', serif;
}
.hero-section {
background-image: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
position: relative;
overflow: hidden;
}
.hero-overlay {
background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
}
.petal {
position: absolute;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,5 C60,20 70,25 70,40 C70,55 60,65 50,75 C40,65 30,55 30,40 C30,25 40,20 50,5 Z" fill="rgba(255,255,255,0.7)"/></svg>');
background-size: contain;
background-repeat: no-repeat;
opacity: 0.7;
z-index: 10;
}
.dress-card {
transition: all 0.3s ease;
}
.dress-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);
}
.side-logo {
writing-mode: vertical-rl;
transform: rotate(180deg);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 1px;
bottom: 0;
left: 0;
background-color: black;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
@media (max-width: 768px) {
.hero-section {
height: 80vh;
}
.side-logo-container {
display: none;
}
.mobile-menu {
display: flex;
}
}
</style>
</head>
<body class="bg-white text-gray-900">
<!-- Navigation -->
<nav class="fixed top-0 left-0 right-0 z-50 bg-white bg-opacity-90 backdrop-filter backdrop-blur-sm">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-12">
<div class="mobile-menu hidden md:hidden">
<button id="menu-toggle" class="text-gray-800 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="nav-link uppercase text-sm tracking-widest">INICIO</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">TU VESTIDO</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">SHOWROOM</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">TIENDA</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">MARKETPLACE</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">PRESS</a>
</div>
</div>
<div>
<button class="bg-black text-white px-6 py-2 rounded-full text-xs uppercase tracking-widest hover:bg-gray-800 transition duration-300">SÚMAL FESOR</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white w-full px-6 py-4 shadow-lg">
<div class="flex flex-col space-y-4">
<a href="#" class="nav-link uppercase text-sm tracking-widest">LUVÉN</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">COUTUMARS</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">DAPOIR</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">SEEK</a>
<a href="#" class="nav-link uppercase text-sm tracking-widest">CITOURÉ</a>
</div>
</div>
</nav>
<!-- Brand Name -->
<div class="fixed left-8 top-8 z-40 hidden md:block">
<div class="serif-font text-xl">Viann'k Mansur</div>
</div>
<!-- Side Logo -->
<div class="side-logo-container fixed left-8 top-1/2 transform -translate-y-1/2 z-40 hidden md:block">
<div class="side-logo uppercase text-xs tracking-widest">VIANN'K MANSUR</div>
<div class="flex flex-col items-center space-y-6 mt-8">
<a href="#" class="text-gray-700 hover:text-black"><i class="fas fa-bars text-sm"></i></a>
<a href="#" class="text-gray-700 hover:text-black"><i class="fas fa-question text-sm"></i></a>
<a href="#" class="text-gray-700 hover:text-black"><i class="fab fa-instagram text-sm"></i></a>
<a href="#" class="text-gray-700 hover:text-black"><i class="fab fa-pinterest text-sm"></i></a>
</div>
</div>
<!-- Loading Overlay -->
<div id="loading-overlay" class="fixed inset-0 bg-[#3B3B3B] z-50 flex flex-col items-center justify-center transition-opacity duration-1000">
<div id="percentage" class="text-[#FADADD] text-4xl mb-4">0%</div>
<div id="logo" class="text-white font-bold text-6xl tracking-tighter opacity-0">VKM</div>
</div>
<!-- Hero Section -->
<section class="hero-section relative">
<div class="hero-overlay absolute inset-0"></div>
<!-- Floating petals -->
<div id="petals-container"></div>
<div class="container mx-auto h-full flex flex-col justify-center items-center relative z-20 px-6">
<div class="text-center">
<h1 id="main-logo" class="font-bold text-6xl md:text-8xl text-white mb-2 hidden">VKM</h1>
<button class="bg-black text-white px-8 py-3 rounded-full uppercase tracking-widest hover:bg-gray-800 transition duration-300 mt-12">COUTURE</button>
</div>
</div>
</section>
<!-- Dress Collection -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<h2 class="serif-font text-3xl md:text-4xl text-center mb-16">COUTURE COLLECTION</h2>
<div class="relative">
<!-- Dress Carousel -->
<div class="carousel-container overflow-x-auto pb-10">
<div class="flex space-x-8 carousel-inner" style="min-width: 200%;">
<!-- Dress Card 1 -->
<div class="dress-card flex-shrink-0 w-64 bg-pink-50 rounded-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1539109136881-3be0616acf4b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="PHIINKO AKIRA dress" class="w-full h-80 object-cover">
<div class="p-4 text-center">
<h3 class="serif-font text-xl">PHIINKO AKIRA</h3>
<p class="text-xs uppercase tracking-widest text-gray-500 mt-1">Couture Signature</p>
</div>
</div>
<!-- Dress Card 2 -->
<div class="dress-card flex-shrink-0 w-64 bg-pink-50 rounded-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1592878904946-b3cd8ae243d0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="SOFIA MANSUR dress" class="w-full h-80 object-cover">
<div class="p-4 text-center">
<h3 class="serif-font text-xl">SOFIA MANSUR</h3>
<p class="text-xs uppercase tracking-widest text-gray-500 mt-1">Cool</p>
</div>
</div>
<!-- Dress Card 3 -->
<div class="dress-card flex-shrink-0 w-64 bg-pink-50 rounded-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="ZHAWASKA KOUTUR dress" class="w-full h-80 object-cover">
<div class="p-4 text-center">
<h3 class="serif-font text-xl">ZHAWASKA KOUTUR</h3>
<p class="text-xs uppercase tracking-widest text-gray-500 mt-1">Couture Signature</p>
</div>
</div>
<!-- Dress Card 4 -->
<div class="dress-card flex-shrink-0 w-64 bg-pink-50 rounded-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="MARIA LUVÉN dress" class="w-full h-80 object-cover">
<div class="p-4 text-center">
<h3 class="serif-font text-xl">MARIA LUVÉN</h3>
<p class="text-xs uppercase tracking-widest text-gray-500 mt-1">Cool</p>
</div>
</div>
<!-- Dress Card 5 -->
<div class="dress-card flex-shrink-0 w-64 bg-pink-50 rounded-lg overflow-hidden">
<img src="https://images.unsplash.com/photo-1551232864-3f0890e580d9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=500&q=80" alt="ELENA DAPOIR dress" class="w-full h-80 object-cover">
<div class="p-4 text-center">
<h3 class="serif-font text-xl">ELENA DAPOIR</h3>
<p class="text-xs uppercase tracking-widest text-gray-500 mt-1">Couture Signature</p>
</div>
</div>
</div>
</div>
<!-- Carousel Navigation Dots -->
<div class="flex justify-center space-x-2 mt-8">
<button class="w-2 h-2 rounded-full bg-gray-400"></button>
<button class="w-2 h-2 rounded-full bg-gray-800"></button>
<button class="w-2 h-2 rounded-full bg-gray-400"></button>
<button class="w-2 h-2 rounded-full bg-gray-400"></button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-pink-50 py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<h2 class="serif-font text-2xl">VIINSSUR</h2>
<p class="text-xs uppercase tracking-widest text-gray-500 mt-1">Monouré</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-700 hover:text-black"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-700 hover:text-black"><i class="fab fa-pinterest"></i></a>
<a href="#" class="text-gray-700 hover:text-black"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
<div class="border-t border-gray-200 mt-8 pt-8 flex flex-col md:flex-row justify-between">
<div class="mb-6 md:mb-0">
<p class="text-xs text-gray-500">© 2023 VIINSSUR. All rights reserved.</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xs uppercase tracking-widest mb-2">Shop</h3>
<ul class="space-y-1">
<li><a href="#" class="text-xs text-gray-500 hover:text-black">New Arrivals</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Bestsellers</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Sale</a></li>
</ul>
</div>
<div>
<h3 class="text-xs uppercase tracking-widest mb-2">About</h3>
<ul class="space-y-1">
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Our Story</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Designers</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Sustainability</a></li>
</ul>
</div>
<div>
<h3 class="text-xs uppercase tracking-widest mb-2">Customer Care</h3>
<ul class="space-y-1">
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Contact Us</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">FAQs</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Shipping & Returns</a></li>
</ul>
</div>
<div>
<h3 class="text-xs uppercase tracking-widest mb-2">Legal</h3>
<ul class="space-y-1">
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Terms of Service</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Privacy Policy</a></li>
<li><a href="#" class="text-xs text-gray-500 hover:text-black">Cookie Policy</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Create floating petals
function createPetals() {
const container = document.getElementById('petals-container');
const petalCount = 15;
for (let i = 0; i < petalCount; i++) {
const petal = document.createElement('div');
petal.className = 'petal';
// Random size between 10px and 30px
const size = Math.random() * 20 + 10;
petal.style.width = `${size}px`;
petal.style.height = `${size}px`;
// Random starting position
const startX = Math.random() * window.innerWidth;
const startY = Math.random() * window.innerHeight * 0.5;
petal.style.left = `${startX}px`;
petal.style.top = `${startY}px`;
// Random animation duration between 10s and 20s
const duration = Math.random() * 10 + 10;
petal.style.animation = `float ${duration}s linear infinite`;
// Random delay for animation
const delay = Math.random() * 5;
petal.style.animationDelay = `${delay}s`;
// Random opacity
petal.style.opacity = Math.random() * 0.5 + 0.3;
// Add petal to container
container.appendChild(petal);
// Animate petal
animatePetal(petal);
}
}
// Animate individual petal
function animatePetal(petal) {
const startX = parseFloat(petal.style.left);
const startY = parseFloat(petal.style.top);
const duration = parseFloat(petal.style.animationDuration || '15s') * 1000;
const startTime = Date.now();
function updatePosition() {
const elapsed = Date.now() - startTime;
const progress = (elapsed % duration) / duration;
// Circular motion with slight variations
const x = startX + Math.sin(progress * Math.PI * 2) * 100;
const y = startY + progress * window.innerHeight;
petal.style.left = `${x}px`;
petal.style.top = `${y}px`;
// If petal goes below screen, reset to top
if (y > window.innerHeight) {
petal.style.top = `-${Math.random() * 50}px`;
petal.style.left = `${Math.random() * window.innerWidth}px`;
}
requestAnimationFrame(updatePosition);
}
updatePosition();
}
// Loading animation
window.addEventListener('load', function() {
let percentage = 0;
const overlay = document.getElementById('loading-overlay');
const percentElement = document.getElementById('percentage');
const logo = document.getElementById('logo');
const mainLogo = document.getElementById('main-logo');
// Logo flicker effect
const flickerInterval = setInterval(() => {
logo.style.opacity = logo.style.opacity === '0' ? '1' : '0';
}, 100);
// Percentage counter
const counter = setInterval(() => {
percentage++;
percentElement.textContent = percentage + '%';
overlay.style.opacity = 1 - (percentage/100);
if (percentage === 100) {
clearInterval(counter);
clearInterval(flickerInterval);
setTimeout(() => {
overlay.style.display = 'none';
mainLogo.classList.remove('hidden');
createPetals();
}, 500);
}
}, 30);
});
// Simple carousel navigation
const dots = document.querySelectorAll('.carousel-dot');
dots.forEach((dot, index) => {
dot.addEventListener('click', () => {
// Remove active class from all dots
dots.forEach(d => d.classList.remove('bg-gray-800'));
dots.forEach(d => d.classList.add('bg-gray-400'));
// Add active class to clicked dot
dot.classList.remove('bg-gray-400');
dot.classList.add('bg-gray-800');
// Move carousel (simplified for this example)
const carousel = document.querySelector('.carousel-inner');
carousel.style.transform = `translateX(-${index * 25}%)`;
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=hazael00/vkm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |