:root {
    --white: #ffffff;
    --blue: #1a6fb3;
    --blue-accent: #AEDEDE;
    --background: #0a0a0a;
    --gold: rgb(182, 132, 5);
    --gold-hover: rgb(109, 79, 5);
    --shadow: 0 2px 2px rgba(43, 33, 33, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--white);
    font-size: 1.2rem;
    font-family: "Times New Roman", Times, serif;
    /* color utama */
    background-color: var(--blue);
    /* overflow: hidden; */
    /* background-image: url(../images/elements/background3.jpg); */
}


/* WRAPPER */
.layout {
    display: flex;
    height: 100vh;
}

/* LEFT COVER */
.cover-side {
    flex: 1;
    display: none;
    position: relative;
}

.cover-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    position: relative;
    z-index: 0;
}

/* OPTIONAL overlay biar elegan */
.cover-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.fireflies {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.fireflies span {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ffe066;
    border-radius: 50%;
    opacity: 0;

    box-shadow: 0 0 10px #ffe066, 0 0 20px #ffe066;

    animation: fly 12s linear infinite, blink 2s ease-in-out infinite;
}

@keyframes fly {
    0% {
        transform: translateY(100vh) translateX(0);
    }

    50% {
        transform: translateY(40vh) translateX(30px);
    }

    100% {
        transform: translateY(-20vh) translateX(-20px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.fireflies span {
    left: calc(100% * var(--i));
    animation:
        fly calc(8s + 6s * var(--i)) linear infinite,
        blink calc(1.5s + 1s * var(--i)) ease-in-out infinite;
    width: calc(3px + 3px * var(--i));
    height: calc(3px + 3px * var(--i));
}

.fireflies span:nth-child(1) {
    left: 10%;
    animation-delay: 0s, 0s;
}

.fireflies span:nth-child(2) {
    left: 25%;
    animation-delay: 2s, 1s;
}

.fireflies span:nth-child(3) {
    left: 40%;
    animation-delay: 4s, 0.5s;
}

.fireflies span:nth-child(4) {
    left: 60%;
    animation-delay: 1s, 1.5s;
}

.fireflies span:nth-child(5) {
    left: 75%;
    animation-delay: 3s, 0.8s;
}

.fireflies span:nth-child(6) {
    left: 90%;
    animation-delay: 5s, 1.2s;
}

.fireflies span:nth-child(odd) {
    width: 4px;
    height: 4px;
}

.fireflies span:nth-child(even) {
    width: 6px;
    height: 6px;
}

.cover-names {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    color: var(--white);
}

.cover-names h2 {
    font-family: "Fleur De Leah", cursive;
    font-size: 4.5rem;
    margin: 0;

    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cover-names {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RIGHT CONTENT */
.content-side {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background-color: var(--blue-accent);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url(../images/elements/background3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-image-box {
    position: relative;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    height: 310px;
    overflow: visible;
    border: 3px solid var(--gold);
    border-radius: 160px 160px 160px 160px / 131px 131px 131px 131px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 160px 160px 160px 160px / 131px 131px 131px 131px;
}

.ornamen {
    position: absolute;
    z-index: 10;
    width: 90px;
    transform: scale(0.4);
    transform-origin: center;
    pointer-events: none;
    overflow: visible;
    animation: pulseFrame 5s ease-in-out infinite;
}

@keyframes pulseFrame {

    0%,
    100% {
        transform: translate(-13%, -13%) scale(0.4);
    }

    50% {
        transform: translate(-13%, -13%) scale(0.42);
    }
}

.atas-kiri {
    top: -75px;
    left: -5px;
}

.bawah-kanan {
    bottom: -155px;
    right: -55px;
}

.hero main {
    position: relative;
    z-index: 2;
}

.hero .title {
    padding-bottom: 31px;
    font-weight: 800;
    color: var(--background);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.hero .nama-pengantin {
    font-family: "Fleur De Leah", cursive;
    font-size: 3.1rem;
    color: var(--blue);
    font-weight: bold;
}

.hero .tanggal {
    font-weight: bold;
    color: var(--background);
    font-size: 1.2rem;
}

.btn-open {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 5px 21px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: var(--shadow);
    transition: 0.3s;
    animation: goldBlink 2.5s infinite ease-in-out;
}

@keyframes goldBlink {
    0% {
        background: var(--gold-hover);
    }

    50% {
        background: var(--gold);
    }

    100% {
        background: var(--gold-hover);
    }
}

/* =========================
   COUPLE SECTION
========================= */
.couple {
    min-height: 100dvh;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.couple-content {
    margin: 31px;
}

.ornamen-quran {
    position: relative;
    align-items: center;
    justify-content: center;
    transform: scale(1.5);
    margin-bottom: 31px;
    width: 120px;
    z-index: 99;
    pointer-events: none;
}

.quran {
    margin-bottom: 31px;
}

.ayat {
    font-size: 0.7rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
}

.surah {
    display: block;
    margin-top: 10px;
    font-size: 0.65rem;
    opacity: 0.7;
}

.couple-box {
    position: relative;
    text-align: center;
    background-color: var(--white);
    padding: 31px 0;
    margin: 31px 0 0 0;
    box-shadow: var(--shadow);
    border-radius: 31px;
}

.bunga {
    position: absolute;
    width: 150px;
    pointer-events: none;
    z-index: 2;
    animation: pulseFlower 4s ease-in-out infinite;
}

@keyframes pulseFlower {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.bunga-atas-kiri {
    top: -40px;
    left: -40px;
}

.bunga-bawah-kanan {
    bottom: -40px;
    right: -40px;
}

.couple-title {
    font-family: "Fleur De Leah", cursive;
    font-weight: 800;
    font-size: 2rem;
    margin: 31px 0 62px 0;
    color: var(--blue);
}

.couple-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: 4px solid rgb(182, 132, 5);
}

.couple-frame {
    position: relative;
    width: 180px;
    margin: 0 auto;
}

.frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 131%;
    height: 131%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    transform: translate(-13%, -13%);
    animation: floatFrame 4s ease-in-out infinite;
}

@keyframes floatFrame {
    0% {
        transform: translate(-13%, -13%) rotate(0deg);
    }

    50% {
        transform: translate(-13%, -15%) rotate(1.5deg);
    }

    100% {
        transform: translate(-13%, -13%) rotate(0deg);
    }
}

.couple-item .name {
    margin: 31px 5px 3px 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
}

.couple-item .data {
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--background);
    margin: 0;
}

.couple-item .parents {
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--background);
    margin: 0 31px;
}

.love-icon {
    margin: 31px 0;
    font-size: 2rem;
    color: var(--gold);
}

/* =========================
   DATE SECTION
========================= */
.date {
    min-height: 100dvh;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    text-align: center;
    /* margin: 31px 0; */
    position: relative;
    overflow: visible;
    flex-direction: column;
    justify-content: flex-end;
}

.date-content {
    position: relative;
    margin: 0 auto;
    color: var(--blue);
    border-top-left-radius: 100% 80%;
    border-top-right-radius: 100% 80%;
    background-color: var(--white);
    box-shadow:
        inset 13px 0 0 var(--gold),
        inset -13px 0 0 var(--gold),
        inset 0 3px 0 var(--gold);
}

.date-title {
    font-family: "Fleur De Leah", cursive;
    font-weight: 800;
    font-size: 2rem;
    margin-top: 62px;
    margin-bottom: 31px;
    color: var(--blue);
}

.card-date {
    padding: 0 26px;
}

.bulan {
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.date-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
}

.col:first-child,
.col:last-child {
    position: relative;
    padding: 8px 0;
}

/* garis atas */
.col:first-child::before,
.col:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--blue);
}

/* garis bawah */
.col:first-child::after,
.col:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--blue);
}

.hari,
.tahun,
.jam {
    font-size: 1rem;
}

.alamat {
    font-size: 0.85rem;
    padding: 0 31px;
}

.tanggal {
    font-size: 2.5rem;
}

.jam {
    margin: 10px 0;
}

.alamat {
    margin-bottom: 15px;
}

.bunga-kiri,
.bunga-kanan {
    position: absolute;
    bottom: -20px;
    width: 120px;
    z-index: 2;
    pointer-events: none;
    animation: pulseFlower 4s ease-in-out infinite;
}

@keyframes pulseFlower {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.bunga-kiri {
    left: -60px;
}

.bunga-kanan {
    right: -60px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    padding: 0 45px;
}

.map-inner {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    padding-bottom: 31px;
    border: none;
    display: block;
}

.btn-map {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 1rem;
    background: var(--blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
}

.btn-map:hover {
    background: #142D54;
    color: var(--blue-accent);
}

/* =========================
   GALERI SECTION
========================= */
.galeri {
    min-height: 100dvh;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.galeri-content {
    margin: 31px;
}

.galeri-title {
    font-family: "Fleur De Leah", cursive;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.words {
    font-size: 0.75rem;
    font-style: italic;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#galleryDate {
    font-weight: 600;
    margin: 0;
    /* hilangkan margin default */
}

#galleryQuote {
    margin: 0;
    line-height: 1.3;
}

.main-image-wrapper {
    margin: 25px 0;
}

.main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    transition: 1.31s ease-in-out;
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.galeri-thumb {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.galeri-thumb:hover {
    opacity: 1;
}

.galeri-thumb.active {
    opacity: 1;
    border: 2px solid var(--blue-accent);
}

.ornamen-quran-galeri {
    position: relative;
    align-items: center;
    justify-content: center;
    transform: scale(1.5) rotate(180deg);
    transform-origin: bottom center;
    margin: 31px 0;
    width: 120px;
    z-index: 99;
    pointer-events: none;
}

/* =========================
   RSVP SECTION
========================= */
.rsvp {
    min-height: 100dvh;
    background-image: url(../images/elements/background3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rsvp-content {
    margin: 31px;
    padding: 31px;
    background-color: var(--blue);
    border-radius: 31px;
    box-shadow: var(--shadow);
}

.rsvp-title {
    font-weight: 800;
    font-family: "Fleur De Leah", cursive;
    font-size: 2rem;
    color: var(--white);
}

.rsvp-words {
    font-size: 0.75rem;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-control::-webkit-input-placeholder {
    font-size: 0.85rem;
}

.form-control:-ms-input-placeholder {
    font-size: 0.85rem;
}

.form-control::placeholder {
    font-size: 0.85rem;
    opacity: 0.6;
}

.rsvp-name,
.rsvp-status,
.rsvp-message {
    font-size: 0.75rem;
    color: var(--background);
}

.btn-rsvp {
    background: var(--gold);
    color: var(--white);
    border: none;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
    font-size: 0.85rem;
    padding: 8px 10px;
    font-weight: bold;
}

.btn-rsvp:hover {
    background: var(--gold-hover);
    color: var(--white);
    border: none;
}

.rsvp-list-wrapper {
    overflow: hidden;
    width: 100%;
    height: 300px;
    position: relative;
}

.rsvp-list-wrapper.empty {
    display: none;
}

.rsvp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollY 20s linear infinite;
}

/* IN JS INDEX.HTML */
.rsvp-card {
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
}

@keyframes scrollY {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.rekening-box {
    margin-top: 31px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    text-align: center;
}

.rekening-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.rekening-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    padding: 10px 12px;
    border-radius: 12px;
    background-color: var(--blue-accent);
}

.rekening-header {
    flex-shrink: 0;
}

.bank-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.rekening-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.rekening-text .nomor {
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--background);
}

.rekening-text .nama {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
    color: var(--background);
}

/* =========================
   SPECIAL SECTION
========================= */
.special {
    min-height: 100dvh;
    background-color: var(--blue);
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.special-content {
    margin: 0 31px;
    background-color: var(--blue);
    border-radius: 31px;
}

.special-title {
    padding-top: 31px;
    font-weight: 800;
    font-family: "Fleur De Leah", cursive;
    font-size: 2rem;
    color: var(--white);
}

.our-memory {
    font-weight: 800;
    font-family: "Fleur De Leah", cursive;
    font-size: 2rem;
    color: var(--white);
}

.special-words {
    font-size: 0.75rem;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 31px 0;
}

.upload-box {
    background-color: var(--blue-accent);
    box-shadow: var(--shadow);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.upload-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 200px;
    border: 2px dashed var(--white);
    border-radius: 15px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s ease;
}

.upload-area:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.upload-placeholder {
    text-align: center;
    color: white;
}

.upload-area i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* PREVIEW */
.preview-wrapper {
    position: absolute;
    inset: 0;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CLOSE BUTTON */
.btn-close-preview {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
}

.btn-close-preview i {
    font-size: 14px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.btn-upload {
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 0.95rem;
    border-radius: 10px;
    background: var(--gold);
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.btn-upload:hover {
    background-color: var(--gold-hover);
}

/* GALLERY */
.special-gallery {
    margin-top: 40px;
    overflow: hidden;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    position: relative;
    will-change: transform;
}

.gallery-viewport {
    overflow: hidden;
    position: relative;
}

.gallery-viewport.has-data {
    height: 420px;
}

.gallery-viewport.empty {
    height: auto;
}

.gallery-card {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 14px;
    align-items: center;

    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.gallery-card.show {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;

    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}

.gallery-viewport {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.gallery-img {
    flex: 0 0 80px;
    height: 80px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-content {
    flex: 1;
    text-align: left;
}

.gallery-content .name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    color: white;
}

.gallery-content .caption {
    font-size: 12px;
    opacity: 0.8;
}

.footer {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/* SOUND */
.sound-toggle {
    position: fixed;
    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.3);

    color: white;
    cursor: pointer;
    z-index: 999;

    transition: 0.3s;
}

.sound-toggle:hover {
    background: var(--blue-accent);
}

.sound-toggle.active {
    box-shadow: 0 0 15px rgba(174, 222, 222, 0.8);
}

/* DOCK DESKTOP */
.dock-vertical {
    position: absolute;
    top: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 10;
}

.dock-vertical a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);

    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dock-vertical a:hover {
    background: var(--blue);
}

.dock-vertical a.active {
    background: var(--blue);
    transform: scale(1.1);
}

/* DOCK MOBILE */
.dock {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 26px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dock.show {
    opacity: 1;
    pointer-events: auto;
}

.dock a {
    color: var(--background);
    transition: 0.3s;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;
}

.dock a.active {
    color: var(--white);
    background-color: var(--background);
    border-radius: 50%;
    transform: scale(1.2);
}

/* CUSTOM DATA AOS */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition-duration: 1.5s;
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* MODE DESKTOP FOR CONTENT SIDE */
@media (min-width: 768px) {
    .cover-side {
        display: block;
    }

    .content-side {
        position: relative;
        width: 100%;
        max-width: 450px;
        overflow-x: hidden;
        margin-left: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    }

    .dock {
        display: none;
    }

    .sound-toggle {
        top: 15px;
        right: 30px;
    }

    .copyright {
        margin: 0 !important;
        padding: 0 !important;
    }
}