/* ============================================
   PORTFOLIO - Dark Glassmorphism Theme
   Color: Purple Aura + Mint Accent
   ============================================ */

/* ===========================================
   1. IMPORTS & VARIABLES
   =========================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
/* ================= 1. VARIABLES & RESET ================= */
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap"); */

:root {
    /* Color Palette */
    --bg-color: #08080b;       /* Dark Background */
    --accent-purple: #8B5CF6;  /* Ungu */
    --accent-mint: #3EF4A2;    /* Hijau Mint */
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    
    /* Effects */
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Font */
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-white);
    overflow-x: hidden; /* Mencegah scroll horizontal */
}

a { text-decoration: none; }

/* ================= 2. UTILITIES ================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Efek Teks Gradasi (Ungu ke Mint) */
.gradient-text {
  background: linear-gradient(to right, var(--accent-mint), var(--accent-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  
  /* Efek Glow Halus */
  filter: drop-shadow(0 0 15px rgba(120, 255, 200, 0.3)); /* Sesuaikan warna mint/ungu */
}

/* ================= VISITOR COUNTER ================= */
.visitor-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    margin: 2rem 0; /* Jarak atas bawah */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.visitor-badge:hover {
    border-color: var(--accent-mint);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(62, 244, 162, 0.1);
}

.badge-icon {
    width: 40px; height: 40px;
    background: rgba(62, 244, 162, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-mint);
    font-size: 1.2rem;
    animation: pulse-radar 2s infinite;
}

.badge-text {
    text-align: left;
    display: flex; flex-direction: column;
}

.badge-text span {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-text h4 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 0;
    font-family: monospace; /* Font ala coding */
}

@keyframes pulse-radar {
    0% { box-shadow: 0 0 0 0 rgba(62, 244, 162, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(62, 244, 162, 0); }
    100% { box-shadow: 0 0 0 0 rgba(62, 244, 162, 0); }
}
/* Efek Glow di belakang teks */
.glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
}

.home-glow {
    background: var(--accent-purple);
    top: -100px;
    right: -100px; /* Posisi glow di pojok kanan atas */
}

/* Animasi Muncul Perlahan */
.fade-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= BENTO GRID LAYOUT ================= */
.skill-bento {
    display: grid;
    /* Grid 3 Kolom, tinggi baris otomatis */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px); 
    gap: 1.5rem;
    margin-bottom: 3rem;
    
    /* Mendefinisikan Area Puzzle */
    grid-template-areas: 
        "soft soft net"
        "hard des net";
}

/* Assign Area ke Class HTML */
.area-soft { grid-area: soft; }
.area-net  { grid-area: net; }
.area-hard { grid-area: hard; }
.area-des  { grid-area: des; }

/* Styling Kartu Bento */
.bento-item {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Teks di bawah */
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px; /* Sudut lebih bulat = lebih modern */
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efek Hover Kartu */
.bento-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

/* Icon Raksasa di Background (Hiasan) */
.bento-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.03;
    color: var(--text-white);
    transition: 0.4s;
    pointer-events: none;
}
.bento-item:hover .bento-bg-icon {
    transform: rotate(15deg) scale(1.1);
    opacity: 0.1;
    color: var(--accent-mint); /* Berubah warna saat hover */
}

/* Konten dalam Kartu */
.bento-content { position: relative; z-index: 2; }

.icon-box {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent-mint);
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.bento-item h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Khusus Kartu Network (Vertical) */
.area-net {
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.2);
}

/* ================= INFINITE MARQUEE (RUNNING TEXT) ================= */
.tech-marquee {
    position: relative;
    width: 100%;
    overflow: hidden; /* Sembunyikan yang keluar layar */
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll 20s linear infinite; /* Animasi Jalan */
}

/* Hentikan animasi saat kursor diarahkan */
.marquee-track:hover {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
}

.tech-item i {
    font-size: 1.8rem;
    color: var(--accent-mint);
}

.tech-item:hover {
    color: var(--text-white);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--accent-purple);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= RESPONSIVE (MOBILE) ================= */
