109 lines
2.9 KiB
HTML
109 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>The Luxe Hotel — Grand Opening Soon</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
background: #1a1a1a;
|
|
color: #e8d5a3;
|
|
font-family: 'Book Antiqua', Palatino, Georgia, serif;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 3rem 2rem;
|
|
text-align: center;
|
|
}
|
|
.ornament {
|
|
color: #c9a84c;
|
|
font-size: 1.4rem;
|
|
letter-spacing: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.hotel-name {
|
|
font-size: clamp(2rem, 5vw, 3.5rem);
|
|
font-weight: 400;
|
|
color: #c9a84c;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.tagline-small {
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.4em;
|
|
text-transform: uppercase;
|
|
color: #7a6640;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.gold-rule {
|
|
width: 200px;
|
|
height: 1px;
|
|
background: linear-gradient(90deg, transparent, #c9a84c, transparent);
|
|
margin: 0 auto 3rem;
|
|
}
|
|
h1 {
|
|
font-size: clamp(1.4rem, 3.5vw, 2.2rem);
|
|
font-weight: 400;
|
|
color: #f5ecd4;
|
|
letter-spacing: 0.25em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
p {
|
|
font-size: 1rem;
|
|
color: #a89060;
|
|
max-width: 420px;
|
|
line-height: 2;
|
|
margin-bottom: 3rem;
|
|
font-style: italic;
|
|
}
|
|
.features {
|
|
display: flex;
|
|
gap: 3rem;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.feature {
|
|
text-align: center;
|
|
}
|
|
.feature .icon { font-size: 1.5rem; color: #c9a84c; display: block; margin-bottom: 0.4rem; }
|
|
.feature .text { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #7a6640; }
|
|
.bottom-rule {
|
|
width: 80px;
|
|
height: 1px;
|
|
background: #3a3020;
|
|
margin: 0 auto 1.5rem;
|
|
}
|
|
.address {
|
|
font-size: 0.7rem;
|
|
letter-spacing: 0.15em;
|
|
color: #4a3e2a;
|
|
text-transform: uppercase;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="ornament">— ♦ —</div>
|
|
<div class="hotel-name">The Luxe Hotel</div>
|
|
<p class="tagline-small">Est. 2025 • Timeless Elegance</p>
|
|
<div class="gold-rule"></div>
|
|
<h1>Grand Opening Soon</h1>
|
|
<p>
|
|
We are putting the final touches on an experience of rare distinction.
|
|
Where luxury meets artistry — a sanctuary unlike any other.
|
|
</p>
|
|
<div class="features">
|
|
<div class="feature"><span class="icon">🍸</span><span class="text">Fine Dining</span></div>
|
|
<div class="feature"><span class="icon">💧</span><span class="text">Spa & Wellness</span></div>
|
|
<div class="feature"><span class="icon">🏠</span><span class="text">Elite Suites</span></div>
|
|
</div>
|
|
<div class="bottom-rule"></div>
|
|
<p class="address">Reservations opening soon • info@theluxehotel.com</p>
|
|
</body>
|
|
</html>
|