:root { --color-bg: #fdfaf3; --color-text: #4a4a4a; --color-brown: #71583a; --color-blue: #4a90e2; --color-yellow: #f5a623; --color-green: #7ed321; --font-heading: 'Fredoka One', cursive; --font-body: 'Poppins', sans-serif; } body, html { margin: 0; padding: 0; background-color: #e9e2d5; font-family: var(--font-body); color: var(--color-text); scroll-behavior: smooth; overflow-x: hidden; } /* [BARU] Parallax Background */ .parallax-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } .parallax-layer { position: absolute; width: 100%; height: 100%; background-repeat: repeat-x; background-position: bottom; } #layer-1 { background-image: url('https://undang-doi.com/assets/img/sample/sample1.jpg'); opacity: 0.3; } #layer-2 { background-image: url('https://undang-doi.com/assets/img/sample/sample2.jpg'); opacity: 0.5; } #layer-3 { background-image: url('https://undang-doi.com/assets/img/sample/sample3.jpg'); } /* === Cover Splash Screen === */ #cover-splash { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 100; background-color: var(--color-bg); background-image: url('https://www.transparenttextures.com/patterns/notebook-dark.png'); display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; transition: opacity 0.8s ease-out; } #cover-splash.hidden { opacity: 0; pointer-events: none; } .cover-3d-illustration { width: 300px; animation: float 4s ease-in-out infinite; } .cover-content h1 { font-family: var(--font-heading); font-size: clamp(3rem, 15vw, 6rem); color: var(--color-brown); margin: 0; } #enter-button { background-color: var(--color-blue); color: white; border: none; padding: 15px 35px; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; border-radius: 50px; cursor: pointer; margin-top: 20px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); transition: all 0.3s; } #enter-button:hover { transform: scale(1.05); background-color: #5aa1f2; } /* === Main Content Styling === */ main { background-color: var(--color-bg); } .container { max-width: 900px; margin: 0 auto; padding: 20px 30px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); } section { padding: 60px 0; text-align: center; } .animated { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; } .animated.visible { opacity: 1; transform: translateY(0); } .animated.delay-1 { transition-delay: 0.2s; } .section-title { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 30px; color: var(--color-brown); } .bunting-divider { width: 100%; height: 40px; background-image: url('https://undang-doi.com/assets/img/sample/sample2.jpg'); background-repeat: repeat-x; background-size: contain; margin: 30px 0; } p.intro { font-size: 1.2rem; line-height: 1.8; max-width: 600px; margin: 0 auto 30px auto; } .card { background-color: #fff; border-radius: 15px; padding: 25px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s; } .card:hover { transform: translateY(-10px); } .card .icon { font-size: 3rem; margin-bottom: 15px; } .card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; color: var(--color-brown); } /* [BARU] Countdown */ #countdown { display: flex; justify-content: center; gap: 15px; margin: 30px 0; } .time-box { background-color: white; padding: 10px; border-radius: 8px; width: 70px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); border: 2px solid var(--color-blue); } .time-box span { display: block; font-weight: 600; font-size: 2rem; color: var(--color-blue); } /* [BARU] Galeri & Lightbox */ .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .gallery-item img { width: 100%; border: 10px solid #fff; box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); cursor: pointer; transition: transform 0.3s; } .gallery-item img:hover { transform: scale(1.05); } #lightbox { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); display: none; justify-content: center; align-items: center; } #lightbox.active { display: flex; } #lightbox img { max-width: 90%; max-height: 80%; } /* [BARU] Buku Kenangan */ #memory-wall { background-color: #e9e2d5; padding: 60px 0; } .btn-submit { background-color: var(--color-yellow); color: var(--color-brown); border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: 600; border-radius: 50px; cursor: pointer; transition: all 0.3s; width: 100%; } .btn-submit:hover { transform: scale(1.05); } /* [BARU] Bottom Nav & Music Control */ .bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 99; display: none; } .bottom-bar.visible { display: block; } .bottom-nav { background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); display: flex; justify-content: space-around; padding: 8px 0; } .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--color-text); text-decoration: none; transition: color 0.3s; } .nav-item.active, .nav-item:hover { color: var(--color-blue); } .nav-icon { font-size: 1.5rem; } .nav-label { font-size: 0.7rem; font-family: 'Poppins'; } #music-control { background-color: var(--color-brown); color: white; padding: 10px; display: flex; justify-content: center; align-items: center; } #music-control button { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; margin: 0 10px; } footer { text-align: center; padding: 40px; font-size: 1rem; margin-bottom: 90px; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } .input-text { width: 90%; padding: 12px 15px; border: 2px solid var(--color-blue); border-radius: 5px; background-color: #fff; color: #333; font-size: 1rem; margin-bottom: 15px; }
🎨 Preview Template: Reunion Fest | Kategori: Reunion
← Kembali ke Gallery ✨ Daftar untuk Menggunakan
Reuni Alumni: Bersama Kita Kenang Masa Lalu
3D Camping Tent

Reuni Alumni

Bersama Kita Kenang Masa Lalu

Angkatan 2010 - 2010

SMA Negeri 1 Jakarta

Hey, Kawan Lama!

Dengan sukacita kami mengundang Anda untuk merayakan ulang tahun yang istimewa

Festival Info

Tanggal & Waktu

Thursday, 2026-04-30
19:00 - 23:00

Lokasi

Restaurant The Terrace
{alamat_venue}
Peta Lokasi

Dress Code

Smart Casual

Pesan Tiketmu!

Biar kita bisa siapin semuanya, tolong konfirmasi kehadiranmu ya. GRATIS kok!

Panitia Reuni SMAN 1

Kontak: Rani (08111222333) | Email: reuni@sman1jakarta.com

Happy Birthday - Stevie Wonder