/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #d9d1db; /* Light gray text for dark backgrounds */ 
    background-color: #121212; /* Dark background */
}

/* Header styles */
header {
    background: #1f2937; /* Darker header background */
    color: #f6f3f6; /* Light text */
    padding: 1rem 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    /*color: #f9c74f; /* Accent color for logo */
    color: #33b8ff;
}

.logo {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the text color */
    font-weight: bold;
    transition: color 0.4s;
}

.logo:hover {
    /*color: #f9c74f; /* Accent color on hover */
    color: #4240d4;
}

nav ul {
    font-size: 1.2rem;
    list-style: none;
    display: flex;
    font-weight: normal;
}


nav ul li {
    margin-left: 1rem;
}
nav ul li a {
    color: #33b8ff; /* Light link color */
    text-decoration: none;
    transition: color 0.4s;
}
nav ul li a:hover {
    /*color: #f9c74f; /* Accent color on hover */
    color: #4240d4;
}
/* Hero Section */
#hero {
    text-align: center;
    padding: 2rem 1rem;
    background: #1e293b; /* Slightly lighter dark for hero section */
    color: #f3f4f6;
}
#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
#hero p {
    font-size: 1.2rem;
}

/* Section styles */
section {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}
h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    /*color: #f9c74f; /* Accent color for headings */
    color: #ffffff;
}
.post {
    background: #1f2937; /* Dark background for posts */
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #374151; /* Subtle border for separation */
    border-radius: 5px;
}
.post h3 {
    margin-bottom: 0.5rem;
}
.post a {
    color: #ffffff; /* Accent color for links */
    text-decoration: none;
    transition: color 0.2s;
    font-weight: bold;
}


.post a:hover {
    text-decoration: none;
    color: #4240d4;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 1rem;
    background: #1f2937; /* Dark footer background */
    color: #d1d5db; /* Light gray text */
    margin-top: 2rem;
}
@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-Regular.ttf') format('truetype');
         /* url('fonts/BlenderPro-Medium.woff') format('woff');*/
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-Bold.ttf') format('truetype');
         /* url('fonts/BlenderPro-Bold.woff') format('woff'); */
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
}


body {
    background-color: #282b4f; /* Dark background */
}

/* <div class="logo">ABOODI.SITE</div> */

