@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) --- */
.left-section {
    flex: 1.4;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    position: relative;
    /* Memberikan efek transisi halus saat halaman terbuka */
    animation: fadeInBackground 2s ease-out;
}

/* Overlay: Mengubah dari Hitam ke Cokelat Terracotta Gelap agar lebih hangat */
.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient dari warm-dark ke transparent */
    background: linear-gradient(to top, rgba(44, 44, 44, 0.7) 0%, rgba(44, 44, 44, 0) 60%);
    z-index: 1;
}

/* Tekstur Kertas (Optional: agar senada dengan right section) */
.left-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.left-content {
    position: relative;
    z-index: 2;
    color: #F2EDE4;
    /* Off-white hangat agar tidak terlalu kontras */
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.left-content h2 {
    font-family: var(--sans-outfit);
    /* Konsisten dengan right section */
    font-weight: 300;
    letter-spacing: 6px;
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.bride-name-cursive {
    font-family: var(--serif-playfair);
    /* Mengganti cursive dengan Serif khas galeri */
    font-size: 4rem;
    margin: 15px 0;
    font-weight: 400;
    font-style: italic;
    /* Memberikan kesan elegan tanpa terlihat "childish" */
    line-height: 1.1;
}

.wedding-date {
    font-family: var(--sans-outfit);
    letter-spacing: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-top: 1px solid rgba(242, 237, 228, 0.3);
    border-bottom: 1px solid rgba(242, 237, 228, 0.3);
    display: inline-block;
    padding: 8px 20px;
    margin-top: 10px;
}

/* Animasi Internal */
@keyframes fadeInBackground {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
        /* Sembunyikan bagian kiri */
    }

    .right-section {
        flex: 1;
        width: 100%;
    }
}


/* Ukuran font diperbesar agar Beau Rivage terlihat jelas */

/* --- BAGIAN Kanan (SCROLLABLE) --- */
.right-section {
    flex: 1;
    overflow-y: auto;
    background-color: var(--bg-warm);
    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); */
}

/* first  */
:root {
    --bg-warm: #fffdfa;
    /* Warna kertas hangat */
    --accent: #B88E8D;
    /* Dusty Rose */
    --dark-text: #2C2C2C;
    --serif-playfair: 'Playfair Display', serif;
    --sans-outfit: 'Outfit', sans-serif;
    /* Font modern & bersih */
}

