/* GLOBAL COLOR */
:root {
    --primary-navy: #101f34;
    --secondary-navy: #0f2a59;
    --accent-yellow: #ffcc00;
    --text-white: #ccd6f6;
    --text-slate: #f4f6f8;
    --white: #ffffff;
    --font-main: 'Parkinsans', sans-serif;
    --text-color: #101f34;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--accent-yellow);
    transition: 0.3s;
}

.theme-toggle:hover {
    transform: rotate(15deg);
}

/* Warna untuk Mode Gelap */
body.dark-mode {
    --primary-navy: #101f34;
    --secondary-navy: #113778;
    --accent-yellow: #ffcc00;
    --text-white: #d0d0d0;
    --text-slate: #102647;
    --white: #323232;
    --text-color: #fff;
}

body {
    background-color: var(--text-slate);
    color: #333;
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

main {
    animation: fadeIn 0.6s ease-out;
    transition: 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* UTILITY */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* HEADER & NAV */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50% 10px 15px;
    background: var(--primary-navy);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--primary-navy);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background-image: url(../assets/channels4_profile.jpg);
    background-size: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
}

.nav-menu {
    display: flex;
    gap: 30px;
    margin-left: 440px;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-yellow);
}

.nav-menu .btn-cta {
    background: var(--accent-yellow);
    color: var(--primary-navy) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
}

.nav-menu .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

/* HERO SECTION */
#section-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding-top: 20px;
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    gap: 30px;
}

.greeting {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

#user {
    background-color: #ffcc00;
    border-radius: 10px;
    padding: 3px;
    color: #101f34;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 10px;
    display: inline-block;
}

.hero-title .highlight {
    color: #3b5bdb;
    background: linear-gradient(120deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 204, 0, 0) 100%);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-desc {
    color: var(--text-color);
}

.hero-image img {
    width: 350px;
    height: 350px;
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--text-color);
    animation: floatImageSimple 3.5s ease-in-out infinite;
}

/* Animasi Floating Gambar */
@keyframes floatImageSimple {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* SOCIAL ICONS */
.social-list {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-list a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-slate);
    transition: 0.3s;
}

.social-list a:hover {
    background: var(--text-color);
    color: var(--accent-yellow);
    transform: translateY(-5px);
}

/* ABOUT & SLIDER */
.about-content p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.slider-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slide-images {
    display: flex;
    width: 300%;
    animation: slide_animation 15s infinite;
}

.img-container {
    width: 100%;
}

@keyframes slide_animation {

    0%,
    30% {
        transform: translateX(0);
    }

    33%,
    63% {
        transform: translateX(-33.33%);
    }

    66%,
    96% {
        transform: translateX(-66.66%);
    }

    100% {
        transform: translateX(0);
    }
}


.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 30px;
}

.tech-track {
    animation: scrollAnimation 25s linear infinite;
}

.cert-track {
    animation: scrollAnimation 40s linear infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* CARDS GLOBAL STYLE */
.card {
    background: var(--primary-navy);
    color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 20, 60, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 20, 60, 0.25);
}

/* EDUCATION */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-card {
    display: flex;
    flex-direction: column;
}

.education-card .card-image {
    height: 200px;
    overflow: hidden;
}

.education-card img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.education-card:hover img {
    transform: scale(1.1);
}

.education-card .card-text {
    padding: 25px;
}

.education-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

/* SKILLS */

.skill-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.skill-pill:hover {
    border-color: var(--accent-yellow);
    transform: scale(1.1);
}

.skill-pill img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.skill-pill span {
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
}

/* PROJECT */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    position: relative;
    height: 300px;
    display: block;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.project-card:hover img {
    opacity: 0.4;
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(10px);
    transition: 0.3s;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: var(--accent-yellow);
    font-size: 1.4rem;
}

/* EXPERIENCES */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 15px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: var(--accent-yellow);
}

body.dark-mode .timeline-container::before {
    background-color: var(--accent-yellow);
}

.timeline-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 15px;
    top: 2px;
    font-size: 24px;
    color: var(--accent-yellow);
    background-color: var(--bg-color);
    border-radius: 50%;
    /* Box shadow */
    box-shadow: 0 0 0 6px var(--bg-color);
    z-index: 5;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
}

.timeline-content {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
}

.timeline-date {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #8892b0;
    font-style: italic;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-title {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.timeline-subtitle {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

body.dark-mode .timeline-title {
    color: #ccd6f6;
}

body.dark-mode .timeline-subtitle {
    color: var(--text-color);
}

/* CERTIFICATES */
.cert-item {
    flex-shrink: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
}

.cert-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.cert-item img:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-yellow);
}

/* FORM */
.form-container {
    background: var(--primary-navy);
    padding: 50px;
    width: 600px;
    border-radius: 20px;
    color: var(--white);
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 20, 60, 0.3);
}

