/* ===== THEME ROOT ===== */
:root {
    --header-gradient: linear-gradient(to right, #d4b45c, #a45a1abe, #5a2a00);
    --bg-gradient: linear-gradient(to bottom, #f2d6a0, #d4aa6a, #b07c3a);
    --card-bg: linear-gradient(145deg, #f3e0c3, #d4b07a);
    --text-dark: #1a0b05;
    --saffron: #d97706;
    --gold: #b8860b;
}

/* ✅ HEADER BANNER */
.banner {
    width: 100%;
    height: 160px;
    background: url("../assets/images/header-footer-images/abisy-breadcum-background.png") center/cover no-repeat;
    position: relative;
}

.header__title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 22px;
    margin: 0;
}

/* ===== CARD ===== */
.profile-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
}

/* ===== IMAGE ===== */
.profile-img-wrap {
    background: rgba(0,0,0,0.05);
    padding: 25px;
}

.profile-img {
    max-width: 230px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ===== TEXT ===== */
.profile-title {
    color: var(--saffron);
    font-weight: 700;
}

.profile-name {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== TABS ===== */
.custom-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
}

.custom-tabs .nav-link.active {
    background: var(--header-gradient);
    color: #fff;
    border: none;
}

/* ===== TAB CONTENT ===== */
.tab-text {
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 10px;
    line-height: 1.7;
}

/* ===== RESUME IFRAME ===== */
.resume-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
}

.resume-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header__title {
        font-size: 1.4rem;
    }

    .resume-wrapper {
        height: 420px;
    }
}
