/* Animated underline */
nav a.link:hover, .topics:hover {
    color: #fff;
}

nav a.link:hover::before, footer ul li a:hover::before, .topics:hover::before {
    transform: scaleX(1);
}

/* Global */
html {
    font-family: 'JetBrains Mono', monospace;
    background: #1F1F1F;
}

body {
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    background: #1F1F1F;
    color: #fff;
}

h1 {
    font-weight: bold;
    color: #0889E5;
    margin: 1rem 0;
}

a {
    color: #0889E5;
}

hr {
    border: none;
    border-top: 1px solid #B6C7D3;
}

/* Navbar */
nav {
    background: #1a1b1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    color: #fff;
}

nav img {
    margin: 0;
}

nav li a, nav a.link {
    text-decoration: none;
    padding: 0.6rem 0.25rem;
    position: relative;
    color: #fff;
}

nav a.link::before {
    content: "";
    position: absolute;
    display: block;
    width: 80%;
    height: 2px;
    bottom: -2px;
    left: 10%;
    transform: translateX(-50%);
    background-color: #fff;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    justify-content: flex-end;
}

nav ul li {
    margin-right: 1.5rem;
}

nav ul li:last-child {
    margin-right: 0;
}

.dropdown.pull-left .dropdown-content {
    right: 0;
    left: auto;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

nav .dropdown a::before {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    top: 100%;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #1F1F1F;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #B6C7D3;
}

.dropdown-content a::before {
    display: none;
}

/* Content Section */
.content {
    padding: 30px;
}

h2 {
    font-style: italic;
}

/* Other */
.featured-posts-container,
.latest-posts-container {
    display: flex;
    flex-wrap: wrap;
}

.featured-post,
.latest-post {
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    text-align: center;
}

.featured-post a,
.latest-post a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    color: #fff; 
    font-size: 20px;
}

.featured-post img,
.latest-post img {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.featured-post a::before,
.latest-post a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%); 
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.featured-post a:hover::before,
.latest-post a:hover::before {
    width: 100%;
}

.featured-posts h3, .latest-posts h3 {
    margin: 0.25rem;
}

/* Footer */
footer {
    background-color: #005DA5;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    display: inline-block;
    margin-right: 10px;
}

footer ul li:last-child {
    margin-right: 0;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

footer ul li a:hover {
    color: #fff;
}

footer ul li a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input#password, input#username,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 20%;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 16px;
    transition: box-shadow 0.15s, transform 0.15s;
}

input[type="text"],
input[type="email"],
input#password, input#username,
textarea:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset; 
    transform: translateY(-2px);
}

/* Button */
button, input {
    align-items: center;
    appearance: none;
    background-color: #FCFCFD;
    border-radius: 4px;
    border-width: 0;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    box-sizing: border-box;
    color: #36395A;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono", monospace;
    height: 40px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow 0.15s, transform 0.15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
}

button:focus, input:focus {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

button:hover, input:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    transform: translateY(-2px);
}

button:active, input:active {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}

label {
    margin-bottom: 8px; 
    display: inline-block;
}

.topics a {
    color: #fff;
    text-decoration: none;
    font-size: 25px;
}

i.far.fa-comment {
    font-size: 24px;
    transform: translateY(-2px);
}