/* assets/css/style.css */
body {
    padding-top: 70px;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Breaking News */
.breaking-news-bar {
    background: linear-gradient(90deg, #dc3545, #ff6b81);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.breaking-news-bar .badge {
    animation: pulse 1.5s ease-in-out infinite;
    font-size: 14px;
    padding: 8px 15px;
}

.breaking-text {
    display: flex;
    animation: scroll-text 20s linear infinite;
    white-space: nowrap;
}

.breaking-text .news-item {
    margin-right: 50px;
}

.breaking-text a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breaking-text a:hover {
    text-decoration: underline;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Headline */
.headline-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.headline-card .card-body {
    padding: 30px;
}

/* Section Title */
.section-title {
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-title i {
    color: #0d6efd;
    margin-right: 10px;
}

/* Cards */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    margin-top: 50px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer .social-icons a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a:hover {
    color: #0d6efd !important;
}

/* Dashboard */
.dashboard-stats {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.dashboard-stats:hover {
    transform: translateY(-5px);
}

.dashboard-stats .icon {
    font-size: 40px;
    color: #0d6efd;
}

.dashboard-stats .number {
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
}

.dashboard-stats .label {
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .headline-card .card-body {
        padding: 15px;
    }
    
    .headline-card h2 {
        font-size: 1.5rem;
    }
    
    .breaking-text {
        animation: scroll-text 30s linear infinite;
    }
}