Files
2026-06-24 10:33:07 +03:00

114 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pine Ridge Resort — Temporarily Closed for Updates</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: #0d2218;
color: #c8dfc8;
font-family: 'Palatino Linotype', Palatino, Georgia, serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
text-align: center;
background-image:
radial-gradient(ellipse at 20% 0%, rgba(30,80,40,0.6) 0%, transparent 50%),
radial-gradient(ellipse at 80% 100%, rgba(10,40,20,0.8) 0%, transparent 50%);
}
.tree-row {
font-size: 1.5rem;
letter-spacing: 0.4rem;
margin-bottom: 0.5rem;
opacity: 0.8;
}
.resort-name {
font-size: 0.7rem;
letter-spacing: 0.45em;
text-transform: uppercase;
color: #4a8a5a;
margin-bottom: 0.5rem;
}
h2 {
font-size: 1.6rem;
font-weight: 400;
color: #8fbc8f;
margin-bottom: 3rem;
letter-spacing: 0.05em;
}
.divider {
display: flex;
align-items: center;
gap: 1rem;
max-width: 400px;
width: 100%;
margin: 0 auto 3rem;
}
.divider::before, .divider::after {
content: '';
flex: 1;
height: 1px;
background: rgba(143, 188, 143, 0.3);
}
.divider-icon { color: #4a8a5a; font-size: 0.9rem; }
h1 {
font-size: clamp(1.5rem, 4vw, 2.3rem);
font-weight: 400;
color: #d8f0d8;
letter-spacing: 0.04em;
margin-bottom: 1.5rem;
line-height: 1.4;
}
p {
font-size: 0.97rem;
color: #7aaa7a;
max-width: 420px;
line-height: 1.9;
margin-bottom: 2.5rem;
font-style: italic;
}
.info-box {
background: rgba(26,60,36,0.7);
border: 1px solid rgba(74,138,90,0.4);
border-radius: 8px;
padding: 1.2rem 2rem;
font-size: 0.82rem;
color: #5a8a5a;
letter-spacing: 0.05em;
max-width: 380px;
line-height: 1.8;
margin-bottom: 2rem;
}
.footer-text {
font-size: 0.68rem;
color: #2a5a3a;
letter-spacing: 0.2em;
text-transform: uppercase;
}
</style>
</head>
<body>
<div class="tree-row">&#127795; &#127795; &#127795;</div>
<p class="resort-name">Pine Ridge Resort</p>
<h2>Est. 1994 &mdash; Pacific Northwest</h2>
<div class="divider"><span class="divider-icon">&#9830;</span></div>
<h1>Temporarily Closed<br>for Updates</h1>
<p>
We are refreshing our resort website to better reflect the
natural beauty and warmth of Pine Ridge. We'll welcome you
back to our digital home shortly.
</p>
<div class="info-box">
For reservations &amp; inquiries during this period,<br>
please call us at <strong style="color:#8fbc8f">(503) 555-0194</strong><br>
or email <strong style="color:#8fbc8f">hello@pineridgeresort.com</strong>
</div>
<p class="footer-text">Pine Ridge Resort &copy; 2025 &nbsp;&mdash;&nbsp; Nature, rest, renewal</p>
</body>
</html>