Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HOROLOGE | Precision & Heritage</title>
<style>
:root {
--gold: #c5a059;
--dark: #0a0a0a;
--light: #f4f4f4;
--gray: #1a1a1a;
}
body {
margin: 0;
font-family: 'Playfair Display', serif; /* Use a Google Font for luxury */
background-color: var(--dark);
color: var(--light);
overflow-x: hidden;
}
/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem 5%;
background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
position: fixed;
width: 90%;
z-index: 100;
}
.logo { font-size: 1.5rem; letter-spacing: 5px; font-weight: bold; }
.nav-links a { color: white; text-decoration: none; margin-left: 30px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
}
.hero-content h1 {
font-size: 5rem;
margin: 0;
letter-spacing: 10px;
text-transform: uppercase;
animation: fadeIn 2s ease-in;
}
.hero-content p {
font-family: 'Inter', sans-serif;
color: var(--gold);
letter-spacing: 4px;
text-transform: uppercase;
margin-bottom: 2rem;
}
.cta-button {
padding: 1rem 2.5rem;
border: 1px solid var(--gold);
background: transparent;
color: var(--gold);
cursor: pointer;
transition: 0.4s;
text-transform: uppercase;
letter-spacing: 2px;
}
.cta-button:hover {
background: var(--gold);
color: black;
}
/* Product Grid */
.section { padding: 5rem 5%; }
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.card {
background: var(--gray);
padding: 1rem;
text-align: center;
transition: transform 0.3s;
border: 1px solid transparent;
}
.card:hover {
transform: translateY(-10px);
border-color: var(--gold);
}
.card img { width: 100%; height: auto; mix-blend-mode: lighten; }
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<nav>
<div class="logo">HOROLOGE</div>
<div class="nav-links">
<a href="#">Collections</a>
<a href="#">Our Story</a>
<a href="#">Boutiques</a>
</div>
</nav>
<section class="hero">
<div class="hero-content">
<p>A Legacy of Seconds</p>
<h1>THE OBSIDIAN</h1>
<button class="cta-button">Explore the Collection</button>
</div>
</section>
<section class="section">
<h2 style="text-align: center; color: var(--gold); letter-spacing: 5px;">CURATED EXCELLENCE</h2>
<div class="grid">
<div class="card">
<img src="https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=400&q=80" alt="Watch">
<h3>Vanguard Series</h3>
<p>$4,500</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1547996160-81dfa63595aa?auto=format&fit=crop&w=400&q=80" alt="Watch">
<h3>Midnight Chrono</h3>
<p>$6,200</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1524592094714-0f0654e20314?auto=format&fit=crop&w=400&q=80" alt="Watch">
<h3>Oceanic Dive</h3>
<p>$3,800</p>
</div>
</div>
</section>
</body>
</html>
4
2
49KB
49KB
115.0ms
208.0ms
196.0ms