body {
    font-family: 'Lora', 'Ubuntu', serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

* {
    font-style: normal !important;
}

a {
    text-decoration: none;
    color: #444;
}

a:hover {
    text-decoration: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.nav-link {
    font-weight: 500;
    margin-left: 1rem;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}

.wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#searchInput {
    width: 400px;
    border-radius: 30px;
    font-weight: 300;
    color: grey;
}

#searchInput::placeholder {
    color: grey;
}

#searchInput:focus,
#searchInput:active,
#searchInput:focus-visible
{
    outline: none;
    box-shadow: none;
}

#searchSuggestions {
    position: absolute;
    font-weight: 300;
    font-size: medium;
}

#searchSuggestions a {
    cursor: pointer;
    color: dimgrey;
    font-weight: 350;
}

.site-footer {
    color: grey;
    background: white;
    padding: 40px 0 20px;
    font-size: 0.9rem;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: wrap;
}
.footer-top .col-md-4 {
    max-width: 250px
}

.site-footer h5 {
    color: #111;
}

.site-footer p {
    color: #111;
    font-weight: 300;
    line-height: 2;
}

.site-footer a {
    color: #111;
    font-weight: 300;
    line-height: 2;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
    color: dimgrey;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: royalblue;
}

.footer-top a:hover {
    color: royalblue;
}

.footer-bottom {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    .social-icons a {
        margin: 0 5px;
    }
}

/* Mobile adjustments */
@media (max-width: 991px) {
    #searchInput {
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .nav-item.position-relative {
        width: 100%;
    }
    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}