/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    max-width: 1000px;
}

/* Header & Navigation */
header {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #0077b5;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #005582;
}
/* Specific color for YouTube link */
nav a.youtube-link {
    color: #FF0000;
}

/* Hover effect so it turns a darker red when you mouse over it */
nav a.youtube-link:hover {
    color: #CC0000;
}
/* Hero Section */
.hero {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Image Styling */
.profile-container {
    margin-bottom: 25px;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #eee; /* Placeholder color while loading */
}
.quote {
    font-size: 1.6rem;
    font-style: italic;
    color: #555;
    margin-bottom: 5px;
    max-width: 700px;
}

.author {
    font-weight: bold;
    margin-bottom: 25px;
    color: #777;
}

.btn {
    display: inline-block;
    background: #0077b5;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005582;
}

/* Main Content (Articles) */
main {
    padding: 3rem 0;
}

h2 {
    border-left: 5px solid #0077b5;
    padding-left: 15px;
    margin-bottom: 30px;
}

.post {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post h3 a {
    text-decoration: none;
    color: #333;
}

.post h3 a:hover {
    color: #0077b5;
}

.meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.9rem;
    color: #777;
}