@media screen and (max-width: 768px) {
/* 1. PARENT: Paksa jadi kolom dan rata tengah */
  .home__container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* UBAH INI: Kurangi gap antar elemen secara drastis */
    gap: 0.5rem; /* Sebelumnya 1.5rem, sekarang dibuat sempit */
    
    padding-top: 2rem;
  }

  /* ... code .home__content display: contents ... */
  .home__content { display: contents; }

  /* UPDATE BAGIAN JUDUL */
  .home__title {
    order: 2;
    /* Hilangkan margin bawah agar gambar bisa naik */
    margin-bottom: 0 !important; 
    width: 100%;
    
    /* Opsional: Jika barisnya terlalu renggang, rapatkan sedikit */
    line-height: 1.2; 
  }

  /* UPDATE BAGIAN VISUAL/FOTO */
  .home__visual {
    order: 3;
    position: relative !important;
    top: 0; left: 0; right: 0;
    
    width: 280px;
    height: 280px;
    
    /* MAGIC TRICK: Tarik gambar ke atas dengan Margin Negatif */
    margin-top: -10px; /* Coba atur angka ini (-10px, -20px) sampai pas */
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* 4. ELEMEN LAIN: Urutan & Reset Margin */
  
  .status-badge {
    order: 1;
    margin: 0 auto;                 /* Paksa tengah */
    display: inline-flex;           /* Agar width fit content */
  }

  .home__title {
    order: 2;
    margin: 0;                      /* Reset margin aneh */
    width: 100%;                    /* Full width agar text-align center jalan */
  }

  .home__desc {
    order: 4;
    margin: 0;
    padding: 0 1rem;                /* Padding kiri kanan biar gak mepet layar */
  }

  .home__buttons {
    order: 5;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;        /* Tombol rata tengah */
  }
    .skill-bento {
        grid-template-columns: 1fr; /* Jadi 1 kolom */
        grid-template-rows: auto;
        grid-template-areas: 
            "soft"
            "net"
            "hard"
            "des";
    }
    
    .bento-item {
        min-height: 200px;
    }
    .gradient-text {
        /* Ubah arah gradasi jika perlu, misal jadi top-to-bottom agar lebih jelas di HP */
        /* background: linear-gradient(to bottom, var(--accent-mint), var(--accent-purple)); */
        
        line-height: 1.3; /* Beri jarak antar baris agar gradasi tidak bertumpuk */
    }
}

/* ================= ABOUT BENTO LAYOUT ================= */
.about-bento-grid {
    display: grid;
    /* Grid Desktop: Kolom Kiri (Foto) 350px, Kolom Kanan sisa ruang */
    grid-template-columns: 350px 1fr 1fr;
    grid-template-rows: auto 120px auto;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* --- Shared Card Style (Sama dengan Skills) --- */
.bento-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
}

/* Background Icon Hiasan */
.bento-bg-icon {
    position: absolute;
    top: -10px; right: -10px;
    font-size: 8rem;
    color: var(--text-white);
    opacity: 0.03;
    pointer-events: none;
    transition: 0.4s;
    z-index: 0;
}
.bento-card:hover .bento-bg-icon {
    transform: rotate(10deg) scale(1.1);
    opacity: 0.08;
    color: var(--accent-mint);
}

/* --- 1. PHOTO ZONE (Carousel) --- */
.photo-zone {
    grid-column: 1 / 2;
    grid-row: 1 / 4; /* Memanjang dari atas ke bawah */
    min-height: 450px;
    padding: 0; /* Foto full tanpa padding */
}

.carousel-wrapper {
    width: 100%; height: 100%;
    position: relative;
}

.c-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.c-slide.active { opacity: 1; z-index: 2; }

.c-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.c-caption {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    z-index: 3;
}

