@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px) translateX(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes slideInUpAccent {
    from {
        opacity: 0;
        transform: translateY(50px) translateX(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

/* Mengatur delay agar elemen muncul bergantian */


/* Variasi delay untuk elemen berurutan (stagger effect) */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* --- Penerapan pada Elemen --- */

/* Delay berbeda untuk setiap daun agar lebih dinamis */


/* State dasar sebelum animasi */
.animate-hidden {
    opacity: 0;
    transform: translateY(40px);
    /* Muncul dari bawah */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

/* State saat elemen masuk ke viewport */
.animate-show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* --- Animasi Pesan Penutup (Fade In saja) --- */


/* --- Animasi Thank You (Expand Letter Spacing) --- */
.thank-you-text.animate-hidden {
    opacity: 0;
    letter-spacing: 10px;
    transform: scale(1.1);
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.thank-you-text.animate-show {
    opacity: 1;
    letter-spacing: -2px;
    /* Kembali ke gaya rapat sesuai gambar */
    transform: scale(1);
}

/* --- Animasi Foto Closing (Zoom Out ke Frame) --- */
.closing-photo.animate-hidden {
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.5s ease-out;
}

.closing-photo.animate-show {
    opacity: 1;
    transform: scale(1);
}

/* Mengaktifkan scroll halus untuk seluruh halaman */
html {
    scroll-behavior: smooth;
}

/* --- CUSTOM SCROLLBAR --- */
/* Ukuran scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* Bagian jalur (track) scrollbar */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Bagian batang (thumb) scrollbar */
::-webkit-scrollbar-thumb {
    background: #8da1b9;
    /* Warna biru sesuai Save The Date Anda */
    border-radius: 10px;
}

/* Batang scrollbar saat diarahkan kursor (hover) */
::-webkit-scrollbar-thumb:hover {
    background: #343638;
    /* Warna gelap sesuai tema card Anda */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
    /* Mencegah scroll horizontal seluruh halaman */
    margin: 0;
    padding: 0;
    width: 100%;
}

.wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Reset & Base Font */
body,
html {

    font-family: 'Serif', 'Georgia', serif;
    color: #6d5d4b;
    background-color: #1a2a33;

}

.wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    /* Mencegah seluruh halaman scroll */
}

/* Class khusus untuk nama pengantin */

/* --- BAGIAN KIRI (FIXED/STATIS) --- */
/* --- BAGIAN KIRI (FIXED/STATIS) --- */
.left-section {
    color: #ffffff;
    /* Mengganti emas ke putih agar kontras dengan aurora */
    flex: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Mengubah ke flex-end agar konten di bawah lebih natural */
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Overlay Aurora yang dinamis untuk bagian kiri */
.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient yang lebih deep dan sesuai tema aurora */
    background: linear-gradient(to top,
            rgba(15, 12, 41, 0.9) 10%,
            rgba(48, 43, 99, 0.4) 50%,
            rgba(15, 12, 41, 0.2) 100%);
    z-index: 1;
}

/* Menambahkan aksen cahaya aurora tambahan */
.left-section::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    animation: auroraFloat 10s ease-in-out infinite alternate;
}

@keyframes auroraFloat {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(10%, 10%);
    }
}

.left-content {
    position: relative;
    z-index: 2;
    /* Menghapus bottom: -363px dan menggunakan padding/flex untuk posisi yang lebih aman */
    margin-bottom: 40px;
}

.left-content h2 {
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    /* Menggunakan warna aksen tema (peach/orange) */
    text-transform: uppercase;
}

.left-content h1 {
    font-size: 4.5rem;
    /* Sedikit dikecilkan agar lebih proporsional */
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.left-content h1 span {
    display: block;
    font-size: 2.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    opacity: 0.8;
}


/* Ukuran font diperbesar agar Beau Rivage terlihat jelas */

/* --- BAGIAN Kanan (SCROLLABLE) --- */
.right-section {
    flex: 1;
    overflow-y: auto;
    background: #0f0c29;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.0); */
}


/* Import Google Fonts */
:root {
    --primary-color: #a29bfe;
    --secondary-color: #6c5ce7;
    --accent-color: #fab1a0;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #2d3436;
    --text-light: #ffffff;
}

.first-screen {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f0c29;
    /* Fallback */
    background: linear-gradient(to bottom, #24243e, #302b63, #0f0c29);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Animasi Background Aurora */
.aurora-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 40%),
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, var(--accent-color) 0%, transparent 35%);
    filter: blur(80px);
    opacity: 0.5;
    animation: rotateAurora 20s linear infinite;
    z-index: 1;
}

@keyframes rotateAurora {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.container {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    max-width: 450px;
}

/* Glassmorphism Card */
.cover-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease-out;
}

.photo-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.cover-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cover-card:hover .cover-photo {
    transform: scale(1.05);
}

.sub-title {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.couple-names {
    font-size: 2.2rem;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.couple-names span {
    display: block;
    font-size: 1.5rem;
    margin: 5px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    opacity: 0.8;
}

.guest-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: #bdbdbd;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px dashed var(--glass-border);
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 10px 0;
    font-weight: 600;
}

.guest-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

/* Modern Button */
.btn-open {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-open:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(108, 92, 231, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
        /* Sembunyikan bagian kiri */
    }

    .right-section {
        flex: 1;
        width: 100%;
    }

    .container {
        padding: 0px;
    }
}

/* Import Google Fonts (Tambahkan di bagian head HTML) */

/* --- 1. RESET & BASE --- */
.opening-section {
    position: relative;
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0c29;
    /* Dasar gelap agar aurora menonjol */
    overflow: hidden;
}

/* Orbs dekoratif yang melayang pelan */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    bottom: 5%;
    left: -10%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.glass-main-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px 25px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Image Frame Style */
.image-frame {
    position: relative;
    width: 200px;
    height: 280px;
    margin: 0 auto 40px;
}

.frame-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-color);
    border-radius: 100px 100px 20px 20px;
    /* Bentuk arch yang modern */
    z-index: 1;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 100px 20px 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.save-the-date-opening {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.couple-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.ampersand {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 10px 0;
}

/* Date Badge Style */
.event-detail {
    margin: 30px 0;
}

.date-badge {
    display: inline-block;
    padding: 15px 30px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.day {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.month-year {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.glass-quote {
    margin-top: 40px;
    padding: 20px;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* State Awal: Sembunyi & Bergeser ke bawah */
.glass-main-content,
.image-frame,
.opening-text-wrapper>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Class yang akan dipicu JS saat di-scroll */
.reveal .glass-main-content {
    opacity: 1;
    transform: translateY(0);
}

.reveal .image-frame {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
    /* Muncul setelah card */
}

.reveal .save-the-date-opening {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.reveal .couple-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.reveal .event-detail {
    opacity: 1;
    transform: translateY(0);
    transition-delays: 0.9s;
}

.reveal .glass-quote {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

/* Animasi tambahan untuk Image Frame agar lebih dinamis */
.reveal .frame-border {
    animation: borderGrow 1.5s ease-out forwards 0.5s;
}

@keyframes borderGrow {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pastikan elemen benar-benar tidak terlihat sebelum di-scroll */
.glass-main-content,
.image-frame,
.opening-text-wrapper>* {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    /* Memberitahu browser untuk optimasi */
}

/* quotes  */
.quotes-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: #0f0c29;
    overflow: hidden;
}

/* Background Aurora khusus section Quotes */
.quotes-aurora {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 70% 20%, var(--secondary-color) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, var(--primary-color) 0%, transparent 40%);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

.quotes-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    /* State Awal untuk Animasi Scroll */
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Aktif saat di-scroll (Gunakan script yang sama dengan sebelumnya) */
.reveal.quotes-section .quotes-glass-card {
    opacity: 1;
    transform: scale(1);
}

.quotes-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0.6;
}

.quotes-sub-title {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.quotes-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
}

.quotes-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.quotes-divider .line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border));
}

.quotes-divider .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.quotes-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 20px;
}

.quotes-source {
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* couple section  */
.couple-section {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    overflow: hidden;
    min-height: 100vh;
}

/* Dekorasi Tengah (Adopsi Gambar) */
.center-decor-wrapper {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.reveal .center-decor-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.stacked-text {
    position: relative;
    display: inline-block;
    line-height: 0.8;
}

.text-large {
    font-size: 8rem;
    font-weight: 900;
    color: rgb(255 255 255 / 29%);
    display: block;
}

.text-outline {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    display: block;
}

.text-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: #0f0c29;
    padding: 5px 20px;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.7rem;
    white-space: nowrap;
    width: 120%;
}

.decor-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto;
}

.with-you {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #fff;
}

/* Grid & Cards */
.couple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.couple-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 40px 20px;
    text-align: center;
    opacity: 0;
    transition: all 1s ease;
}

.groom {
    transform: translateX(-50px);
}

.bride {
    transform: translateX(50px);
}

.reveal .couple-card {
    opacity: 1;
    transform: translateX(0);
}

.profile-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #0f0c29;
}

.couple-info .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.couple-info .desc {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.couple-info .parents {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ig-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .couple-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .text-large,
    .text-outline {
        font-size: 5rem;
    }
}

/* save date  */
.save-the-date {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.aurora-countdown {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--secondary-color) 0%, transparent 60%);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

.countdown-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    /* Animasi Scroll State */
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal .countdown-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.countdown-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.countdown-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    display: block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.countdown-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 5px;
}

.calendar-action .btn-calendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calendar-action .btn-calendar:hover {
    background: var(--accent-color);
    color: #0f0c29;
    box-shadow: 0 0 20px rgba(250, 177, 160, 0.4);
}

/* Responsif untuk Mobile */
@media (max-width: 600px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .countdown-item .number {
        font-size: 2.2rem;
    }

    .countdown-title {
        font-size: 2rem;
    }
}

/* event section  */
.event-section {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animasi Aurora Bergerak */
.aurora-bg-event {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, var(--secondary-color) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, var(--primary-color) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, var(--accent-color) 0%, transparent 50%);
    filter: blur(100px);
    opacity: 0.25;
    animation: moveAurora 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes moveAurora {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(-50px, 50px) rotate(10deg);
    }
}

.event-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.event-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 2px;
}

.decor-line-event {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 50px;
}

.event-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

/* Animasi Scroll (Reveal) */
.reveal .event-card {
    opacity: 1;
    transform: translateY(0);
}

.reveal .event-card.resepsi {
    transition-delay: 0.3s;
}

.event-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.event-info-box {
    text-align: left;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-item p,
.info-item span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-maps:hover {
    background: var(--primary-color);
    box-shadow: 0 10px 20px rgba(162, 155, 254, 0.4);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        padding: 40px 20px;
    }
}

/* story section  */
.story-section {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    min-height: 100vh;
    overflow: hidden;
}

/* Dekorasi Aurora Trail */
.story-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% -20%, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.story-pre-title {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 800;
}

.story-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-top: 10px;
}

.story-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Photo Styling */
.story-image-box {
    position: relative;
    padding: 20px;
}

.image-glow-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px dashed rgb(162 155 254 / 50%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 10s infinite linear;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.story-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.photo-caption-glass {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgb(255 255 255 / 29%);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgb(24 21 61);
    color: #a29bfe;
    font-size: 0.8rem;
}

/* Timeline Narasi */
.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), var(--accent-color), transparent);
}

