/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

header h5 {
    font-size: 18px;
    font-weight: 600;
}

/* NAV */
header nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

header nav a:hover {
    color: #000;
}

/* HERO */
.hero {
    padding: 80px 0;
}

.hero-content {
    max-width: 700px;
}

/* PROFILE IMAGE */
.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

/* TITLE */
.hero h1 {
    font-size: 42px;
    font-weight: 700;
}

/* SUBTITLE */
.subtitle {
    font-size: 17px;
    color: #666;
}

/* DESCRIPTION */
.desc {
    margin-top: 20px;
    font-size: 17px;
    color: #444;
    max-width: 600px;
}

/* SOCIAL */
.social-icons a {
    margin-right: 12px;
    font-size: 18px;
    color: #666;
    transition: 0.2s;
}

.social-icons a:hover {
    color: #000;
}

/* BUTTONS */
.buttons .btn {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 6px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #111;
    border: none;
}

.btn-primary:hover {
    background: #333;
}

/* OUTLINE BUTTON */
.btn-outline-primary {
    border: 1px solid #111;
    color: #111;
}

.btn-outline-primary:hover {
    background: #111;
    color: #fff;
}

/* BLOG TITLE */
.blog-title {
    font-size: 30px;
    font-weight: 700;
}

/* BLOG CARD */
.blog-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: 0.25s;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* BLOG META */
.blog-meta {
    font-size: 13px;
    color: #888;
}

/* READ MORE */
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #111;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}

.read-more:hover {
    background: #333;
}

/* BACK BUTTON */
.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    color: #fff;
    background: #111;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}

.back-btn:hover {
    background: #333;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* UTIL */
.hidden {
    display: none;
}