/* ==========================================
   CONSULT ANAMIKA
   Editorial / Medical Journal Theme
========================================== */

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #fafafa;
    color: #222;
    line-height: 1.8;
}

/* ---------- NAVBAR ---------- */

.navbar {
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: #333 !important;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* ---------- HERO ---------- */

.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.eyebrow {
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    max-width: 900px;
    margin: auto;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    max-width: 700px;
    margin: 30px auto;
    font-size: 1.2rem;
    color: #666;
}

/* ---------- HEADINGS ---------- */

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ---------- FEATURED ARTICLE ---------- */

.featured-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.featured-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.featured-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
}

.featured-content h2 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* ---------- ARTICLE CARDS ---------- */

.article-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: #777;
}

.article-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* ---------- AUTHOR SECTION ---------- */

.author-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.author-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---------- LINKS ---------- */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ---------- FOOTER ---------- */

footer {
    margin-top: 100px;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    color: #777;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .featured-card img {
        height: 280px;
    }

    .featured-content h2 {
        font-size: 1.8rem;
    }

    .author-section {
        text-align: center;
        padding: 30px;
    }

    .author-photo {
        margin-bottom: 25px;
    }
}