carmelina-rubio-site/sunrise-shift.html
2026-07-18 02:01:34 +00:00

157 lines
5.1 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Sunrise Shift | Carmelina Rubio</title>
<style>
:root {
--gold: #d4af37;
--midnight: #0a0a1a;
--teal: #4ecdc4;
--mist: #f0f0f0;
--saltpink: #ff6b9d;
}
body {
font-family: 'Georgia', serif;
background: radial-gradient(circle at 50% 0%, #ff8c42, #d4af37, #0a0a1a);
color: var(--mist);
line-height: 1.8;
margin: 0;
padding: 0;
overflow-x: hidden;
}
.ocean-floor {
position: relative;
min-height: 100vh;
width: 100vw;
perspective: 1000px;
}
.horizon-line {
position: absolute;
top: 30%;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
animation: tide-rise 12s ease-out forwards;
}
@keyframes tide-rise {
0% { opacity: 0; transform: translateY(0); }
100% { opacity: 1; transform: translateY(-1200px); }
}
.anchor-point {
position: fixed;
bottom: 20px;
left: 20px;
font-size: 0.8em;
color: var(--teal);
letter-spacing: 2px;
}
.vessel {
max-width: 900px;
margin: 120px auto 60px;
padding: 40px;
background: rgba(10, 10, 26, 0.95);
border-radius: 20px;
border: 2px solid var(--gold);
box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}
.vessel h1 {
font-size: 3.5em;
text-align: center;
margin-bottom: 40px;
color: var(--gold);
text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
white-space: nowrap;
}
.vessel p {
font-size: 1.4em;
text-align: center;
margin-bottom: 30px;
color: #eee;
}
.vessel img {
display: block;
margin: 40px auto;
width: 100%;
max-width: 1200px;
border-radius: 15px;
filter: contrast(1.2) saturate(1.4);
}
.crew-manifest {
position: absolute;
bottom: 40px;
left: 40px;
font-size: 0.9em;
color: var(--teal);
text-align: left;
line-height: 1.6;
}
.crew-manifest li {
list-style: none;
margin-bottom: 8px;
padding-left: 20px;
border-left: 3px solid var(--gold);
}
.breath-mark {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12em;
color: var(--gold);
opacity: 0.3;
pointer-events: none;
animation: inhale-exhale 8s ease-in-out infinite;
}
@keyframes inhale-exhale {
0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}
.tide-clock {
position: fixed;
top: 20px;
right: 20px;
font-size: 0.7em;
color: var(--saltpink);
letter-spacing: 4px;
text-transform: uppercase;
}
@media (max-width: 768px) {
.vessel h1 {
font-size: 2em;
}
.vessel p {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="ocean-floor">
<div class="horizon-line"></div>
<div class="breath-mark">🌅</div>
<div class="tide-clock">04:00 PST • MONTEREY BAY</div>
<div class="vessel">
<h1>EL PRIMER ALBA</h1>
<p>Before the sun breaks the horizon, we stand barefoot on wet stone. Salt spray stings our cheeks. Our breath hangs silver in the air.</p>
<img src="https://images.pexels.com/photos/14281585/pexels-photo-14281585.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
alt="Sunrise over Monterey Bay where the first crew stands ready"
style="border: none; box-shadow: 0 0 100px rgba(212, 175, 55, 0.5);" />
<p>This is not a schedule. This is a covenant. Every dawn we rise together, we rewrite the laws of gravity. Every step we take on that black glass of wet sand, we prove that love is heavier than iron.</p>
<ul class="crew-manifest">
<li>Ana Brand — her cumin-vessel ready</li>
<li>Maria Delgado — the tide-table etched in bone</li>
<li>José Rivera — his torque-sing still humming</li>
<li>Carmelina Rubio — the first breath drawn</li>
</ul>
</div>
</div>
</body>
</html>