/* ================== GLOBAL STYLES ================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fef9f3;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

:root {
    --primary: #0d6efd;
    --primary-dark: #084298;
    --secondary: #f7c700;
    --light: #f8f9fa;
    --dark: #212529;
    --accent: #ff6b6b;
    --text-light: #6c757d;
}

/* ================== BRAND / LOGO ================== */
.brand-title {
    font-size: 1.5rem;
    color: #003087;
}

.logo-line {
    height: 4px;
    border: none;
    border-top: 4px solid rgb(34, 73, 153);
    margin: 4px 0;
    width: 100%;
    max-width: 350px;
}

.brand-location {
    font-size: 1rem;
    color: #003087;
}

/* ================== NAVBAR ================== */
.navbar-nav .nav-link {
    color: #2a37a8 !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 12px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ================== SOCIAL ICONS ================== */
.social-icons a {
    font-size: 1.5rem;
    margin-left: 10px;
    color: white;
    transition: color 0.3s;
}

#facebook { color: #1877F2; }
#instagram { color: #C13584; }
#youtube { color: #FF0000; }

.social-icons a:hover {
    color: var(--secondary);
}

/* ================== SECTION HEADER ================== */
.section-header {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.6rem;
}

.section-header small {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ================== BLOG CARDS ================== */
.blog-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.btn-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.btn-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* No content placeholder */
.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dee2e6;
}

.no-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* ================== MEDIA QUERIES ================== */
@media (max-width: 991px) {
    .navbar-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .blog-image { height: 180px; }
    .blog-title { font-size: 1.1rem; }
}

@media (max-width: 576px) {
    .brand-title { font-size: 1.2rem; }
    .brand-location { font-size: 0.95rem; }
    .logo-line { width: 80%; }
    .container { font-size: 14px; }
}
