/* IMPORT FONTS (MUST BE AT TOP) */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Manrope:wght@400;500;600&display=swap');

/* VARIABLES */
:root {
    --primary: #1db954;
    --black: #111;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
}

/* RESET */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* BODY → MANROPE (default text) */
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* HEADINGS → SORA */
h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
}

/* HEADER */
.header { 
    background: var(--white); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid var(--light-gray); 
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: 70px;
    position: relative;
}

.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo { 
    height: 90px; 
    max-width: 150px;
    object-fit: contain;
}

.back-icon { 
    color: var(--black); 
    font-size: 20px;
    text-decoration: none;
}

.spacer {
    width: 24px;
}

/* BLOG */
.blog-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px;
}

.blog-header h1 {
    font-size: 28px;
    margin: 15px 0;
}

.blog-meta {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 30px;
}

/* PARAGRAPH → MANROPE */
.blog-body p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #333;
    font-family: 'Manrope', sans-serif;
}

/* SUBHEADINGS (OPTIONAL OVERRIDE IF NEEDED) */
.blog-body h2,
.blog-body h3 {
    font-family: 'Sora', sans-serif;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: var(--light-gray);
    padding: 25px;
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    margin: 30px 0;
}

.highlight-box ul {
    margin-top: 15px;
    padding-left: 20px;
}

/* FROM-TO */
.from-to {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.box {
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
}

.from { background: #fee2e2; color: #991b1b; }
.to { background: #dcfce7; color: #166534; }

/* FOOTER */
.blog-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}