.c-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent-mint);
    background: rgba(62, 244, 162, 0.1);
    border: 1px solid rgba(62, 244, 162, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.c-caption h3 { font-size: 1.5rem; color: #fff; }

/* Dots Navigation */
.c-dots {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    z-index: 10;
    display: flex; gap: 0.5rem;
}

.c-dot {
    width: 30px; height: 4px; /* Garis pipih modern */
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.c-dot.active { background: var(--accent-mint); width: 40px; }

/* --- 2. BIO ZONE --- */
.bio-zone {
    grid-column: 2 / 4;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.card-content { position: relative; z-index: 2; }
.card-content p { color: var(--text-gray); line-height: 1.7; font-size: 0.95rem; }
.highlight { color: var(--accent-mint); font-weight: 600; }

/* --- 3. STAT ZONE --- */
.stat-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.stat-content h3 { font-size: 2rem; color: var(--accent-purple); margin: 0; }
.stat-content span { font-size: 0.8rem; color: var(--text-gray); text-transform: uppercase; }

/* --- 4. MUSIC ZONE --- */
.music-zone {
    grid-column: 2 / 4;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}
.music-inner { width: 100%; position: relative; z-index: 2; }
.music-label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; color: #1DB954; font-weight: 600; font-size: 0.9rem; }

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 968px) {
    .about-bento-grid {
        grid-template-columns: 1fr 1fr; /* 2 Kolom di Tablet */
        grid-template-rows: auto;
    }
    .photo-zone { grid-column: 1 / 3; height: 400px; } /* Foto jadi lebar penuh */
    .bio-zone { grid-column: 1 / 3; }
    .music-zone { grid-column: 1 / 3; }
}
/* ================= TECH-GEOMETRIC HOME ================= */

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-top: 2rem;
}

/* --- BAGIAN TEKS --- */
.status-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(62, 244, 162, 0.1);
    border: 1px solid rgba(62, 244, 162, 0.2);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: var(--accent-mint);
    margin-bottom: 1.5rem;
}
.status-light { width: 8px; height: 8px; background: var(--accent-mint); border-radius: 50%; box-shadow: 0 0 10px var(--accent-mint); }

.home__title {
    font-size: 3.5rem; line-height: 1.2; font-weight: 700; margin-bottom: 1.5rem;
}

.home__desc {
    color: var(--text-gray); font-size: 1rem; line-height: 1.7;
    margin-bottom: 2.5rem; max-width: 480px;
}

.home__buttons { display: flex; align-items: center; gap: 2rem; }

.social-mini { display: flex; gap: 1rem; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray); transition: 0.3s;
}
.social-icon:hover {
    background: var(--text-white); color: #000; transform: translateY(-3px);
}

/* --- BAGIAN VISUAL (Tech Frame) --- */
.home__visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
    height: 500px; /* Area kerja visual */
}

.tech-frame {
    position: relative;
    width: 320px; height: 400px;
}

/* 1. Main Image Box */
.main-image-box {
    width: 100%; height: 100%;
    border-radius: 24px; /* Sudut tumpul modern */
    position: relative;
    z-index: 2;
    overflow: hidden;
    
    /* Border Gradient Keren */
    padding: 3px; /* Ketebalan border */
    background: linear-gradient(45deg, var(--accent-purple), transparent, var(--accent-mint));
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}

.profile-pic {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 22px; /* Sedikit lebih kecil dari parent */
    filter: brightness(0.9); /* Sedikit gelap biar elegan */
    background: var(--bg-color); /* Fallback */
}

.pic-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    z-index: 3;
}

/* 2. Radar Circles (Background Animation) */
.radar-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.circle-1 {
    width: 450px; height: 450px;
    border: 1px dashed rgba(139, 92, 246, 0.2); /* Dashed purple */
    animation: spin 30s linear infinite;
}

.circle-2 {
    width: 380px; height: 380px;
    border: 1px solid rgba(62, 244, 162, 0.1); /* Solid mint tipis */
    animation: pulse-ring 4s ease-in-out infinite;
}

/* 3. Floating Chips (Elemen Melayang) */
.tech-chip {
    position: absolute;
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

/* Posisi Chip */
.chip-1 {
    width: 50px; height: 50px;
    top: 40px; left: -25px;
    font-size: 1.8rem; color: #2496ED; /* Docker Blue */
}

.chip-2 {
    width: 50px; height: 50px;
    bottom: 50px; right: -25px;
    font-size: 1.8rem; color: var(--accent-purple);
    animation-delay: 2s;
}

.chip-3 {
    padding: 0.6rem 1rem;
    bottom: 30px; left: -30px;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(62, 244, 162, 0.1), rgba(20, 20, 25, 0.9));
    border-color: rgba(62, 244, 162, 0.3);
}

