Svadba Evičky a Adama

Eva & Adam

Náš veľký deň: 14. Septembra 2026 | Bratislava

Svadba sa blíži!

0 Dni
0 Hodiny
0 Minúty
0 Sekundy

Náš Príbeh

Stretli sme sa za kurióznych okolností, no od prvej chvíle sme vedeli, že je to niečo výnimočné. Naše srdcia si našli spoločnú reč v smiechu, porozumení a nekonečnej láske. Spoločne sme prešli mnohými dobrodružstvami a tešíme sa na to, čo nám prinesie budúcnosť ako manželia. Toto je začiatok našej večnosti.

Detaily Svadby

Oslava

Dátum: Sobota, 14. Septembra 2024

Čas: 15:00

Miesto: Grand Hotel River Park, Bratislava

Hostina a Oblečenie

Hostina: Začne sa o 18:00 v sále Hotela Kempinski

Dress Code: Spoločenský odev (Smart Casual)

Ubytovanie: Pre hostí zďaleka sme zabezpečili zľavu v hoteli. Viac informácií emailom.

Galéria Spomienok

Potvrďte Svoju Účasť

Prosím, vyplňte formulár nižšie, aby sme vedeli s Vami počítať.

S láskou, Eva & Adam

14. Septembra 2024

const galleryImages = document.querySelectorAll('.gallery-item img'); const lightbox = document.getElementById('lightbox'); const lightboxImg = document.getElementById('lightbox-img'); const closeButton = document.querySelector('.close-button'); galleryImages.forEach(img => { img.addEventListener('click', () => { lightbox.style.display = 'flex'; lightboxImg.src = img.src; document.body.style.overflow = 'hidden'; // Prevent background scrolling }); }); closeButton.addEventListener('click', () => { lightbox.style.display = 'none'; document.body.style.overflow = ''; // Restore background scrolling }); lightbox.addEventListener('click', (event) => { if (event.target === lightbox) { lightbox.style.display = 'none'; document.body.style.overflow = ''; // Restore background scrolling } }); // Smooth Scroll for RSVP Button document.getElementById('rsvpBtnHero').addEventListener('click', function(e) { e.preventDefault(); document.getElementById('rsvpForm').scrollIntoView({ behavior: 'smooth' }); }); // Form Submission (Basic Example) document.getElementById('rsvpForm').addEventListener('submit', function(e) { e.preventDefault(); // In a real application, you would send this data to a server alert('Ďakujeme za potvrdenie! Vaša odpoveď bola prijatá.'); // Optionally clear the form or redirect // this.reset(); }); // Add pointer cursor to the select element's container for better UX const selectContainer = document.querySelector('#attendance').parentElement; selectContainer.style.cursor = 'pointer'; selectContainer.style.position = 'relative'; // Needed for the icon positioning