/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #ffcc00, #fff7cc);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Kontainer */
.container {
    max-width: 450px;
    width: 90%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Profil */
.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #ffcc00;
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    color: gray;
    margin-bottom: 20px;
}

/* Link */
.links a {
    display: block;
    background: #ffcc00;
    color: black;
    padding: 14px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.links a:hover {
    background: #e6b800;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Review Customer */
.reviews {
    margin-top: 20px;
}

.review-box {
    background: #fff7cc;
    padding: 15px;
    margin: 10px auto;
    border-radius: 10px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
}

/* Animasi */
.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 14px;
    color: black;
    background: rgba(255, 204, 0, 0.8);
    width: 100%;
    padding: 10px 0;
}

/* Responsif */
@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .links a {
        font-size: 16px;
        padding: 12px;
    }

    .review-box {
        width: 95%;
    }
}
