/* Global Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Remove Blue Highlight on Click (Mobile) */
a, button, input, textarea, select {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

/* Navbar */
.navbar-brand img {
    max-height: 50px;
}
.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active .nav-link {
    color: #007bff;
}

/* Banner */
.banner {
    background-color: #007bff; /* Fallback */
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

/* Footer Bottom Nav */
.bottom-nav {
    position: relative;
    z-index: 1050;
}
.bottom-nav a {
    text-decoration: none;
    transition: opacity 0.3s;
}
.bottom-nav a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Utilities */
.text-justify {
    text-align: justify;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Article Content Styles */
.article-content img {
    max-width: 100%;
    height: auto !important;
    border-radius: 4px;
    margin: 10px 0;
}
.article-content p {
    margin-bottom: 1rem;
}

/* Plus Icon Rotation */
.plus-icon {
    transition: transform 0.3s ease;
}
.rotate-45 {
    transform: rotate(45deg);
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
}