/* 🔥 GLOBAL TRANSITION */
* {
    transition: all 0.3s ease;
}

/* BACKGROUND */
body {
   background: linear-gradient(135deg, #d16ba5, #ff9a9e, #fbc2eb);
   padding-top: 110px;
   font-family: 'Playfair Display', serif;
}

/* PROFILE BOX */
.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;

    /* aesthetic */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);

    /* 🔥 ANIMASI MASUK */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

/* FOTO */
.rifdum, .nochan {
    width: 200px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER FOTO */
.rifdum:hover, .nochan:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* TEKS */
.profile h2 {
    color: #7a2c5b;
    transform: translateY(8px);
}

/* HOVER NAMA */
.profile h2:hover {
    letter-spacing: 1px;
    color: #a03c78;
}

.profile h4 {
    color: #9c4b6b;
}

/* CARD */
.custom-card .list-group-item {
    background-color: rgba(255, 220, 230, 0.7);
    color: #7a2c5b;
}

/* SECTION */
.biodata {
    background: linear-gradient(to bottom, #fff, #ffe0ec);
}

.biodata h1,
.ourteam h1 {
    color: #7a2c5b;
    letter-spacing: 2px;
}

/* NAVBAR */
.nav-link:hover {
    color: #a03c78 !important;
}

/* 🔥 KEYFRAMES ANIMASI */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

