/* assets/css/style.css */

:root {
    --background-color: #121212;
    --text-color: #ffffff;
    --button-bg: rgba(255, 255, 255, 0.1);
    --button-border: rgba(255, 255, 255, 0.25);
    --button-hover-bg: rgba(255, 255, 255, 0.2);
    --verified-color: #3897f0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    /* Mengatur gambar background dari folder assets */
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 30px 20px;
    box-sizing: border-box;
}

/* Bagian Header Profil */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--text-color);
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge {
    color: var(--verified-color);
    font-size: 1.2rem;
    margin-left: 8px;
    background-color: white;
    border-radius: 50%;
    padding: 2px;
}

.profile-bio {
    font-size: 0.95rem;
    margin-top: 10px;
    max-width: 500px;
    opacity: 0.9;
}

/* Bagian Link Tombol */
.links-container {
    width: 100%;
    max-width: 600px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--button-bg);
    border: 1px solid var(--button-border);
    color: var(--text-color);
    text-decoration: none;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;

    /* Efek Kaca (Glassmorphism) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Untuk support Safari */
}

.link-button:hover {
    background: var(--button-hover-bg);
    transform: scale(1.03);
}

.link-button .link-icon {
    font-size: 1.5rem;
    position: absolute;
    left: 20px;
}

/* Bagian Footer */
.footer {
    margin-top: 30px;
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer a {
    color: var(--text-color);
    font-weight: bold;
}