.story-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reveal .story-item {
    opacity: 1;
    transform: translateX(0);
}

.story-item:nth-child(2) {
    transition-delay: 0.3s;
}

.story-item:nth-child(3) {
    transition-delay: 0.6s;
}

.story-marker {
    position: absolute;
    left: -39px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color);
    z-index: 2;
}

.story-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
}

.story-glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-color);
}

.story-glass-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.story-glass-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .story-content-wrapper {
        grid-template-columns: 1fr;
    }

    .story-img {
        height: 300px;
    }
}

/* gallery  */
.gallery-section {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    overflow: hidden;
}

.gallery-aurora {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    background: radial-gradient(circle at 80% 20%, var(--primary-color) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, var(--accent-color) 0%, transparent 40%);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Bento Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reveal Animation */
.reveal .gallery-item {
    opacity: 1;
    transform: scale(1);
}

/* Custom Bento Sizes */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Hover Overlay */
.zoom-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 92, 231, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon i {
    color: #fff;
    font-size: 2rem;
    transform: translateY(20px);
    transition: 0.4s;
}

.gallery-item:hover .zoom-icon i {
    transform: translateY(0);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .item-wide {
        grid-column: span 2;
    }
}

/* gift  */
.gift-section {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.aurora-gift {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 80%, var(--secondary-color) 0%, transparent 50%);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

.gift-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gift-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.gift-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gift-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

/* Card Styling */
.bank-card {
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal .bank-card {
    opacity: 1;
    transform: translateY(0);
}

.reveal .bank-card:nth-child(2) {
    transition-delay: 0.3s;
}

.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
}

.card-glass:hover {
    transform: scale(1.02) rotateX(5deg);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-logo {
    height: 25px;
}

.logo-white {
    filter: brightness(0) invert(1);
}

.fa-microchip {
    color: var(--accent-color);
    font-size: 1.5rem;
    opacity: 0.8;
}

.acc-number {
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.acc-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-copy {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-copy:hover {
    background: var(--accent-color);
    color: #0f0c29;
}

/* Address Box */
.gift-address-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.address-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.address-content h3 {
    color: #fff;
    margin-bottom: 5px;
}

.address-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.link-maps {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
    .gift-grid {
        grid-template-columns: 1fr;
    }

    .gift-address-box {
        flex-direction: column;
        text-align: center;
    }
}

/* rsvp  */
.rsvp-section {
    position: relative;
    padding: 100px 20px;
    background: #0f0c29;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Container Animasi Aurora */
.aurora-rsvp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Layer Aurora Bergerak */
.aurora-rsvp::before,
.aurora-rsvp::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    filter: blur(80px);
    opacity: 0.2;
}

.aurora-rsvp::before {
    background: radial-gradient(circle at 10% 10%, var(--primary-color) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, var(--secondary-color) 0%, transparent 40%);
    animation: auroraMovement 15s ease-in-out infinite alternate;
}

.aurora-rsvp::after {
    background: radial-gradient(circle at 90% 90%, var(--accent-color) 0%, transparent 40%),
        radial-gradient(circle at 30% 80%, var(--primary-color) 0%, transparent 40%);
    animation: auroraMovement 20s ease-in-out infinite alternate-reverse;
}

/* Animasi Partikel Melayang */
.rsvp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.05;
    animation: floatingParticles 80s linear infinite;
    z-index: 1;
}

@keyframes auroraMovement {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(10deg) scale(1.1);
    }
}

@keyframes floatingParticles {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

.rsvp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Glass Card Styling */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Form Styling */
.input-group {
    margin-bottom: 20px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

/* Wishes Styling */
.wishes-card {
    height: 550px;
    display: flex;
    flex-direction: column;
}

.wishes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wishes-list {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.wishes-list::-webkit-scrollbar {
    width: 5px;
}

.wishes-list::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

.wish-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wish-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: 800;
    flex-shrink: 0;
}

.wish-content h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.status-tag {
    font-size: 0.7rem;
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 8px;
}

.wish-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.wish-content small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

@media (max-width: 850px) {
    .rsvp-grid {
        grid-template-columns: 1fr;
    }

    .wishes-card {
        height: 450px;
    }
}

.closing-section {
    position: relative;
    padding: 120px 20px;
    background: #0f0c29;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aurora-final {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.3;
    z-index: 1;
}

.glass-closing-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal .glass-closing-card {
    opacity: 1;
    transform: translateY(0);
}

.final-photo-wrapper {
    position: relative;
    width: 280px;
    height: 380px;
    margin: 0 auto 40px;
    border-radius: 150px 150px 20px 20px;
    /* Bentuk Arch terbalik atau simetris */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.final-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #0f0c29);
}

.closing-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.couple-names-final {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
}

.couple-names-final span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent-color);
    font-size: 1.8rem;
    display: block;
    margin: 5px 0;
}

.hashtag-box {
    display: grid;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hashtag-box span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 15px;
    background: rgba(162, 155, 254, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(162, 155, 254, 0.2);
}

.see-you {
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Footer Style */
.footer-credit {
    background: #0a081a;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-content i {
    color: #ff7675;
    margin: 0 5px;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.footer-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px auto;
}

.copyright {
    font-size: 0.75rem !important;
    opacity: 0.5;
}