.chip-text { display: flex; flex-direction: column; line-height: 1.2; }
.chip-text span { font-size: 0.7rem; color: var(--text-gray); }
.chip-text strong { font-size: 0.9rem; color: var(--accent-mint); }


/* ANIMASI */
@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse-ring { 
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; } 
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; } 
}
@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-15px); } 
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 968px) {
    .home__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .home__desc { margin: 0 auto 2rem; }
    .home__buttons { justify-content: center; }

    .tech-frame {
        width: 280px; height: 350px; /* Perkecil sedikit di HP */
    }
    
    /* Atur ulang posisi chip di HP agar tidak keluar layar */
    .chip-1 { left: -10px; top: 20px; }
    .chip-2 { right: -10px; bottom: 40px; }
    .chip-3 { left: 50%; transform: translateX(-50%); bottom: -20px; animation: none; } /* Chip 3 diam di tengah bawah */
    
    .radar-circle { display: none; } /* Sembunyikan radar di HP biar bersih */
}
/* ================= 3. BUTTONS ================= */
.home__btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

/* Tombol Utama (Putih) */
.button--primary {
    background: var(--text-white);
    color: var(--bg-color);
}

.button--primary:hover {
    background: var(--accent-mint);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(62, 244, 162, 0.2);
}

/* Tombol Link (Teks saja) */
.button--link {
    color: var(--text-gray);
    position: relative;
}

.button--link:hover {
    color: var(--text-white);
}

.button--link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: 0.3s;
}

.button--link:hover::after {
    width: 100%;
}


/* ================= 4. HOME SECTION LAYOUT ================= */
.home {
    position: relative;
    min-height: 100vh; /* Full layar */
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.home__container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom: Kiri Teks, Kanan Gambar */
    align-items: center;
    gap: 4rem;
    width: 100%;
}

/* --- Typografi --- */
.home__subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-mint);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.home__description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 450px;
}

/* ================= 5. HOME VISUAL (ORBIT & IMAGE) ================= */
.home__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gambar Utama Profile */
.home__img-main {
    width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    /* Masking agar bagian bawah foto transparan menyatu dengan bg */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Lingkaran Orbit */
.circle-orbit {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    z-index: 1; /* Di belakang foto */
    
    /* Animasi Putar Terus Menerus */
    animation: rotateOrbit 20s linear infinite;
}

/* Planet Kecil di Orbit */
.planet {
    position: absolute;
    border-radius: 50%;
}

.planet-1 {
    width: 20px;
    height: 20px;
    background: var(--accent-purple);
    top: 50px;
    left: 80px;
    box-shadow: 0 0 15px var(--accent-purple);
}

.planet-2 {
    width: 10px;
    height: 10px;
    background: var(--accent-mint);
    bottom: 80px;
    right: 60px;
    box-shadow: 0 0 10px var(--accent-mint);
}

/* Keyframes untuk Animasi Putar */
@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ================= 6. RESPONSIVE (MOBILE) ================= */
@media screen and (max-width: 768px) {
    .home__container {
        grid-template-columns: 1fr; /* Jadi 1 kolom vertikal */
        text-align: center;
        gap: 3rem;
        padding-top: 4rem; /* Jarak dari atas */
    }

    .home__title {
        font-size: 2.5rem;
    }

    .home__description {
        margin: 0 auto 2rem; /* Tengahkan deskripsi */
    }

    .home__btns {
        justify-content: center; /* Tengahkan tombol */
    }

    /* Sesuaikan ukuran visual di HP */
    .home__img-main {
        width: 280px;
        height: 320px;
    }

    .circle-orbit {
        width: 350px;
        height: 350px;
    }
}
:root {
  /* Colors */
  --clr-primary: #3EF4A2;
  --clr-primary-light: rgba(62, 244, 162, 0.15);
  --clr-primary-glow: rgba(62, 244, 162, 0.4);
  --clr-purple: #8B5CF6;
  --clr-purple-dark: #6D28D9;
  --clr-purple-light: rgba(139, 92, 246, 0.15);
  --clr-purple-glow: rgba(139, 92, 246, 0.4);
  --clr-bg: #0a0a0f;
  --clr-bg-light: #12121a;
  --clr-text: #ffffff;
  --clr-text-muted: rgba(255, 255, 255, 0.5);
  --clr-text-subtle: rgba(255, 255, 255, 0.7);
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  
  /* Typography */
  --font-family: "Poppins", sans-serif;
  --fs-xl: clamp(2.5rem, 6vw, 4.5rem);
  --fs-lg: clamp(1.5rem, 3vw, 2rem);
  --fs-md: clamp(1rem, 2vw, 1.25rem);
  --fs-sm: 0.938rem;
  --fs-xs: 0.813rem;
  
  /* Spacing */
  --header-height: 4rem;
  --section-padding: 6rem 0 3rem;
  
  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-fixed: 100;
  --z-modal: 1000;
}


/* ===========================================
   2. BASE & RESET
   =========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-sm);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ===========================================
   3. REUSABLE CLASSES
   =========================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section__title {
  font-size: var(--fs-lg);
  color: var(--clr-text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-purple);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.highlight {
  color: var(--clr-primary);
  position: relative;
}

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-purple-dark));
  color: var(--clr-text);
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--clr-purple-glow);
}

/* ===========================================
   4. HEADER & NAVIGATION
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header.scroll-header {
  background: rgba(10, 10, 15, 0.95);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  transition: var(--transition);
}

.nav__logo:hover img {
  filter: drop-shadow(0 0 10px var(--clr-purple-glow));
}

.nav__list {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  position: relative;
  color: var(--clr-text-subtle);
  font-weight: 500;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--clr-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-purple));
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--clr-text);
  cursor: pointer;
}

/* ===========================================
   5. HOME SECTION
   =========================================== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(to bottom, rgba(10, 10, 15, 0.3), rgba(10, 10, 15, 0.95)),
    /* url('/assets/img/frame.jpg') center/cover no-repeat; */
  position: relative;
  overflow: hidden;
}

