/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header / Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 15px 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: gold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
}

nav ul li a.active {
    color: gold;
}

.icons span {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

/* Blogs Section */
.blogs {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.gold {
    color: gold;
}

/* Blog Cards */
.blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    
}

.blog-card {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.5);
    
}

.blog-card img {
    width: 100%;
    border-radius: 10px;

}

.blog-card h3 {
    font-size: 18px;
    margin-top: 10px;

}

.author {
    font-weight: bold;
    color: gold;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: gold;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.read-more:hover {
    background: orange;
}

/* Footer */
footer {
    text-align: center;
    background: black;
    padding: 10px;
    margin-top: 40px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 15px;
    margin: 0 10px;
    color: white;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
}

.highlight {
    color: gold;
}

