/* Additional theme styles can be added here */

/* Navigation Text Fix */
.neofilm-nav__text-wrapper {
    font-size: 0;
}

.neofilm-nav__text {
    font-size: 16px !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }
    
    .neofilm-nav__menu {
        display: none;
    }
    
    .toggled .neofilm-nav__menu {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .toggled .neofilm-nav__item {
        float: none;
        display: block;
        width: 100%;
    }
}

/* Pagination */
.navigation {
    margin: 40px 0;
    overflow: hidden;
}

.nav-previous {
    float: left;
    width: 50%;
}

.nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/* Comments */
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-body {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 0.875em;
    color: #666;
    margin-bottom: 15px;
}

.comment-content {
    margin-bottom: 15px;
}

.reply {
    text-align: right;
}

.children {
    list-style: none;
    margin-left: 30px;
    margin-top: 20px;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #0073aa;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #005a87;
}

/* Search Form */
.search-form {
    display: flex;
    margin-bottom: 20px;
}

.search-form label {
    flex: 1;
    margin-right: 10px;
}

.search-form .search-field {
    width: 100%;
}

.search-form .search-submit {
    flex: 0 0 auto;
}

/* Accessibility */
.says,
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* Entry Meta Styling */
.entry-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.875em;
    color: #666;
}

.cat-links,
.tags-links,
.edit-link {
    display: inline-block;
    margin-right: 20px;
}

/* Read More Link */
.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

/* Post Navigation */
.post-navigation {
    margin: 40px 0;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
}

.nav-subtitle {
    display: block;
    font-size: 0.875em;
    color: #666;
}

.nav-title {
    font-weight: bold;
}