.form-container h1 {
    margin-bottom: 10px;
    color: var(--accent-yellow);
}

.form-container p {
    color: var(--text-white);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #e1e4e8;
    color: #333333;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
}

input[type="date"],
select,
option {
    cursor: pointer;
}

::placeholder {
    color: #999999;
    opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
    background: #ffffff;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    padding: 15px;
    background: var(--accent-yellow);
    color: var(--primary-navy);
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-main);
}

button[type="submit"]:hover {
    background: white;
    transform: translateY(-3px);
}

/* FOOTER */

.main-footer {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding-top: 60px;
    margin-top: 80px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-section h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--accent-yellow);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.8;
    color: var(--text-white);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-white);
    transition: 0.3s;
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-row i {
    font-size: 1.2rem;
    color: var(--text-white);
}

.contact-row a {
    color: var(--text-white);
    transition: 0.3s;
}

.contact-row a:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-white);
    font-size: 1.4rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--primary-navy);
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom>p {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: start;
    }

    .links-col ul li a:hover {
        transform: translateX(0);
    }

    .contact-row {
        justify-content: start;
    }

    .footer-socials {
        justify-content: start;
    }
}

/* BACK TO TOP BUTTON */
#backToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-navy);
    color: var(--accent-yellow);
    border: none;
    border-radius: 30%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#backToTopBtn.show {
    opacity: 1;
    bottom: 30px;
}

#backToTopBtn:hover {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */

/* Pastikan body tidak bisa di-scroll ke samping */
html,
body {
    overflow-x: hidden;
}

/* Breakpoint Mobile & Tablet (Gabungan) */
@media screen and (max-width: 768px) {

    /* Header & Navigation */
    .main-header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }

    .navigation {
        display: block;
    }

    /* Menu Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--primary-navy);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 9998;
        padding-top: 0;
    }

    /* Class Active: Munculkan menu saat JS jalan */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1rem;
        display: block;
        padding: 5px;
    }

    /* Hamburger Button & Animation */
    .hamburger {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 9999;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--accent-yellow);
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

    /* Animasi Menjadi X (Silang) */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-yellow);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-yellow);
    }

    /* Hero Section di Mobile */
    #section-home {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 30px;
    }

    .hero-content {
        gap: 40px;
        padding-right: 0;
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        order: 1;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 180px;
        height: 180px;
    }

    .social-list {
        justify-content: center;
    }

    /* Form Section di Mobile */
    .form-container {
        width: 100%;
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
    }

    /* Certification dan Tech Stack Section */
    .cert-item {
        width: 260px;
    }

    .cert-item img {
        height: 180px;
    }

    .tech-track {
        animation-duration: 20s;
    }

    .cert-track {
        animation-duration: 30s;
    }

    /* Experiences Section */
    .timeline-container::before {
        left: 35px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .timeline-icon {
        left: 10px;
        font-size: 22px;
    }

    .timeline-title {
        font-size: 1.2rem;
    }
}

/* Styling Notifikasi (Toast) */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    min-width: 300px;
    padding: 16px 20px;
    background: white;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 6px solid var(--primary-navy);
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    position: relative;
    overflow: hidden;
}

/* Variasi Warna Toast */
.toast.success {
    border-left-color: #2ecc71;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.info {
    border-left-color: var(--primary-navy);
}

.toast-icon {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f0f2f5;
    color: var(--primary-navy);
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-main);
}

.toast-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    transition: 0.2s;
}

.toast-close:hover {
    color: var(--primary-navy);
}

.toast.hiding {
    animation: slideOutRight 0.4s forwards;
}

/* Animasi Toast */
@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}


/* Styling Pop-up Nama (Modal/Overlay) */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeInOverlay 0.5s ease;
}

.confirm-dialog {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.8);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.confirm-header .confirm-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.confirm-title {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.confirm-message {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Input field di dalam Modal */
.confirm-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e4e8;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 25px;
    outline: none;
    transition: 0.3s;
}

.confirm-input:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(10, 25, 47, 0.1);
}

/* Tombol Action */
.confirm-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: 0.3s;
    font-size: 0.95rem;
}

.confirm-btn-confirm {
    background: var(--primary-navy);
    color: var(--accent-yellow);
    flex: 2;
}

.confirm-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
}

.confirm-btn-cancel {
    background: #f0f2f5;
    color: #666;
    flex: 1;
}

.confirm-btn-cancel:hover {
    background: #e1e4e8;
    color: #333;
}

/* Animasi Modal */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}