Diseña una página web de moda de alta costura femenina, inspirada en marcas exclusivas de vestidos de gala y quinceañera. La estética debe ser elegante, cinematográfica y suave, con colores pastel y una fuerte influencia de la moda editorial. Hero principal: Fondo de pantalla completa con una modelo joven girando en un vestido de gala (color rosa claro o marfil), en un campo abierto al atardecer, con colinas suaves al fondo. Añade pétalos de rosa flotando en primer plano, con animaciones suaves (como si flotaran en el aire o cayeran lentamente). Texto central grande, estilizado: Título: "VIINSSUR" (en tipografía serif de alta moda, elegante y distintiva). Subtítulo: “Monouré” (en cursiva, delicada, justo debajo). Un botón negro de borde redondeado centrado que diga: COUTURE. Menú de navegación: Barra superior minimalista, con tipografía ligera en mayúsculas: Opciones: LUVÉN | COUTUMARS | DAPOIR | SEEK | CITOURÉ Botón de acción en la esquina superior derecha: SÚMAL FESOR (con fondo negro o rosa intenso, letra blanca). Barra lateral izquierda (vertical): Un logotipo estilizado con el texto: VIANN’K MANSUR (vertical, en mayúsculas, fuente fina). Íconos sencillos para menú, ayuda, redes sociales (minimalistas en negro o gris tenue). Carrusel de productos (sección inferior): Carrusel horizontal con tarjetas de vestidos. Cada tarjeta contiene: Imagen de una modelo usando un vestido lujoso (color rosa, blanco, o con pedrería). Fondo de tarjeta en rosa claro o blanco. Texto alineado al centro con el nombre del vestido: Ejemplos: “PHIINKO AKIRA”, “SOFIA MANSUR”, “ZHAWASKA KOUTUR” Subtexto: “Cool” o “Couture Signature” Esquinas redondeadas, sin bordes visibles. Pequeños “bullets” de navegación estilo puntos negros bajo el carrusel. Estilo general: Paleta de colores: blanco, rosa empolvado, marfil, negro acento. Tipografía: serif elegante para títulos (como Playfair Display, Cormorant Garamond), sans-serif fino para menús (como Montserrat o Inter Light). Diseño UX/UI: tipo revista de moda, limpio, amplio, aireado. Sensación: lujo sutil, glamour, feminidad elevada. Debe sentirse como una mezcla entre la portada de una revista de alta moda y una experiencia interactiva de diseñador. La experiencia debe ser refinada y atractiva visualmente para una marca de vestidos de lujo. - Initial Deployment
5d2550f
verified
<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; | |
} | |
.serif-font { | |
font-family: 'Cormorant Garamond', serif; | |
} | |
.hero-section { | |
background-image: url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?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">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> | |
<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> | |
<!-- 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> | |
<!-- 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 class="serif-font text-6xl md:text-8xl font-light text-white mb-2">VIINSSUR</h1> | |
<p class="serif-font italic text-2xl md:text-3xl text-white mb-12">Monouré</p> | |
<button class="bg-black text-white px-8 py-3 rounded-full uppercase tracking-widest hover:bg-gray-800 transition duration-300">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(); | |
} | |
// Initialize petals when page loads | |
window.addEventListener('load', createPetals); | |
// 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> |