Files
3x-ui-pro/assets/fake-sites/site-29/index.html
T
2026-06-24 10:33:07 +03:00

127 lines
3.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Cellar Restaurant — Temporarily Unavailable</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #3b0a1f;
color: #f5e6d3;
font-family: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.bg-texture {
position: fixed;
inset: 0;
background:
radial-gradient(ellipse at 20% 50%, rgba(90,20,40,0.5) 0%, transparent 60%),
radial-gradient(ellipse at 80% 50%, rgba(60,5,20,0.6) 0%, transparent 60%);
pointer-events: none;
}
.container {
position: relative;
z-index: 2;
max-width: 560px;
text-align: center;
padding: 4rem 2.5rem;
}
.ornament {
color: #8b2545;
font-size: 1.8rem;
letter-spacing: 0.5em;
margin-bottom: 1rem;
display: block;
}
.brand {
font-size: 0.75rem;
letter-spacing: 0.45em;
text-transform: uppercase;
color: #c9a87c;
margin-bottom: 2rem;
}
h1 {
font-size: clamp(1.6rem, 4vw, 2.4rem);
font-weight: normal;
font-style: italic;
color: #f5e6d3;
line-height: 1.3;
margin-bottom: 0.5rem;
}
.rule {
display: flex;
align-items: center;
gap: 1rem;
margin: 1.5rem auto;
max-width: 300px;
}
.rule-line { flex: 1; height: 1px; background: #8b2545; }
.rule-diamond { color: #c9a87c; font-size: 0.6rem; }
p {
font-size: 1rem;
line-height: 1.9;
color: #d4b896;
margin-bottom: 1rem;
}
.hours-box {
border: 1px solid #5a1428;
padding: 1.5rem;
margin: 2rem 0;
background: rgba(0,0,0,0.2);
}
.hours-title {
font-size: 0.7rem;
letter-spacing: 0.4em;
text-transform: uppercase;
color: #8b2545;
margin-bottom: 1rem;
}
.hours-row {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
color: #c9a87c;
padding: 0.3rem 0;
border-bottom: 1px solid rgba(139,37,69,0.2);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: #d4b896; }
.footer-note {
font-size: 0.8rem;
color: #8b2545;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-top: 2rem;
}
</style>
</head>
<body>
<div class="bg-texture"></div>
<div class="container">
<span class="ornament">&#x2767;</span>
<div class="brand">The Cellar Restaurant</div>
<h1>Temporarily Unavailable</h1>
<div class="rule">
<span class="rule-line"></span>
<span class="rule-diamond">&#x25C6;</span>
<span class="rule-line"></span>
</div>
<p>We have taken our online reservation system offline for a brief period while we transition to a new service. We apologise for any inconvenience this may cause.</p>
<p>The Cellar remains open for dining. Please contact us directly to make a reservation during this time.</p>
<div class="hours-box">
<div class="hours-title">Dining Hours</div>
<div class="hours-row"><span class="day">Tuesday Thursday</span><span>6:00 pm 10:00 pm</span></div>
<div class="hours-row"><span class="day">Friday Saturday</span><span>5:30 pm 11:00 pm</span></div>
<div class="hours-row"><span class="day">Sunday</span><span>5:30 pm 9:00 pm</span></div>
<div class="hours-row"><span class="day">Monday</span><span>Closed</span></div>
</div>
<div class="footer-note">Online reservations returning shortly</div>
</div>
</body>
</html>