:root {
--bg: #120d11;
--wine: #5f1724;
--wine-dark: #3f0f19;
--gold: #c59b59;
--gold-soft: #efd8ac;
--text: #f7f0e4;
--muted: #d1c3b0;
--line: rgba(247, 240, 228, 0.22);
--panel: rgba(37, 25, 30, 0.9);
--card: rgba(48, 34, 38, 0.92);
--font-head: "Cinzel", serif;
--font-body: "Manrope", sans-serif;
--font-accent: "IBM Plex Mono", monospace;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
color: var(--text);
font-family: var(--font-body);
background:
radial-gradient(
circle at 12% 16%,
rgba(197, 155, 89, 0.2),
transparent 34%
),
radial-gradient(
circle at 88% 18%,
rgba(95, 23, 36, 0.24),
transparent 34%
),
linear-gradient(180deg, #0d090c 0%, #171116 55%, #1f171d 100%);
min-height: 100vh;
overflow-x: hidden;
}
body.locked {
overflow: hidden;
}
a {
color: inherit;
text-decoration: none;
}
button,
input,
textarea,
select {
font: inherit;
}
.grain {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
opacity: 0.06;
background-image: repeating-linear-gradient(
90deg,
rgba(255, 255, 255, 0.1) 0,
rgba(255, 255, 255, 0.1) 1px,
transparent 1px,
transparent 6px
);
}
.page {
position: relative;
z-index: 1;
}
.cover {
position: fixed;
inset: 0;
z-index: 90;
overflow: hidden;
background:
radial-gradient(
circle at 50% 26%,
rgba(247, 240, 228, 0.1),
transparent 42%
),
linear-gradient(180deg, rgba(10, 8, 10, 0.72), rgba(10, 8, 10, 0.92)),
url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1200") center/cover no-repeat;
transition:
opacity 0.65s ease,
transform 0.65s ease;
}
.cover.hidden {
opacity: 0;
transform: scale(1.02);
pointer-events: none;
}
.stage {
position: absolute;
inset: 0;
display: grid;
place-items: center;
}
.spotlight {
position: absolute;
top: -18%;
left: 50%;
width: min(620px, 92vw);
height: 95vh;
transform: translateX(-50%);
background: radial-gradient(
ellipse at top,
rgba(247, 240, 228, 0.32),
transparent 68%
);
opacity: 0;
transition: opacity 0.8s ease;
pointer-events: none;
}
.cover.opening .spotlight {
opacity: 1;
}
.curtain {
position: absolute;
top: 0;
bottom: 0;
width: 52%;
background:
repeating-linear-gradient(
90deg,
rgba(255, 255, 255, 0.05) 0,
rgba(255, 255, 255, 0.05) 16px,
rgba(0, 0, 0, 0.08) 16px,
rgba(0, 0, 0, 0.08) 30px
),
linear-gradient(180deg, #7d2234 0%, #551322 50%, #3b0c17 100%);
box-shadow: inset -16px 0 24px rgba(0, 0, 0, 0.25);
transition: transform 1.15s cubic-bezier(0.23, 1, 0.32, 1);
z-index: 3;
}
.curtain.left {
left: 0;
transform: translateX(0);
}
.curtain.right {
right: 0;
transform: translateX(0);
box-shadow: inset 16px 0 24px rgba(0, 0, 0, 0.25);
}
.cover.opening .curtain.left {
transform: translateX(-102%);
}
.cover.opening .curtain.right {
transform: translateX(102%);
}
.rope {
position: absolute;
top: 0;
width: 6px;
height: 190px;
background: linear-gradient(180deg, #d8c8a1, #b59b67);
border-radius: 999px;
z-index: 4;
transition: transform 0.4s ease;
}
.rope::after {
content: "";
position: absolute;
bottom: -18px;
left: 50%;
transform: translateX(-50%);
width: 18px;
height: 18px;
border-radius: 50%;
background: #d7bf8f;
}
.rope.left {
left: 18%;
}
.rope.right {
right: 18%;
}
.cover.opening .rope.left {
transform: translateY(18px);
}
.cover.opening .rope.right {
transform: translateY(18px);
}
.stage-card {
width: min(760px, calc(100% - 2rem));
border-radius: 18px;
border: 1px solid rgba(247, 240, 228, 0.34);
background: linear-gradient(
165deg,
rgba(197, 155, 89, 0.22),
rgba(30, 22, 26, 0.82) 52%,
rgba(18, 14, 17, 0.94)
);
box-shadow: 0 24px 68px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(8px);
padding: clamp(1.1rem, 3.2vw, 2rem);
opacity: 0;
transform: translateY(12px) scale(0.98);
transition:
opacity 0.6s ease,
transform 0.6s ease;
z-index: 2;
}
.stage-card.revealed {
opacity: 1;
transform: translateY(0) scale(1);
}
.kicker {
font-family: var(--font-accent);
font-size: 0.74rem;
letter-spacing: 0.2em;
text-transform: uppercase;
}
.cover-title,
.hero-title,
.section-title,
.card-title {
margin: 0;
font-family: var(--font-head);
line-height: 1.08;
}
.cover-title {
margin-top: 0.7rem;
font-size: clamp(2.1rem, 6.4vw, 4.4rem);
}
.rule {
height: 1px;
margin: 0.76rem 0 1rem;
background: linear-gradient(
90deg,
transparent,
rgba(197, 155, 89, 0.84),
transparent
);
}
.chip {
display: inline-flex;
align-items: center;
gap: 0.42rem;
border: 1px dashed rgba(247, 240, 228, 0.52);
border-radius: 999px;
padding: 0.36rem 0.74rem;
font-family: var(--font-accent);
font-size: 0.74rem;
text-transform: uppercase;
}
.seal-btn {
position: absolute;
left: 50%;
top: 42%;
transform: translate(-50%, -50%);
width: 94px;
height: 94px;
border-radius: 50%;
border: 2px solid rgba(102, 20, 33, 0.62);
background: radial-gradient(circle at 30% 30%, #d04a5f, #8f2436 72%);
color: #ffdfe4;
display: grid;
place-items: center;
z-index: 6;
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.38);
animation: seal-pulse 2.2s ease-in-out infinite;
cursor: pointer;
}
.seal-btn.cracked {
animation: none;
transform: translate(-50%, -50%) scale(0.94);
filter: saturate(0.86);
}
.crack-particles {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 7;
}
.crack-particles span {
position: absolute;
width: 6px;
height: 6px;
border-radius: 999px;
background: rgba(122, 30, 42, 0.84);
opacity: 0;
animation: particle-fly 0.7s ease forwards;
}
.open-btn,
.map-btn,
.copy-btn,
.submit-btn,
.music-btn,
.top-btn {
border: 0;
border-radius: 999px;
cursor: pointer;
transition:
transform 0.22s ease,
box-shadow 0.22s ease;
}
.open-btn {
margin-top: 0.95rem;
min-height: 46px;
padding: 0.78rem 1.2rem;
background: linear-gradient(120deg, #c59b59, #8f7239);
color: #120e10;
font-weight: 700;
opacity: 0.45;
pointer-events: none;
}
.open-btn.ready {
opacity: 1;
pointer-events: auto;
}
.hero {
min-height: 88vh;
display: grid;
align-items: center;
background:
linear-gradient(180deg, rgba(11, 9, 10, 0.64), rgba(11, 9, 10, 0.9)),
url("https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=1200") center/cover no-repeat;
}
.hero-inner,
.section-inner,
.footer-inner {
width: min(1120px, calc(100% - 2rem));
margin-inline: auto;
}
.hero-panel,
.section-panel {
border-radius: 16px;
padding: clamp(1.15rem, 3.2vw, 2rem);
}
.hero-panel {
border: 1px solid rgba(247, 240, 228, 0.3);
background: rgba(37, 27, 32, 0.76);
}
.hero-title {
margin-top: 0.65rem;
font-size: clamp(2rem, 6vw, 4.1rem);
}
.hero-sub {
margin: 0.84rem 0;
color: rgba(247, 240, 228, 0.9);
}
.countdown {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 0.6rem;
}
.count-box {
border: 1px solid rgba(247, 240, 228, 0.3);
border-radius: 12px;
background: rgba(247, 240, 228, 0.08);
text-align: center;
padding: 0.54rem;
}
.count-value {
display: block;
font-family: var(--font-head);
font-size: clamp(1.25rem, 3.2vw, 1.95rem);
font-weight: 700;
transform-origin: center;
}
.count-value.tick {
animation: count-flip 0.22s ease;
}
.count-label {
font-size: 0.72rem;
text-transform: uppercase;
letter-spacing: 0.11em;
font-family: var(--font-accent);
}
section {
padding: clamp(2.9rem, 7.2vw, 4.9rem) 0;
}
.section-panel {
border: 1px solid var(--line);
background: var(--panel);
box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}
.section-title {
margin-top: 0.5rem;
font-size: clamp(1.82rem, 4.8vw, 2.95rem);
}
.section-rule {
height: 1px;
margin: 0.74rem 0 1rem;
background: linear-gradient(
90deg,
rgba(247, 240, 228, 0.08),
rgba(247, 240, 228, 0.46),
rgba(247, 240, 228, 0.08)
);
}
.story-grid,
.family-grid,
.schedule-grid,
.gallery-grid,
.gift-grid,
.rsvp-grid,
.wish-list {
display: grid;
gap: 1rem;
}
.copy,
.meta {
color: var(--muted);
line-height: 1.75;
}
.quote {
margin: 0.9rem 0 0;
border-left: 4px solid var(--gold);
border-radius: 10px;
background: rgba(197, 155, 89, 0.16);
padding: 0.92rem;
font-family: var(--font-head);
font-size: clamp(1.02rem, 2.7vw, 1.36rem);
}
.card,
.wish-item {
border-radius: 12px;
border: 1px solid rgba(247, 240, 228, 0.2);
background: var(--card);
padding: 0.95rem;
}
.portrait-grid {
display: grid;
gap: 0.8rem;
}
.portrait-card {
border-radius: 12px;
border: 1px solid rgba(247, 240, 228, 0.2);
background: var(--card);
overflow: hidden;
}
.portrait-photo {
aspect-ratio: 4 / 5;
background-size: cover;
background-position: center;
}
.portrait-pria {
background-image: url("https://images.unsplash.com/photo-1459204137123-238c569e22bd?w=400");
}
.portrait-wanita {
background-image: url("https://images.unsplash.com/photo-1596092882833-4a5417bc7ac7?w=400");
}
.portrait-meta {
padding: 0.7rem 0.85rem 0.85rem;
}
.portrait-name {
margin: 0.2rem 0 0;
}
.label {
font-size: 0.72rem;
letter-spacing: 0.14em;
text-transform: uppercase;
font-family: var(--font-accent);
color: #e4cfa9;
}
.card-title {
margin-top: 0.3rem;
font-size: 1.58rem;
}
.schedule-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.6rem;
}
.badge {
display: inline-flex;
align-items: center;
border: 1px solid rgba(197, 155, 89, 0.64);
background: rgba(197, 155, 89, 0.14);
color: #efdcb9;
border-radius: 999px;
padding: 0.3rem 0.66rem;
font-family: var(--font-accent);
font-size: 0.72rem;
text-transform: uppercase;
}
.map-btn,
.copy-btn,
.submit-btn,
.music-btn,
.top-btn {
min-height: 42px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.44rem;
padding: 0.6rem 0.95rem;
color: #f7f1e8;
background: #5f566f;
}
.map-btn,
.submit-btn {
color: #10161a;
background: linear-gradient(120deg, #c59b59, #8f7239);
}
.submit-btn {
margin-top: 0.86rem;
}
.gallery-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-item {
position: relative;
min-height: clamp(170px, 31vw, 255px);
border-radius: 12px;
border: 1px solid rgba(247, 240, 228, 0.24);
background: #6b5752;
overflow: hidden;
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition:
transform 0.45s ease,
filter 0.45s ease;
}
.gallery-item:hover img {
transform: scale(1.05);
filter: contrast(1.08) saturate(1.06);
}
.gallery-tag {
position: absolute;
right: 0.55rem;
bottom: 0.55rem;
font-family: var(--font-accent);
font-size: 0.7rem;
text-transform: uppercase;
color: #fff;
background: rgba(0, 0, 0, 0.55);
border-radius: 999px;
padding: 0.24rem 0.5rem;
}
.field {
display: grid;
gap: 0.35rem;
margin-top: 0.74rem;
}
.field label {
color: #ddd0c0;
font-size: 0.88rem;
}
.field input,
.field select,
.field textarea {
min-height: 44px;
border-radius: 10px;
border: 1px solid rgba(247, 240, 228, 0.24);
background: rgba(255, 255, 255, 0.06);
color: #f6efe5;
padding: 0.58rem 0.74rem;
}
.field textarea {
min-height: 108px;
resize: vertical;
}
.wish-list {
max-height: 320px;
overflow-y: auto;
}
.private-card {
border-style: dashed;
}
.private-grid {
display: grid;
gap: 0.8rem;
margin-top: 0.8rem;
}
.private-code {
font-family: var(--font-accent);
word-break: break-all;
}
.private-qr {
width: min(136px, 100%);
aspect-ratio: 1;
border-radius: 10px;
object-fit: cover;
border: 1px solid rgba(247, 240, 228, 0.26);
}
.floating {
position: fixed;
right: 0.86rem;
bottom: 1rem;
z-index: 40;
display: grid;
gap: 0.45rem;
}
.music-btn.playing {
color: #10161a;
background: linear-gradient(120deg, #c59b59, #8f7239);
}
.footer {
padding: 2rem 0 2.38rem;
}
.footer-inner {
text-align: center;
color: #d8cfc1;
}
.lightbox {
position: fixed;
inset: 0;
z-index: 95;
display: none;
place-items: center;
padding: 1rem;
background: rgba(0, 0, 0, 0.86);
}
.lightbox.active {
display: grid;
}
.lightbox img {
width: min(900px, 100%);
max-height: 88vh;
object-fit: contain;
border-radius: 12px;
}
.fade-up {
opacity: 0;
transform: translateY(18px);
transition:
opacity 0.5s ease,
transform 0.5s ease;
}
.fade-up.show {
opacity: 1;
transform: translateY(0);
}
.open-btn:hover,
.copy-btn:hover,
.map-btn:hover,
.submit-btn:hover,
.music-btn:hover,
.top-btn:hover {
transform: translateY(-2px);
}
@keyframes seal-pulse {
0%,
100% {
transform: translate(-50%, -50%) scale(1);
}
50% {
transform: translate(-50%, -50%) scale(1.06);
}
}
@keyframes particle-fly {
from {
opacity: 1;
transform: translate(0, 0) scale(1);
}
to {
opacity: 0;
transform: translate(var(--x), var(--y)) scale(0.2);
}
}
@keyframes count-flip {
0% {
transform: rotateX(0deg);
}
50% {
transform: rotateX(-82deg);
}
100% {
transform: rotateX(0deg);
}
}
@media (min-width: 760px) {
.story-grid {
grid-template-columns: 1.25fr 0.75fr;
}
.schedule-grid,
.gift-grid,
.rsvp-grid,
.private-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
.seal-btn {
width: 78px;
height: 78px;
top: 40%;
}
.rope.left {
left: 9%;
}
.rope.right {
right: 9%;
}
.curtain {
width: 54%;
}
.stage-card {
width: calc(100% - 1.25rem);
}
.countdown,
.gallery-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-grid {
grid-template-columns: 1fr;
}
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation: none !important;
transition: none !important;
scroll-behavior: auto !important;
}
}
The Wedding of Our Dreams: Ahmad Rizki & Siti Nurhaliza
Grand Stage Curtain
The Wedding of Our Dreams
Bersama Kita Wujudkan Mimpi
Dipersembahkan oleh Ahmad Rizki &
Siti Nurhaliza
Keluarga Besar Rahman
Yang Terhormat
Curtain Call Countdown
Ahmad Rizki & Siti Nurhaliza
Friday, 2026-05-15 - Masjid Al-Ikhlas
00Days
00Hours
00Minutes
00Seconds
Act I
Kisah Kami
Kami bertemu pertama kali di kampus dan sejak saat itu hubungan kami terus berkembang hingga akhirnya memutuskan untuk menjalani hidup bersama.
"Dan di antara tanda-tanda kekuasaan-Nya ialah Dia menciptakan untukmu isteri-isteri dari jenismu sendiri."
Performer A
Ahmad Rizki Suryadi
Nama panggilan: Rizki
Putra dari Bapak Suryadi dan
Ibu Siti Aminah
Performer B
Siti Nurhaliza Rahmat
Nama panggilan: Siti
Putri dari Bapak Rahmat dan
Ibu Fatimah
Portrait Performer A
Ahmad Rizki Suryadi
Portrait Performer B
Siti Nurhaliza Rahmat
Act II
Jadwal Acara
Akad Nikah
Scene A
Friday, 2026-05-15
09:00 - 11:00
Masjid Al-Ikhlas
Jl. Masjid Raya No. 456, Jakarta Pusat
Buka Peta
Akad
Resepsi
Scene B
Friday, 2026-05-15
19:00 - 22:00
Gedung Serbaguna Menteng
Jl. Menteng Raya No. 123, Jakarta Pusat
Buka Peta
Resepsi
Act IV
Hadiah dan Dukungan
Box Office 01
Bank Mandiri
No. Rekening: 1234567890
Atas
Nama: Ahmad Siti Wedding
Box Office 02
GoPay
No. Rekening: 081234567890
Atas
Nama: Ahmad Rizki
Act V
RSVP dan Ucapan
Form Kehadiran
Guestbook
Contoh Tamu: Selamat menempuh hidup baru,
semoga selalu harmonis.
Act VI
Akses Undangan Privat
Gunakan kode ini untuk verifikasi akses tamu.