/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #F4EEDC, #EFE6CF);
    padding-top: 90px; /* navbar space */
    color: #2E2A26;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    padding: 0 50px;
    background: linear-gradient(90deg, #3B2F2F, #2E2424);

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #E9DFC7;
}

.nav-logo {
    height: 70px;
    object-fit: contain;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #E9DFC7;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color .3s;
}

.nav-menu a.active {
    color: #E6B566;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #E6B566;
    border-radius: 10px;
    transition: .3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ================= PROFILE ================= */
.profile-section {
    max-width: 920px;
    margin: 60px auto;
    padding: 40px;
}

.profile-card {
    background: linear-gradient(180deg, #FFF9EB, #F6EED9);
    padding: 80px 60px;
    border-radius: 36px;

    box-shadow: 0 35px 70px rgba(0,0,0,.18);
    text-align: center;
}

/* AVATAR */
.profile-avatar {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 20px;

    background: #F4EEDC;
    border: 4px solid #E6D3A3;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);

    transition: transform .3s ease, box-shadow .3s ease;
}

.profile-avatar:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* TEXT */
.profile-card h2 {
    margin: 10px 0 5px;
    font-size: 28px;
}

.tagline {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 15px;
}

/* INFO GRID */
.profile-info {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

/* tiap kolom */
.profile-info div {
    max-width: 300px;
    text-align: center;
}

.profile-info h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #2F3E34;
}

.profile-info p {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.8;
}

/* ABOUT kiri */
.about {
    text-align: left;
}

.about p {
    text-align: justify;
}

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(90deg,#3B2F2F,#2E2424);
    color: #E9DFC7;

    margin-top: 100px;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #d6cfc2;
}

.footer-links {
    min-width: 160px;
}

.footer-links h4 {
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #E9DFC7;
    font-size: 14px;
    transition: .2s;
}

.footer-links a:hover {
    color: #E6B566;
}

.footer-contact {
    min-width: 200px;
}

.footer-contact h4 {
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #d6cfc2;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;
    font-size: 13px;
    color: #cfc7b8;
}
/* SOCIAL BUTTON */
.social-buttons {
    margin-top: 10px;
}

.btn-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;
    border-radius: 8px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: white;

    transition: 0.3s ease;
}

.btn-ig img {
    width: 18px;
    height: 18px;
}

.btn-ig:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}