This commit is contained in:
2026-03-05 21:45:40 +00:00
parent 39c80a0253
commit 146a9bda99
16 changed files with 956 additions and 24 deletions

View File

@@ -101,6 +101,7 @@ h3 {
width: 100%;
padding: 1.1rem;
color: #fff;
text-align: center;
}
.hero-overlay h1,
@@ -120,6 +121,22 @@ h3 {
margin-top: 0.6rem;
}
.hero-hint {
margin-top: 0.8rem;
max-width: 58ch;
font-size: clamp(0.94rem, 1.55vw, 1.05rem);
color: rgba(255, 255, 255, 0.93);
}
.hero-hint-below {
margin: 0.2rem 0 1rem;
max-width: 72ch;
text-align: center;
color: rgba(31, 26, 23, 0.92);
font-size: clamp(0.97rem, 1.45vw, 1.05rem);
line-height: 1.45;
}
.card {
background: var(--card);
border: 1px solid rgba(31, 58, 47, 0.11);
@@ -131,6 +148,13 @@ h3 {
margin-bottom: 1rem;
}
/* Center standalone copy blocks while keeping forms and tables unaffected */
section.card > h1,
section.card > h2,
section.card > p {
text-align: center;
}
.hero {
background:
radial-gradient(circle at 12% 16%, rgba(184, 145, 76, 0.16), transparent 44%),
@@ -224,6 +248,10 @@ h3 {
padding: clamp(1.2rem, 2.6vw, 1.7rem);
}
.login-intro {
text-align: center;
}
.login-intro h1 {
margin-bottom: 0.75rem;
font-size: clamp(2rem, 4.2vw, 3.3rem);
@@ -294,6 +322,48 @@ h3 {
0 1px 0 rgba(178, 137, 70, 0.4) inset;
}
.login-privacy-banner {
position: fixed;
left: 50%;
bottom: 0.9rem;
transform: translateX(-50%);
width: min(760px, calc(100vw - 1.2rem));
z-index: 1250;
border: 1px solid rgba(31, 58, 47, 0.16);
border-radius: 14px;
padding: 0.8rem 0.85rem;
background: rgba(255, 252, 247, 0.98);
box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
backdrop-filter: blur(4px);
}
.login-privacy-title {
margin: 0;
color: var(--forest);
font-weight: 700;
font-size: 0.95rem;
}
.login-privacy-text {
margin: 0.32rem 0 0;
font-size: 0.9rem;
line-height: 1.35;
color: rgba(31, 26, 23, 0.92);
}
.login-privacy-text a {
color: var(--forest);
font-weight: 700;
}
.login-privacy-btn {
margin-top: 0.6rem;
width: auto;
min-width: 10rem;
border-radius: 999px;
padding: 0.6rem 1.05rem;
}
.form-grid {
display: grid;
gap: 0.8rem;
@@ -902,6 +972,322 @@ input[type="file"]:focus {
margin: 0.8rem 0;
}
.schedule-timeline {
display: grid;
gap: 0.85rem;
margin-top: 0.9rem;
}
.schedule-item {
position: relative;
overflow: hidden;
border-radius: 14px;
padding: 1rem;
border: 1px solid rgba(31, 58, 47, 0.12);
background-color: #f5ece0;
background-image:
linear-gradient(180deg, rgba(22, 34, 28, 0.5), rgba(22, 34, 28, 0.28)),
var(--schedule-card-image);
background-size: cover;
background-position: var(--schedule-card-position, center);
color: #fff;
box-shadow:
0 10px 24px rgba(31, 58, 47, 0.15),
0 1px 0 rgba(255, 255, 255, 0.25) inset;
}
.schedule-time {
margin: 0 0 0.2rem;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255, 247, 230, 0.95);
}
.schedule-item h2 {
margin: 0;
font-size: 1.28rem;
line-height: 1.15;
color: #fff;
}
.schedule-item p {
margin: 0.45rem 0 0;
max-width: 42ch;
color: rgba(255, 255, 255, 0.95);
}
.hotel-list {
display: grid;
gap: 0.9rem;
margin-top: 0.8rem;
}
.hotel-card {
border-radius: 14px;
border: 1px solid rgba(31, 58, 47, 0.12);
padding: 1rem;
text-align: center;
background: linear-gradient(180deg, #fffdf8 0%, #fdf5e8 100%);
box-shadow:
0 10px 22px rgba(31, 58, 47, 0.12),
0 1px 0 rgba(178, 137, 70, 0.2) inset;
}
.hotel-card h2 {
margin: 0;
font-size: 1.25rem;
color: var(--forest);
}
.hotel-address {
margin: 0.32rem 0 0;
color: rgba(31, 58, 47, 0.84);
font-size: 0.95rem;
}
.hotel-card p {
margin: 0.52rem 0 0;
}
.hotel-badges {
display: flex;
flex-wrap: wrap;
gap: 0.45rem;
margin-top: 0.62rem;
justify-content: center;
}
.hotel-badges span {
border-radius: 999px;
border: 1px solid rgba(31, 58, 47, 0.18);
background: rgba(255, 255, 255, 0.9);
padding: 0.26rem 0.62rem;
font-size: 0.86rem;
color: rgba(31, 58, 47, 0.9);
}
.hotel-actions {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
gap: 0.55rem;
margin-top: 0.8rem;
justify-items: center;
}
.hotel-actions .btn {
width: min(100%, 320px);
border-radius: 999px;
padding: 0.74rem 1.2rem;
}
body.has-route-modal {
overflow: hidden;
}
.route-modal[hidden] {
display: none;
}
.route-modal {
position: fixed;
inset: 0;
z-index: 1300;
display: grid;
place-items: center;
padding: 1rem;
}
.route-modal-backdrop {
position: absolute;
inset: 0;
background: rgba(18, 28, 23, 0.62);
backdrop-filter: blur(2px);
}
.route-modal-panel {
position: relative;
width: min(980px, 96vw);
border-radius: 16px;
overflow: hidden;
background: #fffdf8;
border: 1px solid rgba(31, 58, 47, 0.18);
box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}
.route-modal-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.6rem;
padding: 0.75rem 0.85rem;
border-bottom: 1px solid rgba(31, 58, 47, 0.12);
background: linear-gradient(180deg, #fff, #fdf4e6);
}
.route-modal-head h2 {
margin: 0;
font-size: 1.04rem;
color: var(--forest);
}
.route-modal-close {
white-space: nowrap;
font-size: 0.85rem;
padding: 0.42rem 0.76rem;
border-radius: 999px;
}
.route-modal-close.btn-ghost {
background: rgba(255, 255, 255, 0.56);
border-color: rgba(31, 58, 47, 0.2);
box-shadow: none;
}
.route-modal-body {
padding: 0.65rem;
position: relative;
}
.route-modal-body iframe {
display: block;
width: 100%;
min-height: min(72vh, 640px);
border: 0;
border-radius: 12px;
}
.route-map-actions {
position: absolute;
right: 1.15rem;
bottom: 1.15rem;
}
.route-open-btn {
min-width: clamp(220px, 38vw, 320px);
border-radius: 999px;
padding: 0.78rem 1.25rem;
box-shadow: 0 10px 22px rgba(31, 58, 47, 0.24);
}
.taxi-coming-soon {
margin: 0.3rem auto 0.9rem;
max-width: min(460px, 100%);
}
.taxi-coming-soon img {
display: block;
width: 100%;
height: auto;
object-fit: contain;
filter: drop-shadow(0 10px 22px rgba(31, 58, 47, 0.18));
}
.gift-fun {
position: relative;
overflow: hidden;
border-radius: 14px;
border: 1px solid rgba(31, 58, 47, 0.12);
padding: 1rem;
background: linear-gradient(155deg, #fff8eb 0%, #f3e6cc 100%);
}
.gift-lead {
margin: 0;
font-size: clamp(1.02rem, 2.1vw, 1.2rem);
font-weight: 700;
}
.gift-reveal-btn {
margin-top: 0.85rem;
width: auto;
}
.gift-reveal {
margin-top: 0.95rem;
position: relative;
padding: 0.9rem;
border-radius: 12px;
border: 1px solid rgba(31, 58, 47, 0.15);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94));
}
.gift-reveal.is-active {
animation: gift-pop-in 420ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
.gift-image-wrap {
max-width: min(640px, 100%);
margin: 0 auto;
}
.gift-image-wrap img {
display: block;
width: 100%;
height: auto;
border-radius: 12px;
border: 1px solid rgba(31, 58, 47, 0.2);
box-shadow: 0 12px 28px rgba(31, 58, 47, 0.18);
}
.gift-caption {
margin: 0.8rem 0 0;
font-weight: 700;
color: var(--forest);
}
.money-rain {
pointer-events: none;
position: absolute;
inset: -6px;
overflow: hidden;
}
.bill {
position: absolute;
width: 26px;
height: 12px;
top: -20px;
left: calc((var(--idx) * 8.2%) - 2%);
border-radius: 2px;
border: 1px solid rgba(43, 107, 49, 0.46);
background:
radial-gradient(circle at 50% 50%, rgba(247, 255, 240, 0.92) 0 28%, transparent 30%),
linear-gradient(180deg, #d7f7bd 0%, #9fd58f 100%);
opacity: 0;
}
.gift-reveal.is-active .bill {
animation: money-fall 4200ms linear forwards;
animation-delay: calc(var(--idx) * 120ms);
}
@keyframes gift-pop-in {
0% {
opacity: 0;
transform: translateY(8px) scale(0.98);
}
100% {
opacity: 1;
transform: translateY(0) scale(1);
}
}
@keyframes money-fall {
0% {
opacity: 0;
transform: translate3d(0, -12px, 0) rotate(0deg);
}
10% {
opacity: 0.95;
}
100% {
opacity: 0;
transform: translate3d(-22px, 240px, 0) rotate(30deg);
}
}
.map-consent {
display: grid;
gap: 0.7rem;
@@ -953,23 +1339,24 @@ input[type="file"]:focus {
}
.map-embed-target:not(:empty) {
margin-top: 0.2rem;
margin-top: 0.35rem;
}
.location-actions {
display: flex;
justify-content: flex-start;
justify-content: center;
margin-top: 0.55rem;
gap: 0.55rem;
flex-wrap: wrap;
}
.location-actions .btn {
width: auto;
min-width: 0;
width: min(100%, 320px);
min-width: 240px;
white-space: nowrap;
justify-content: center;
padding: 0.58rem 0.88rem;
padding: 0.72rem 1.2rem;
border-radius: 999px;
font-size: 0.98rem;
}
@@ -988,8 +1375,19 @@ input[type="file"]:focus {
font-size: 0.9rem;
}
.login-privacy-banner {
width: calc(100vw - 0.8rem);
bottom: 0.35rem;
border-radius: 12px;
padding: 0.7rem;
}
.login-privacy-btn {
width: 100%;
}
.location-actions {
justify-content: flex-start;
justify-content: center;
}
.dashboard-grid {
@@ -1000,6 +1398,56 @@ input[type="file"]:focus {
min-height: 0;
font-size: 1.08rem;
}
.schedule-item {
padding: 0.9rem;
}
.schedule-item h2 {
font-size: 1.18rem;
}
.gift-reveal {
padding: 0.75rem;
}
.route-modal {
padding: 0.6rem;
}
.route-modal-head {
align-items: center;
flex-direction: row;
}
.route-modal-close {
width: auto;
align-self: center;
}
.route-modal-body iframe {
min-height: 58vh;
}
.route-map-actions {
left: 1.15rem;
right: 1.15rem;
}
.route-open-btn {
width: 100%;
}
}
@media (prefers-reduced-motion: reduce) {
.gift-reveal.is-active {
animation: none;
}
.gift-reveal.is-active .bill {
animation: none;
opacity: 0;
}
}
@media (max-width: 380px) {