/* Global Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #323237;
    font-family: Georgia, serif;
    overflow-x: hidden;
}

a, a:visited {
    color: #ce6229;
    text-decoration: none;
}

h1, h2, h3, hr {
    color: #ce6229;
    font-family: 'Dancing Script', cursive;
}

/* Navbar Styles */
.navbar {
    background-color: #1c1c1c;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar a:hover {
    color: #ff6347 !important;
}

.navbar .logo a {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    margin-right: 20px;
    color: #ff6347;
}

.navbar .logo a:hover {
    color: #0d88da !important;
}

.navbar a {
    color: #e0e0e0;
    padding: 10px;
    transition: color 0.3s ease;
}

.navbar .menu {
    display: flex;
}

.navbar .menu a {
    margin-right: 20px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #e0e0e0;
    background: none;
    border: none;
    cursor: pointer;
}

/* Image Row Styles */
.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 20px;
}

.image-container {
    position: relative;
    flex: 1 1 25%;
    max-width: 300px;
    margin: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.image-container a img {
    width: 100%;
    height: auto;
    max-width: 200px;
    box-shadow: 0 0 5px 5px #616161;
    border: 10px solid black;
    transition: box-shadow 0.3s ease;
    border-radius: 17px;
}

.image-container a img:hover {
    box-shadow: 0 0 8px 8px #616161;
}

blockquote {
    background-color: rgba(170, 170, 170, 0.15);
    padding: 12px;
    border-radius: 8px;
    margin: 2px;
}

.caption {
    position: absolute;
    bottom: 10px;
    margin-left: 10px;
    width: 100%;
    max-width: 200px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 0;
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    box-sizing: border-box;
}

.image-container a {
    display: block;
    position: relative;
}

/* Article Content and List Styles */
.article-content, .articles-list {
    margin: 40px auto;
    width: 80vw;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 10px 10px #3f3f3f;
    padding: 20px;
    background: #202020;
    text-align: justify;
    text-justify: inter-word;
}

.article-content {
    color: #ccc;
    font-size: 21px;
    padding: 40px;
    line-height: 1.6;
}

.article-content h1, .articles-list h1 {
    text-align: center;
    font-size: 30px;
}

.article-content h2 {
    text-align: left;
    font-size: 24px;
}

.article-content h3 {
    text-align: left;
    font-size: 22px;
}

.articles-list ul {
    list-style: none;
    padding: 0;
}

.articles-list li {
    padding: 10px 0;
    font-size: 18px;
}

.articles-list li a {
    color: #777;
    font-weight: normal;
}

.articles-list li a:hover {
    color: #ccc;
}

/* Welcome Text Styles */
.welcome-text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease, visibility 2s ease;
    text-align: center;
    color: #ce6229;
    font-size: 42px;
    margin: 20px 0;
    font-family: 'Dancing Script', cursive;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

.fade-in {
    animation: fadeIn 2s ease forwards;
}

/* Logged In Indicator */
#loggedInIndicator {
    width: 10px;
    height: 10px;
    background-color: blue;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    filter: blur(2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .article-content, .articles-list {
        font-size: 16px;
        padding: 20px;
        max-width: min(90vw, 300px);
    }

    /* .image-container {
        flex: 1 1 100%;
        margin: 10px 30px;
    } */

    .navbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar .menu a {
        margin: 0;
        padding: 10px;
        border-top: 1px solid #333;
    }

    .menu-toggle {
        display: block;
    }

    .menu-active .menu {
        display: flex;
    }
}






.files_list {
    margin-top: 20px;
    padding: 20px;
    background-color: #2d2d31;
    border-radius: 10px;
    box-shadow: inset 0 0 0px 3px #494949;
}

.files_list h3 {
    color: #ce6229;
    font-family: 'Dancing Script', cursive;
    margin-top: 0px;
    margin-bottom: 0px;
}

.files_list ol {
    padding-left: 20px;
    margin-top: 3px;
}

.files_list li {
    margin-bottom: 5px;
    color: #777;
    font-size: 18px;
}

.files_list li a {
    color: #ccc;
    text-decoration: none;
}

.files_list li a:hover {
    color: #0d88da;
}
