/*
Theme Name: Novril
Theme URI: https://novril.com
Author: Novril
Author URI: https://novril.com
Description: A custom WordPress theme built from scratch.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: novril
*/

/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background: black;
}

/* Layout */
.site-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.site-header {
    /*background: #1a1a2e;*/
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.site-title a:hover {
    color: black;
    background: blue;
}

.site-description {
    font-size: 0.875rem;
    /*opacity: 0.8;*/
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.primary-menu a {
    color: white;
    text-decoration: none;
}

.primary-menu a:hover {
    color: blue;
}

/* Posts */
article {
    margin-bottom: 3rem;
    padding-bottom: 2em;
    /*border-bottom: 1px dotted #eee;*/
}

.entry-title a {
    color: white;
    text-decoration: none;
}

.entry-title a:hover {
    color: blue;
}

.entry-meta {
    color: white;
    font-size: 0.875rem;
    margin: 0.5rem 0 1rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    /*background: #f5f5f5;*/
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 0.875rem;
    /*opacity: 0.8;*/
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: blue;
}

/* selected link */
a:active {
  color: blue;
}



/* Responsive */
@media (max-width: 768px) {
    .site-header {
        align-items: flex-start;
    }

    .primary-menu {
        margin-top: 1rem;
    }
    
    .main-navigation ul {
        display: list-item;
        text-align: left;
    }
    
    .site-branding {
    }
}