/* Floating Orbs */
.home__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 15s ease-in-out infinite;
}

.home__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--clr-purple-glow);
  top: -10%;
  right: -10%;
}

.home__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-primary-glow);
  bottom: -15%;
  left: -10%;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.home__container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.home__card {
  max-width: 550px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.home__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-purple), transparent);
}

.home__greeting {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.home__name {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px var(--clr-purple-glow);
}

/* .home__title {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-purple);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
} */

.home__title::before,
.home__title::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-purple), transparent);
}

.home__title::after {
  background: linear-gradient(90deg, transparent, var(--clr-purple));
}

.home__location {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.home__location i {
  color: var(--clr-primary);
}

.home__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.home__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 1.4rem;
  color: var(--clr-text-subtle);
  transition: var(--transition);
}

.home__social-link:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--clr-primary-light);
}

.home__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.6rem 1.2rem;
  background: var(--clr-purple-light);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 30px;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.status__dot {
  width: 8px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===========================================
   6. PROJECT SECTION
   =========================================== */
.project__container {
  display: grid;
  gap: 2rem;
}

.project__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.project__media {
  border-radius: 16px;
  overflow: hidden;
}

.project__img,
.project__video {
width: 100%;
  /* Gunakan tinggi relatif terhadap layar (vh) atau pixel tetap */
  height: 500px; /* Atau bisa ganti: 70vh (70% tinggi layar) */
  
  /* KUNCI UTAMA: */
  object-fit: cover;    /* Memotong kelebihan gambar agar pas di height yg ditentukan */
  object-position: top; /* Fokus crop tetap di bagian atas (wajah) */
  border-radius: 1rem;
}

.project__media:hover .project__img,
.project__media:hover .project__video {
  transform: scale(1.05);
}

.project__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project__title {
  font-size: var(--fs-md);
  margin-bottom: 1rem;
}

.project__description {
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.project__spotify {
  padding: 1.5rem;
  border-radius: 16px;
}

/* ===========================================
   7. ABOUT SECTION
   =========================================== */
.about__container {
  display: grid;
  gap: 2rem;
}

.about__content {
  display: flex;        /* Menggunakan Flexbox agar sejajar */
  align-items: stretch; /* PENTING: Memaksa tinggi foto & teks SAMA rata */
  overflow: hidden;     /* Agar sudut gambar tidak keluar dari border-radius */
  margin-bottom: 2rem;  /* Jarak antar kartu */
  
  /* Style Glass/Background Anda */
  border-radius: 1.5rem;
  /* background: rgba(255, 255, 255, 0.1); hapus comment ini jika class glass belum ada bg */
}

.about__info {
  flex: 1;              /* Mengambil sisa ruang yang ada */
  padding: 2.5rem;      /* Memberi napas pada tulisan */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Tulisan selalu di tengah vertikal (atas-bawah) */
}

.about__content--reverse {
  direction: rtl;
}

.about__content--reverse > * {
  direction: ltr;
}

.about__title {
  font-size: var(--fs-md);
  margin-bottom: 1rem;
}

.about__description {
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.about__img {
  flex: 0 0 40%;        /* Lebar gambar KUNCI (40% dari lebar kartu) */
  position: relative;   /* Agar gambar di dalamnya patuh */
  min-height: 300px;    /* Tinggi minimal agar tidak terlalu pendek */
}
.about__img img {
  width: 100%;
  height: 100%;         /* Memaksa tinggi mengikuti parent (kartu) */
  object-fit: cover;    /* Crop otomatis agar rapi & tidak gepeng */
  object-position: center top; /* Fokus crop di tengah agak atas (wajah) */
  display: block;       /* Menghapus gap di bawah gambar */
  border-radius: 0;     /* Reset radius di gambar, kita pakai radius container */
}

.about__img:hover img {
  transform: scale(1.05);
}



/* ===========================================
   8. ACCORDION (Qualifications)
   =========================================== */
.accordion__container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.accordion__item {
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  color: var(--clr-text);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: var(--transition);
}

.accordion__header span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion__header i {
  font-size: 1.3rem;
  color: var(--clr-purple);
}

.accordion__icon {
  font-size: 1.5rem;
  transition: var(--transition);
}

.accordion__header.active {
  color: var(--clr-primary);
}

.accordion__header.active .accordion__icon {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content.show {
  max-height: 500px;
}

.accordion__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
}

.accordion__card {
  padding: 1.25rem;
  background: var(--clr-bg-light);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.accordion__card h4 {
  font-size: var(--fs-xs);
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.accordion__card p {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.accordion__year {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--clr-purple-light);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-purple);
}

/* Language Bars */
.language__list {
  padding: 1rem 1.5rem 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.language__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: var(--fs-xs);
}

.language__level {
  color: var(--clr-purple);
  font-weight: 500;
}

.language__bar {
  height: 8px;
  background: var(--clr-bg-light);
  border-radius: 10px;
  overflow: hidden;
}

.language__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-primary));
  border-radius: 10px;
  transition: width 1s ease;
}

/* ===========================================
   9. SKILLS SECTION
   =========================================== */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.skills__item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.skills__item:hover {
  transform: translateY(-5px);
  border-color: var(--clr-purple);
  box-shadow: 0 15px 40px var(--clr-purple-light);
}

.skills__item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: var(--transition);
}

