@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    /* Background dengan gradasi unik */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    min-height: 100vh;
    line-height: 1.8;
    
}

header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px); /* Efek blur kaca */
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header ul { display: flex; list-style: none; }
header ul li { margin-left: 30px; }
header ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
header ul li a:hover { color: #38bdf8; }

.container {
    padding: 60px 10%;
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Desain Foto Profil */
.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Bentuk unik organik */
    border: 4px solid #38bdf8;
    margin-bottom: 30px;
    transition: 0.5s ease;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.profile-img:hover {
    border-radius: 50%;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
}

/* Card Info dengan Glassmorphism */
.info-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Garis aksen di samping */
.info-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(#38bdf8, #818cf8);
}

.info-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

strong { color: #38bdf8; }

/* Animasi Entry */
.ani-masuk {
    animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes reveal {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Efek tombol di halaman lain juga terikut */
.btn {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}
footer {
    display: flex;          /* Mengaktifkan mode flex */
    justify-content: center; /* Memposisikan konten secara horizontal ke tengah */
    align-items: center;     /* Memposisikan konten secara vertikal ke tengah */
    text-align: center;      /* Memastikan teks di dalamnya juga rata tengah */
    
    padding: 30px 20px;
    width: 100%;
    background: rgba(15, 23, 42, 0.8); /* Warna gelap transparan */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Agar footer tetap di bawah jika konten halaman sedikit */
    margin-top: auto; 
}

footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0; /* Menghilangkan margin bawaan browser */
}