.first-screen {
    background-color: var(--bg-warm);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Tekstur Kertas agar terasa lebih hangat & nyata */
.paper-texture {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

/* Animasi Reveal Gambar */
/* Animasi Reveal Gambar */
.image-reveal {
    position: relative;
    width: 100%;
    /* Default untuk mobile (lebih ramping/vertikal) */
    aspect-ratio: 2 / 4;
    overflow: hidden;
    border-radius: 2px;
    animation: revealImage 1.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Penyesuaian untuk Laptop/Desktop (Layar di atas 1024px) */
@media (min-width: 1024px) {
    .image-reveal {
        /* Menjadi 3/4 agar proporsi foto lebih seimbang di layar lebar */
        aspect-ratio: 3 / 4;
        /* Opsional: Membatasi lebar maksimal agar tidak terlalu memenuhi layar laptop */
        max-width: 450px;
        margin: 0 auto;
    }
}

.image-inner {
    width: 100%;
    height: 100%;
    animation: zoomOut 2s ease-out;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Memberikan sedikit efek hangat khas galeri */
    filter: sepia(10%) contrast(102%);
}

/* Tipografi Mengambang */
.floating-text {
    position: absolute;
    bottom: -20px;
    left: -10%;
    width: 120%;
    z-index: 2;
}

.the-wedding {
    display: block;
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.7rem;
    color: var(--dark-text);
    margin-bottom: 5px;
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

.couple-name-modern {
    font-family: var(--serif-playfair);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--dark-text);
    text-shadow: 2px 2px 10px rgba(242, 237, 228, 0.8);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.ampersand {
    font-family: var(--serif-playfair);
    font-style: italic;
    color: var(--accent);
}

/* Footer Section */
.invitation-footer {
    margin-top: 30px;
    text-align: center;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.guest-info .to-text {
    font-family: var(--sans-outfit);
    font-size: 0.8rem;
    color: #888;
}

.guest-name {
    font-family: var(--serif-playfair);
    font-size: 1.4rem;
    margin: 5px 0 25px;
}

/* Tombol Interaktif Modern */
.btn-explore {
    position: relative;
    background: #ffffff;
    /* border: 2px; */
    border: 1px solid #bcbcbc;
    cursor: pointer;
    padding: 10px 20px;
    /* display: flex; */
    align-items: center;
}

.btn-label {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    z-index: 1;
}

.btn-circle {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-explore:hover .btn-circle {
    width: 100%;
    border-radius: 30px;
    opacity: 0.7;
}

/* Keyframes */
@keyframes revealImage {
    0% {
        transform: translateY(100%);
        clip-path: inset(100% 0 0 0);
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* opening  */
.opening-section {
    padding: 100px 20px;
    background-color: var(--bg-warm);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Large Text */
.bg-year {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--serif-playfair);
    font-size: 12rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.opening-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 1;
}

/* Photo Styling */
.image-frame-wrapper {
    position: relative;
    padding-left: 20px;
}

.main-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: #fff;
    padding: 15px;
    /* Memberikan efek polaroid/frame galeri */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
    /* transform: rotate(-2deg); */
    transition: transform 0.5s ease;
}

.main-frame:hover {
    transform: rotate(0deg);
}

.opening-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.photo-caption {
    display: block;
    margin-top: 15px;
    font-family: var(--sans-outfit);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

/* Text Content Styling */
.opening-text {
    padding-left: 20px;
}

.greeting {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.name-block {
    margin-bottom: 30px;
}

.name-serif {
    font-family: var(--serif-playfair);
    font-size: 4rem;
    color: var(--dark-text);
    line-height: 0.9;
}

.and-symbol {
    font-family: var(--serif-playfair);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--accent);
    margin-left: 20px;
}

.date-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.line {
    height: 1px;
    background: var(--dark-text);
    width: 30px;
    opacity: 0.3;
}

.event-date {
    font-family: var(--sans-outfit);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.quote {
    font-family: var(--serif-playfair);
    font-style: italic;
    line-height: 1.8;
    color: #666;
    max-width: 300px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .opening-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-frame-wrapper {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .opening-text {
        padding-left: 0;
    }

    .date-block {
        justify-content: center;
    }

    .quote {
        margin: 0 auto;
    }

    .name-serif {
        font-size: 3rem;
    }
}

/* --- State Awal (Hidden) --- */
.opening-section .animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Khusus untuk foto, kita beri efek scale sedikit */
.opening-section .image-frame-wrapper {
    transform: translateY(40px) scale(0.95) rotate(-2deg);
}

/* --- State Setelah Reveal (Visible) --- */
.opening-section.reveal .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Kembalikan rotasi foto saat reveal */
.opening-section.reveal .image-frame-wrapper {
    /* transform: translateY(0) scale(1) rotate(-2deg); */
}

/* --- Staggered Delay (Urutan Muncul) --- */
/* Foto muncul pertama */
.opening-section.reveal .image-frame-wrapper {
    transition-delay: 0.2s;
}

/* Judul kecil muncul kedua */
.opening-section.reveal .greeting {
    transition-delay: 0.4s;
}

/* Nama muncul ketiga */
.opening-section.reveal .name-block {
    transition-delay: 0.6s;
}

/* Tanggal muncul keempat */
.opening-section.reveal .date-block {
    transition-delay: 0.8s;
}

/* Quote muncul terakhir */
.opening-section.reveal .quote {
    transition-delay: 1s;
}

/* Tambahan: Animasi halus untuk background year */
.bg-year {
    transition: opacity 2s ease;
    opacity: 0;
}

.opening-section.reveal .bg-year {
    opacity: 0.05;
}

/* quotes  */
.quotes-section {
    padding: 150px 20px;
    background-color: var(--bg-warm);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Efek Glow Hangat */
.glow-soft {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, rgba(242, 237, 228, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.quotes-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.vertical-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    margin: 0 auto 30px;
}

.quote-title {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 40px;
    font-weight: 500;
}

.quote-text-box {
    padding: 0 10%;
}

.quote-text {
    font-family: var(--serif-playfair);
    font-size: 1.35rem;
    line-height: 2;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 25px;
}

.quote-author {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
}

/* Dots Divider */
.floral-divider {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 50%;
    opacity: 0.4;
}

.dot.main {
    width: 8px;
    height: 8px;
    opacity: 0.8;
}

/* --- Animasi On Scroll (Intersection Observer) --- */

/* Kondisi Awal */
.quotes-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Kondisi setelah Section mendapat class .reveal */
.quotes-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Urutan Animasi (Staggered) */
.quotes-section.reveal .vertical-line {
    transition-delay: 0.2s;
}

.quotes-section.reveal .quote-title {
    transition-delay: 0.4s;
}

.quotes-section.reveal .quote-text {
    transition-delay: 0.6s;
}

.quotes-section.reveal .quote-author {
    transition-delay: 0.9s;
}

.quotes-section.reveal .floral-divider {
    transition-delay: 1.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.15rem;
        padding: 0;
    }
}

/* couple  */
.couple-section {
    padding: 100px 20px;
    background-color: var(--bg-warm);
    color: var(--dark-text);
}

/* Intro Section */
.couple-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.salam {
    font-family: var(--serif-playfair);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.intro-text {
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #666;
}

/* Couple Cards Wrapper */
.couple-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.couple-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.couple-card.bride {
    grid-template-columns: 1.2fr 1fr;
    text-align: right;
}

/* Image Styling */
.couple-img-wrapper {
    position: relative;
    padding: 10px;
    background: #fff;
    /* Frame putih seperti galeri */
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.03);
}

.couple-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

/* Info Styling */
.couple-name {
    font-family: var(--serif-playfair);
    font-size: 2.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.parent-info {
    font-family: var(--sans-outfit);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent);
    font-family: var(--sans-outfit);
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.ig-link:hover {
    opacity: 0.7;
}

/* Ampersand Middle */
.ampersand-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif-playfair);
    font-size: 8rem;
    font-style: italic;
    color: var(--accent);
    opacity: 0.1;
    z-index: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {

    .couple-card,
    .couple-card.bride {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bride .couple-img-wrapper {
        grid-row: 1;
        /* Foto jadi di atas pada mobile */
    }

    .couple-name {
        font-size: 2.2rem;
    }

    .ampersand-divider {
        display: none;
    }

    /* Terlalu ramai untuk mobile */
}

/* --- Animation on Scroll --- */
.couple-section .reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.couple-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.couple-section.reveal .salam {
    transition-delay: 0.1s;
}

.couple-section.reveal .intro-text {
    transition-delay: 0.3s;
}

.couple-section.reveal .groom {
    transition-delay: 0.5s;
}

.couple-section.reveal .bride {
    transition-delay: 0.8s;
}

/* --- Dekorasi Tambahan --- */

.couple-section {
    position: relative;
    overflow: hidden;
}

/* Lingkaran abstrak di background */
.abstract-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.1;
    top: 20%;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}

/* Label ala galeri seni */
.gallery-label {
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--sans-outfit);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
    background: var(--bg-warm);
    padding: 5px 10px;
    z-index: 2;
}

.bride .gallery-label {
    left: auto;
    right: 20px;
}

/* Garis aksen vertikal di samping foto */
.accent-line {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 1px;
    height: 100px;
    background: var(--accent);
    opacity: 0.5;
}

/* Animasi tambahan untuk dekorasi */
.couple-section.reveal .abstract-circle {
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Menyesuaikan Wrapper untuk menampung dekorasi */
.couple-img-wrapper {
    position: relative;
    /* Penting untuk gallery-label */
}

/* Tambahkan sedikit noise/tekstur pada frame putih */
.couple-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png');
    opacity: 0.03;
    pointer-events: none;
}

/* save date  */
.save-the-date {
    padding: 120px 20px;
    background-color: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.std-wrapper {
    width: 300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Background Text June */
.bg-month-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif-playfair);
    font-size: 15rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.std-top {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 40px;
}

/* Calendar Styling */
.calendar-display {
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
    margin-bottom: 40px;
    border: 1px solid rgba(212, 163, 115, 0.1);
    position: relative;
    z-index: 1;
}

.month-year {
    font-family: var(--serif-playfair);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    font-family: var(--sans-outfit);
    font-size: 0.8rem;
}

.calendar-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

/* Lingkaran pada Tanggal Pernikahan */
.calendar-grid span.marked {
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    position: relative;
    animation: pulseDate 2s infinite;
}

@keyframes pulseDate {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 163, 115, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 163, 115, 0);
    }
}

/* Info Detail di Bawah Kalender */
.day-name {
    font-family: var(--serif-playfair);
    font-size: 2rem;
    font-style: italic;
}

.divider-gold {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 15px auto;
}

.full-date {
    font-family: var(--sans-outfit);
    letter-spacing: 5px;
    font-weight: 500;
}

/* Scroll Hint Decor */
.std-decor {
    margin-top: 60px;
}

.line-long {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto 20px;
}

.scroll-hint {
    font-family: var(--sans-outfit);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

/* --- Animasi --- */
.save-the-date .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.save-the-date.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.save-the-date.reveal .bg-month-text {
    transition-delay: 0.2s;
}

.save-the-date.reveal .std-top {
    transition-delay: 0.4s;
}

.save-the-date.reveal .calendar-display {
    transition-delay: 0.6s;
}

.save-the-date.reveal .std-info {
    transition-delay: 0.8s;
}

.save-the-date.reveal .std-decor {
    transition-delay: 1s;
}

/* event  */
.event-section {
    padding: 120px 20px;
    background-color: var(--bg-warm);
    position: relative;
    color: var(--dark-text);
}

.event-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.event-subtitle {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.event-main-title {
    font-family: var(--serif-playfair);
    font-size: 3rem;
    margin-bottom: 25px;
}

.event-desc {
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    line-height: 1.8;
    color: #777;
}

/* Event Grid Layout */
.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    background: #fff;
    padding: 60px 40px;
    position: relative;
    border: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

/* Background Number Decor */
.card-bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--serif-playfair);
    font-size: 10rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.04;
    pointer-events: none;
}

.event-type {
    font-family: var(--serif-playfair);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 40px;
    position: relative;
}

.event-details {
    margin-bottom: 40px;
}

.detail-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 15px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    display: block;
    font-family: var(--sans-outfit);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
}

.detail-item .value {
    display: block;
    font-family: var(--serif-playfair);
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Button Maps */
.btn-maps {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 25px;
    font-family: var(--sans-outfit);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-maps:hover {
    background: var(--accent);
    color: white;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-main-title {
        font-size: 2.2rem;
    }

    .event-card {
        padding: 40px 30px;
    }
}

/* --- Animation on Scroll --- */
.event-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.event-section.reveal .event-subtitle {
    transition-delay: 0.2s;
}

.event-section.reveal .event-main-title {
    transition-delay: 0.3s;
}

.event-section.reveal .event-desc {
    transition-delay: 0.4s;
}

.event-section.reveal .event-card:nth-child(1) {
    transition-delay: 0.6s;
}

.event-section.reveal .event-card:nth-child(2) {
    transition-delay: 0.8s;
}

/* story  */
.story-section {
    padding: 120px 20px;
    background-color: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-subtitle {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.story-title {
    font-family: var(--serif-playfair);
    font-size: 2.8rem;
    color: var(--dark-text);
}

/* Grid Layout */
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

/* Foto Styling */
.story-image-container {
    position: relative;
}

.image-frame {
    padding: 15px;
    background: #fff;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.story-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: sepia(10%);
}

.image-tag {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    font-family: var(--sans-outfit);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.decor-line-horizontal {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 150px;
    height: 1px;
    background: var(--accent);
    opacity: 0.3;
    z-index: 1;
}

/* Story Items Styling */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.story-item {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(212, 163, 115, 0.2);
}

.story-year {
    font-family: var(--sans-outfit);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
}

.story-topic {
    font-family: var(--serif-playfair);
    font-size: 1.6rem;
    margin: 8px 0 12px;
    color: var(--dark-text);
}

.story-desc {
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    line-height: 1.8;
    color: #777;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .story-title {
        font-size: 2.2rem;
    }
}

/* --- Animation on Scroll --- */
.story-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.story-section.reveal .story-image-container {
    transition-delay: 0.3s;
}

.story-section.reveal .story-item:nth-child(1) {
    transition-delay: 0.5s;
}

.story-section.reveal .story-item:nth-child(2) {
    transition-delay: 0.7s;
}

.story-section.reveal .story-item:nth-child(3) {
    transition-delay: 0.9s;
}

/* gift  */
.gift-section {
    padding: 120px 20px;
    background-color: var(--bg-warm);
    text-align: center;
}

.gift-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.gift-subtitle {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.gift-title {
    font-family: var(--serif-playfair);
    font-size: 3rem;
    margin-bottom: 20px;
}

.gift-desc {
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    line-height: 1.8;
    color: #777;
}

/* Gift Cards Layout */
.gift-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.gift-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.4s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.gift-card.full-width {
    grid-column: span 2;
}

.card-brand {
    font-family: var(--sans-outfit);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.account-number {
    font-family: var(--serif-playfair);
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.account-name {
    font-family: var(--sans-outfit);
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
}

.address-text {
    font-family: var(--serif-playfair);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button Copy Styling */
.btn-copy {
    background: var(--bg-warm);
    border: none;
    padding: 10px 25px;
    font-family: var(--sans-outfit);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-copy:hover {
    background: var(--accent);
    color: white;
}

/* --- Animasi --- */
.gift-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.gift-section.reveal .gift-card:nth-child(1) {
    transition-delay: 0.4s;
}

.gift-section.reveal .gift-card:nth-child(2) {
    transition-delay: 0.6s;
}

.gift-section.reveal .gift-card:nth-child(3) {
    transition-delay: 0.8s;
}

/* Responsive */
@media (max-width: 768px) {
    .gift-container {
        grid-template-columns: 1fr;
    }

    .gift-card.full-width {
        grid-column: span 1;
    }

    .account-number {
        font-size: 1.5rem;
    }
}

/* gallery  */
.gallery-section {
    padding: 120px 20px;
    background-color: var(--bg-warm);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-subtitle {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.gallery-title {
    font-family: var(--serif-playfair);
    font-size: 3rem;
    color: var(--dark-text);
}

.header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 20px auto 0;
    opacity: 0.5;
}

/* Gallery Grid System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 100px;
    /* Base row height */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    height: 100%;
}

.gallery-frame {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #fff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) sepia(10%);
    transition: all 0.7s ease;
}

.gallery-frame:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-frame:hover .gallery-img {
    filter: grayscale(0%) sepia(0%);
    transform: scale(1.1);
}

/* Definisi Ukuran Grid Asimetris */
.size-large {
    grid-column: span 6;
    grid-row: span 5;
}

/* Utama */
.size-square {
    grid-column: span 6;
    grid-row: span 3;
}

.size-small {
    grid-column: span 3;
    grid-row: span 2;
}

.size-wide {
    grid-column: span 9;
    grid-row: span 3;
}

.size-medium {
    grid-column: span 3;
    grid-row: span 3;
}

/* Footer Decor */
.gallery-footer-text {
    margin-top: 60px;
    text-align: center;
    font-family: var(--serif-playfair);
    font-style: italic;
    color: #999;
    letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .size-large,
    .size-square,
    .size-small,
    .size-wide,
    .size-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-title {
        font-size: 2.2rem;
    }
}

/* --- Animation on Scroll --- */
.gallery-section .reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay untuk Grid Items */
.gallery-section.reveal .gallery-item:nth-child(1) {
    transition-delay: 0.2s;
}

.gallery-section.reveal .gallery-item:nth-child(2) {
    transition-delay: 0.3s;
}

.gallery-section.reveal .gallery-item:nth-child(3) {
    transition-delay: 0.4s;
}

.gallery-section.reveal .gallery-item:nth-child(4) {
    transition-delay: 0.5s;
}

.gallery-section.reveal .gallery-item:nth-child(5) {
    transition-delay: 0.6s;
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    /* Menunjukkan bahwa ini bisa diperbesar */
    text-decoration: none;
}

.gallery-frame {
    position: relative;
    /* Penting untuk overlay */
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #fff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Efek Overlay saat Hover */
.hover-overlay {
    position: absolute;
    inset: 10px;
    /* Sesuai padding frame */
    background: rgba(212, 163, 115, 0.2);
    /* Warna terracotta transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.hover-overlay i {
    color: white;
    font-size: 1.5rem;
}

.gallery-link:hover .hover-overlay {
    opacity: 1;
}

/* Hilangkan filter grayscale jika ingin lebih modern saat diklik */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.gallery-link:hover .gallery-img {
    transform: scale(1.05);
}

.rsvp-section {
    padding: 120px 20px;
    background-color: var(--bg-warm);
    position: relative;
}

.rsvp-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.rsvp-subtitle {
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.rsvp-title {
    font-family: var(--serif-playfair);
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Grid System */
.rsvp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Form Styling */
.rsvp-form-wrapper {
    background: #fff;
    padding: 50px 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    font-family: var(--sans-outfit);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--accent);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}

.btn-send {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px;
    font-family: var(--sans-outfit);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover {
    background: var(--dark-text);
}

/* Wishes List Styling */
.wishes-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
    /* Custom scrollbar */
}

.wishes-container::-webkit-scrollbar {
    width: 3px;
}

.wishes-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.wish-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 2px;
    border-left: 3px solid var(--accent);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.02);
}

.wish-name {
    font-family: var(--serif-playfair);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.wish-status {
    font-family: var(--sans-outfit);
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.wish-status.hadir {
    background: #E8F5E9;
    color: #2E7D32;
}

.wish-status.tidak_hadir {
    background: #FFEBEE;
    color: #C62828;
}

.wish-text {
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.wish-time {
    font-family: var(--sans-outfit);
    font-size: 0.7rem;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .rsvp-grid {
        grid-template-columns: 1fr;
    }

    .rsvp-title {
        font-size: 2.2rem;
    }
}

/* --- Animation on Scroll --- */
.rsvp-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.rsvp-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.rsvp-section.reveal .rsvp-form-wrapper {
    transition-delay: 0.4s;
}

.rsvp-section.reveal .wishes-wrapper {
    transition-delay: 0.7s;
}


/* closing  */
.closing-section {
    padding: 150px 20px 0;
    /* Padding bawah 0 karena ada footer */
    background-color: var(--bg-warm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Image Styling */
.closing-image-wrapper {
    margin-bottom: 60px;
    display: inline-block;
    position: relative;
}

.image-frame-final {
    padding: 20px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: rotate(1deg);
    transition: transform 0.8s ease;
}

.closing-section.reveal .image-frame-final {
    transform: rotate(0deg);
}

.closing-img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: sepia(15%);
}

/* Text Styling */
.closing-thanks {
    font-family: var(--sans-outfit);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 30px;
}

.closing-names {
    font-family: var(--serif-playfair);
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.closing-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto 30px;
    opacity: 0.5;
}

.closing-quote {
    font-family: var(--serif-playfair);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.closing-hashtag {
    font-family: var(--sans-outfit);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--dark-text);
    opacity: 0.6;
}

/* Footer Styling */
.footer-simple {
    margin-top: 150px;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 163, 115, 0.1);
}

.footer-simple p {
    font-family: var(--sans-outfit);
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
}

.footer-simple i {
    color: #e74c3c;
    margin: 0 5px;
    font-size: 0.7rem;
}

/* --- Animation --- */
.closing-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.closing-section.reveal .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.closing-section.reveal .closing-image-wrapper {
    transition-delay: 0.2s;
}

.closing-section.reveal .closing-thanks {
    transition-delay: 0.5s;
}

.closing-section.reveal .closing-names-wrapper {
    transition-delay: 0.7s;
}

.closing-section.reveal .closing-quote {
    transition-delay: 0.9s;
}

.closing-section.reveal .closing-hashtag {
    transition-delay: 1.1s;
}

/* Responsive */
@media (max-width: 768px) {
    .closing-img {
        width: 250px;
        height: 350px;
    }

    .closing-names {
        font-size: 2.5rem;
    }
}