/* assets/css/style.css */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 20px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.search-bar input {
    border: none;
    box-shadow: none !important;
}

.search-bar button {
    border-radius: 50px;
    padding: 10px 30px;
}

.category-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 10px;
}

.category-card {
    transition: transform 0.3s;
    cursor: pointer;
}

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

.news-card {
    height: 100%;
}

.news-source {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: bold;
}