.skills__item:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.skills__more {
  text-align: center;
  margin-top: 2rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

/* ===========================================
   10. WORK SECTION
   =========================================== */
.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.work__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.work__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.work__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(109, 40, 217, 0.9), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.work__overlay h3 {
  font-size: var(--fs-sm);
  margin-bottom: 0.5rem;
}

.work__overlay i {
  font-size: 1.5rem;
  color: var(--clr-primary);
}

.work__card:hover img {
  transform: scale(1.1);
}

.work__card:hover .work__overlay {
  opacity: 1;
}

/* ===========================================
   11. CONTACT SECTION
   =========================================== */
.contact__container {
  max-width: 600px;
  margin: 0 auto;
}

.contact__form {
  padding: 2.5rem;
}

.contact__group {
  margin-bottom: 1.5rem;
}

.contact__input {
  width: 100%;
  padding: 1.25rem;
  background: var(--clr-bg-light);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--clr-text);
  font-family: inherit;
  font-size: var(--fs-sm);
  resize: none;
  transition: var(--transition);
}

.contact__input::placeholder {
  color: var(--clr-text-muted);
}

.contact__input:focus {
  outline: none;
  border-color: var(--clr-purple);
  box-shadow: 0 0 20px var(--clr-purple-light);
}

.contact__form .button {
  width: 100%;
  justify-content: center;
}

