/* =========================
   Background Utama Halaman
   ========================= */
.Body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        135deg,
        #4fae9c 0%,
        #6dc5b5 50%,
        #8fd9cb 100%
    );
    padding: 20px;
}
/* Efek Lingkaran Dekoratif Background */
body::before {
    content: "";
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    top: 80px;
    left: 50px;
}

body::after {
    content: "";
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    bottom: -100px;
    right: -100px;
}

.Body-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        135deg,
        #4fae9c 0%,
        #6dc5b5 50%,
        #8fd9cb 100%
    );
    padding: 20px;
}

.Body-page::before {
    content: "";
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    top: 80px;
    left: 50px;
}

.Body-page::after {
    content: "";
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    bottom: -100px;
    right: -100px;
}

/* =========================
   Container Utama CV
   ========================= */

.wrapper{
    position: relative;
    overflow: hidden;
    background-color: #f5f7f7;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* bar navigasi */

.navbar {
    width:95%;
    max-width:1200px;
    border-radius: 50px;
    margin:40px auto 60px;
    background:grey;
    padding: 15px 30px;
    font-weight: bold;
    font-size:25px; 
    box-shadow:0 7px 12px rgba(0,0,0,.08);
}
.navbar a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0 15px;
}

/* Efek Animasi Background */

.bg-animation span{
    position: absolute;
    border-radius: 50%;
    background: rgba(93, 184, 165, 0.15);
    animation: float 8s ease-in-out infinite;
}

.bg-animation span:nth-child(1){
    width: 150px;
    height: 150px;
    top: 20px;
    left: 20px;
}

.bg-animation span:nth-child(2){
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.bg-animation span:nth-child(3){
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-25px);
    }
}
.bg-animation{
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* =========================
   Menu Card
   ========================= */

.menu {
    transition: all 0.3s ease;
}

.menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/* =========================
   Social Media Section
   ========================= */
.sosmed {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sosmed img {
    width: 32px;
    height: 32px;
    transition: 0.3s;
}

.sosmed img:hover {
    transform: scale(1.1);
}

.menu-container{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.menu-link{
    text-decoration: none;
    color: inherit;
}
.content {
    margin-top: 25px;
}
.menu{
    margin-top: 75px;
    width: 220px;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.menu:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #dff5ef;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img{
    width: 80px;
    height: 80px;
}

.tentang-list {
        display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px 30px;
    padding-left:25px;
}

/* =========================
   Skill Table
   ========================= */

.skill-tables{
    grid-template-columns:repeat(3,1fr);
    margin-top:20px;
}

.skill-table{
    width:100%;
    border-collapse:collapse;
}

.skill-table th{
    background:#2563eb;
    color:white;
    padding:15px;
    text-align:center;
}

.skill-table td{
    border:1px solid #e5e7eb;
    padding:12px;
    text-align:center;
}

.skill-table tr:hover{
    background:#f8fafc;
}

@media(max-width:768px){

    .skill-tables{
        grid-template-columns:1fr;
    }

}
/* =========================
   Experience table
   ========================= */

.experience-tables{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:20px;
}

.experience-table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

.experience-table th{
    background:#2563eb;
    color:white;
    padding:15px;
    text-align:center;
}

.experience-table td{
    border:1px solid #e5e7eb;
    padding:12px;
    text-align:center;
}

.experience-table tr:hover{
    background:#f8fafc;
}

@media(max-width:768px){

    .experience-tables{
        grid-template-columns:1fr;
    }

}
.content-box{
    background:#f3f3f3;
    margin-top:40px;
    padding:40px;
    border-radius:25px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.hobby-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.hobby-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.hobby-img{
    height:220px;
    object-fit:cover;
}

.hobby-card h4{
    font-weight:bold;
    margin-bottom:10px;
}

.hobby-card p{
    color:#555;
    line-height:1.6;
}

/* =========================
   Timeline Pendidikan
   ========================= */

.timeline{
    position: relative;
    margin-left: 25px;
}

.timeline::before{
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #0d6efd;
    border-radius: 20px;
}

.timeline-item{
    position: relative;
    margin-bottom: 40px;
    padding-left: 70px;
}

.timeline-icon{
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,.15);
    z-index: 2;
}

.timeline-card{
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    transition: .3s;
}

.timeline-card:hover{
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.timeline-card h4{
    font-weight: bold;
}

.timeline-card p{
    color: #555;
    margin-bottom: 0;
}

/* =========================
   CSS untuk list
   ========================= */
.games-list {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:5px 20px;
    padding-left:20px;
    margin-bottom:0;
}

.game-list li{
    font-size:14px;
}
