
/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Header Styles */
.header {
    background-color: rgb(76, 76, 255);
    padding: 1vh 3vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10.5vh;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h1header {
    text-align: center;
    font-size: 4vh;
    margin: 0;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.h3header {
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
    font-size: 1.8vh;
    margin: 0.5vh 0 0 0;
    color: #e0e0ff;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 12vh;
    left: 0;
    width: 100%;
    height: 6vh;
    background-color: #333;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 999;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 1.8vh;
    padding: 1vh 1.5vh;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #555;
}

/* Main Content */
.main-content {
    margin-top: 18vh;
    padding: 20px;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 20px;
}

/* News Articles */
.news-section {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article:last-child {
    border-bottom: none;
}

.article h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 10px;
}

.article-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.article img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 3px;
}

.article p {
    line-height: 1.6;
    color: #444;
}

/* Sidebar */
.sidebar {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sidebar h3 {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}

.trending-list {
    list-style-type: none;
    padding: 0;
}

.trending-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.trending-list li:last-child {
    border-bottom: none;
}

.trending-list a {
    color: #0066cc;
    text-decoration: none;
}

.trending-list a:hover {
    text-decoration: underline;
}

/* Featured Story */
.featured-article {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.featured-article h2 {
    color: #004080;
    font-size: 24px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 100%;
    }
    
    .navbar {
        height: auto;
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .navbar a {
        margin: 5px;
    }
}

/* Special Elements */
.breaking-news {
    background-color: #ff4444;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    margin-right: 10px;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}