/* ===========================================
   12. FOOTER
   =========================================== */
.footer {
  background: var(--clr-bg-light);
  padding: 4rem 0 2rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer__title {
  font-size: var(--fs-lg);
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--clr-text-subtle);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--clr-purple);
  border-color: var(--clr-purple);
  color: var(--clr-text);
  transform: translateY(-3px);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ===========================================
   13. SCROLL UP
   =========================================== */
.scrollup {
  position: fixed;
  right: 1.5rem;
  bottom: -50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-purple-dark));
  border-radius: 10px;
  font-size: 1.5rem;
  color: var(--clr-text);
  z-index: var(--z-fixed);
  transition: var(--transition);
}

.scrollup:hover {
  transform: translateY(-5px);
}

.scrollup.show-scroll {
  bottom: 2rem;
}

/* ===========================================
   14. MEDIA QUERIES
   =========================================== */

/* Mobile */
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 6rem 2rem 2rem;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--glass-border);
    transition: var(--transition-slow);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
  }

  .nav__toggle {
    display: block;
  }

  .home__card {
    margin: 0 1rem;
    padding: 2rem;
  }

  .about__content {
    grid-template-columns: 1fr;
  }

.about__content--reverse {
  flex-direction: row-reverse; /* Membalik posisi secara horizontal */
}

/* Opsional: Tweak khusus foto lari agar fokus ke kaki/badan */
.about__content--reverse .about__img img {
  object-position: center center; 
}
  .project__card {
    grid-template-columns: 1fr;
  }
}
/* Container Kartu Buku */
.book__content {
  display: flex;
  align-items: center;
  gap: 4rem; /* Jarak jauh antara buku dan teks agar elegan */
  padding: 3.5rem;
  border-radius: 2rem;
  /* Pastikan class .glass Anda sudah ada background & backdrop-filter */
  overflow: visible; /* PENTING: Agar bayangan buku tidak terpotong */
}

/* --- Bagian Visual (Kiri) --- */
.book__visual {
  flex: 0 0 300px; /* Lebar area buku tetap */
  position: relative;
  display: flex;
  justify-content: center;
}

/* Efek Buku 3D */
.book__img {
  width: 100%;
  max-width: 220px; /* Ukuran buku */
  height: auto;
  border-radius: 4px 8px 8px 4px; /* Lengkungan ala punggung buku */
  
  /* MAGIC TOUCH: Membuat buku terlihat mengambang & nyata */
  box-shadow: 
    -10px 10px 20px rgba(0, 0, 0, 0.3), /* Bayangan besar */
    -2px 2px 5px rgba(255, 255, 255, 0.1) inset; /* Highlight pinggir */
  
  transform: perspective(1000px) rotateY(-10deg); /* Sedikit miring agar 3D */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Efek Hover saat mouse mendekat */
.book__content:hover .book__img {
  transform: perspective(1000px) rotateY(0deg) scale(1.05); /* Jadi lurus & membesar */
  box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.4); /* Bayangan makin dalam */
}

/* --- Bagian Info (Kanan) --- */
.book__info {
  flex: 1;
}

.book__header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.book__tag {
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--first-color); /* Sesuaikan warna tema Anda */
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.book__title {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.book__author {
  font-size: 1rem;
  color: #aaa; /* Warna abu-abu terang */
  font-style: italic;
}

.book__description {
  margin-bottom: 2rem;
  line-height: 1.7; /* Spasi baris lega agar enak dibaca */
  color: #e0e0e0;
}

/* Tombol Kecil */
.button--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--first-color);
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.button--small:hover {
  background-color: var(--first-color-alt);
}


/* Tablet */
@media screen and (min-width: 768px) {
  .nav {
    height: calc(var(--header-height) + 1rem);
  }

  .home__container {
    padding-left: 1rem;
  }
  
}

.book__content {
    flex-direction: column; /* Tumpuk ke bawah */
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .book__visual {
    flex: none;
    width: 100%;
  }

  .book__img {
    transform: none; /* Hilangkan efek miring di HP agar rapi */
    max-width: 180px;
  }
  
  .book__header {
    border-bottom: none; /* Hilangkan garis di HP */
  }

/* Desktop */
@media screen and (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }

  .home__card {
    max-width: 600px;
  }
}