/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Header styling */
/* Header container */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f8f9fa;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo container styling */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px; /* Adjust size */
    height: 60px;
    border-radius: 50%; /* Makes the image round */
    margin-right: 10px; /* Space between logo and text */
}

.logo-container h1 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

/* Navigation menu styling */
nav {
    flex-grow: 1;
    text-align: center;
}

nav ul {
    list-style: none;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 20px; /* Space between navigation items */
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hover effect for links */
nav ul li a:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.1); /* Slight scaling on hover */
}


    

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #502323;
    line-height: 1.6;
}

/* Header Styling */
header {
    background: #f5cdcd;
    color: rgb(51, 32, 32);
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #26706a;
    text-decoration: none;
}

/* Main Content Area */
#blog {
    padding: 2rem;
    background: white;
    margin: 2rem auto;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

article {
    margin-bottom: 2rem;
}
#load-more {
    background: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    margin: 2rem auto;
}

#load-more:hover {
    background: #555;
}

article h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

article a {
    display: inline-block;
    margin-top: 0.5rem;
    background: #333;
    color: white;
    padding: 0.5rem;
    text-decoration: none;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: small;
}

/* About Section Styling */
#about {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem auto;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#about h2 {
    color: #333;
    margin-bottom: 1rem;
}

#about p {
    line-height: 1.6;
    color: #555;
}

/* Enable smooth scrolling */
html {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}



