/*
Theme Name:     SongFlexy Premium
Theme URI:      https://songflexy.com.ng
Description:    A custom WordPress theme for SongFlexy, optimized for SEO and speed.
Version:        1.3
Author:         junenaija
Author URI:     https://wa.me/2348163914244
Text Domain:    songflexy
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Tags:           custom-post-types, SEO, responsive, music, video
Tested up to:   6.6.1
Requires PHP:   7.4
Update Date:    2024-10-19
*/



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; 
    background-color: white;
    color: #333;
}
.tagtat{
    font-size: 14px !important;
}
header {
    background-color: white;
    padding: 10px;
}

a {
    color: #3396ff;
    text-decoration: none; /* Optional: Remove underline from links */
}
/* Add this CSS to your theme's stylesheet or a custom CSS file */
#morebutton {
    text-align: right !important;
}




a:hover,
a:focus {
    color: #3396ff; /* Darker #3396ff color on hover/focus */
    text-decoration: none; /* Optional: Add underline on hover/focus */
}


.header-container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    position: relative; /* Allows positioning the toggle menu on mobile */
}

.logo{
    width: 180px;
    max-width: 100%;
    height: 50px;
    margin-left: 10px;
}

.logo-section h1 {
    font-size: 24px;
    color: #3396ff;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center; /* Center text */
}

.menu-toggle {
    position: absolute;
    right: 20px; /* Positioning the toggle button to the right */
    display: block;
    background: none;
    border: none;
    color: inherit;
    
}

.menu-toggle i {
    font-size: 28px;
    color: #3396ff;
}


/* Mobile Navigation Styles */


.nav-icons {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-icons li {
    text-align: center;
}

.nav-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333; /* Adjust color as needed */
    text-decoration: none;
    padding: 10px;
}

.nav-icons i {
    font-size: 24px; /* Adjust icon size as needed */
    margin-bottom: 5px;
}

.nav-icons span {
    font-size: 12px; /* Adjust text size as needed */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Optional: Add a hover effect */
.nav-icons a:hover {
    color: #3396ff; /* Adjust hover color as needed */
}

.nav-icons a:hover i {
    color: #3396ff; /* Adjust hover color for icons as needed */
}





/* Desktop Navigation Styles */
.nav-desktop {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.wp-caption-text{
    display: none;
}
.size-medium {
  display: block;
  margin: 0 auto;
  max-width: 100%; /* Ensures responsiveness */
}

.aligncenter {
    clear: both;
    margin: 20px 10px 10px 40px;
}
.schema{
    display: none;
}
/* Media Query for Laptop Design */
@media (min-width: 768px) {
    /* Hide mobile icons and menu toggle on larger screens */
    .nav-mobile {
        display: none;
    }
    audio {
        width: 50% !important;
    }
    .breadcrumb {
    font-size: 16px !important;
    }
    
    .container {
      margin: 0 100px 50px 100px !important;
    }
    
    .image-caption {
        left: 40% !important;
    }

    .social-container{
        width: 100% !important;
    }
    
    .social-icon{
        font-size: 24px !important;
    }
    
    .post-image-content {
    height: auto;
    width: 100%;
    border-radius: 10px;
}
    
   
    .menu-toggle{
        margin-right: 60px;
        margin-top: 20px;
        cursor: pointer;
    }

    /* Center the logo for desktop view */
    .header-container {
        justify-content: center;
    }
    
    .post-title h2 {
    font-size: 16px !important;
   
}

.post-title h1{
    font-size: 26px !important;
}
    
    .author-text {
    font-size: 15px !important;
}

.author-name {
    font-size: 15px !important;
}

.post-date {
    font-size: 15px !important;
}



    /* Show desktop navigation on larger screens */
    .nav-desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    
    
    /* Hide desktop menu on mobile screens */
    .nav-desktop {
        display: none;
    }

    /* Show mobile icons and menu toggle on smaller screens */
    .nav-mobile {
        display: block;
    }

    .menu-toggle {
        display: block;
        
        
    }

    .header-container {
        justify-content: space-between;
    }
}
/* General Styles for Homepage Body */
.homepage-body {
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
 
}

/* Trending Now Title */
.trending-now {
    background-color: #3396ff;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 12px 20px; /* Reduced padding for narrower background */
    font-size: 14px; /* Reduced font size */
    text-align: center;
    margin-bottom: 5px;
    font-weight:800;
    display: flex;/* Ensures the width is only as wide as the content */
    border-radius: 6px;
}

/* Post List */
.post-list {
    margin-top: 5px;
}

.post-item {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.post-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    
}

.post-image img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-details {
    flex-grow: 1;
}

.post-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Next Post Link */
.next-post {
    display: block;
    background-color: #3396ff;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .post-title {
        font-size: 14px; /* Adjusted for mobile */
    }

    .trending-now {
        font-size: 14px; /* Smaller font size on mobile */
    }
}





/* Footer Styles */
.footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #3396ff;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line */
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 5px 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 16px; /* Increased font size */
}

.footer-links a:hover {
    color: #3396ff;
}

.social-media {
    margin-bottom: 15px;
}

.social-media a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #3396ff;
}

.social-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px; /* Adjust as needed */
    margin-bottom: 10px; /* Adjust as needed */
}

.social-icon {
    text-decoration: none;
    font-size: 22px;
}
/* Facebook icon color */
.social-icon[href*="facebook.com"] {
    color: #1877F2; /* Facebook blue */
}

/* Twitter icon color */
.social-icon[href*="twitter.com"] {
    color: #1DA1F2; /* Twitter blue */
}

/* WhatsApp icon color */
.social-icon[href*="whatsapp.com"] {
    color: #25D366; /* WhatsApp green */
}

/* Telegram icon color */
.social-icon[href*="t.me"] {
    color: #0088cc; /* Telegram blue */
}

/* Link copy icon color */
#copy-link {
    color: #333; /* Dark gray for link copy */
}
#copy-link1{
    color: #333;
}

/* Hover effect for social icons */
.social-icon:hover {
    opacity: 0.8; /* Slightly dim on hover */
}


.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.copy-notification.fade-out {
    opacity: 0;
}


.dmca {
    margin-bottom: 15px;
}

.dmca img {
    width: 100px;
    height: 20px;
}

.copyright {
    font-size: 12px;
    color: #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center; /* Center the links */
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px; /* Adjust size for mobile */
        margin: 5px 10px;
    }

    .social-media a {
        font-size: 20px;
    }
    
   
    
}

/* Hide the search bar by default */
.search-bar {
    display: none;
    padding: 10px;
    background-color: white;
    position: absolute;
    top: 60px; /* Adjust based on your header height */
    right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

/* Style the search input and button */
.search-bar form {
    display: flex;
    align-items: center;
}

.search-bar input[type="text"] {
    width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

.search-bar button {
    padding: 8px 16px;
    background-color: #3396ff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}



#trend{
    margin-top: 20px;
}

/* General styling */
.container {
    padding: 10px;
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 5px;
    color: #3396ff;
    margin-top: 10px; 
}

.breadcrumb a {
    text-decoration: none;
    color: #3396ff;
}

.breadcrumb a::after {
    content: " >> ";
    color: gray;
}

.breadcrumb a:last-child::after {
    content: "";
}

/* Post Title */
.post-title h1 {
    font-size: 24px;
    margin-top: 10px;
}

.post-title h2 {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-size: 13px;
    color: #3396ff;
    font-weight: 700;
}

.verified-badge {
    width: 12px;
    height: 12px;
    position: relative; /* or 'absolute' */
    top: 3px; /* Adjust the value as needed */
}

.post-date {
    color: gray;
    font-size: 12px;
}
.author-text{
    color: gray;
    font-size: 12px;
    display: inline;
    
}

/* Post Image Container */
.post-image-container {
    position: relative;
    margin-bottom: 10px;
}

.post-image-content {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 2px;
}

.image-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    width: 80%;
}

/* Telegram Button */
.telegram-button {
    background-color: #3396ff;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
.telegram-button:hover {
    color: white;
}


/* Post Content */
.post-content {
    font-size: 16px;
    margin-bottom: 20px;
}

.post-content > p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-content p:first-of-type {
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

/* Separator Line */
.separator {
    height: 1px;
    background-color: #e0e0e0;
}

.comment-section {
    border-radius: 8px;
    margin-top: 20px;
    
}

.comment-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.comment-section .comment-form {
    display: flex;
    flex-direction: column;
}

.comment-section .comment-form label {
    margin-bottom: 5px;
}

.comment-section .comment-form input[type="text"],
.comment-section .comment-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.comment-section .comment-form textarea {
    resize: vertical;
}

.comment-section .comment-form input[type="submit"] {
    background-color: #3396ff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .comment-section {
        padding: 15px;
    }

    .comment-section .comment-form input[type="text"],
    .comment-section .comment-form textarea {
        font-size: 16px;
    }

    .comment-section .comment-form input[type="submit"] {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Container for post content */
.post-content {
    max-width: 800px; /* Limit width for readability */
    font-family: Arial, sans-serif; /* Clean, professional font */
    line-height: 1.6; /* Improve readability */
    color: #333; /* Dark text color for readability */
}

/* Headings */
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    font-family: 'Arial', serif; /* Serif font for headings */
    color: #222; /* Slightly darker color for headings */
    margin-top: 1.5em; /* Space above headings */
    margin-bottom: 0.5em; /* Space below headings */
    line-height: 1.4; /* Improve spacing for headings */
}

/* Links */
.post-content a {
    color: #3396ff; /* Green color for links */
    text-decoration: none; /* Remove underline */
}

.post-content a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Lists */
.post-content ul, .post-content ol {
    padding-left: 20px; /* Indent lists */
}

.post-content li {
    margin-bottom: 10px; /* Space between list items */
}

/* Images */
.post-content img {
    max-width: 100%; /* Responsive images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for images */
    margin: 10px 0; /* Margin for spacing */
}

/* Blockquotes */
.post-content blockquote {
    border-left: 4px solid #3396ff; /* Green border for blockquote */
    padding-left: 15px; /* Space inside blockquote */
    margin: 20px 0; /* Margin for spacing */
    font-style: italic; /* Italicize text */
    color: #555; /* Slightly lighter color */
    background-color: #f1f1f1; /* Light background */
    border-radius: 4px; /* Rounded corners for blockquote */
}

/* Code Blocks */
.post-content pre {
    background-color: #333; /* Dark background for code blocks */
    color: #f8f8f2; /* Light text color */
    padding: 10px; /* Padding inside code blocks */
    border-radius: 4px; /* Rounded corners for code blocks */
    overflow-x: auto; /* Scrollbar for long lines */
}

/* Tables */
.post-content table {
    width: 100%; /* Full width */
    border-collapse: collapse; /* Collapse borders */
    margin: 20px 0; /* Margin for spacing */
}

.post-content th, .post-content td {
    padding: 10px; /* Padding inside cells */
    border: 1px solid #ddd; /* Light border */
    text-align: left; /* Left align text */
}

.post-content th {
    background-color: #f4f4f4; /* Light background for headers */
    font-weight: bold; /* Bold headers */
}

/* Style for the post tags */
.post-tags {
    margin: 20px 0;
    font-size: 14px;
    color: #333;
    text-align: left; /* Align tags to the left */
}

.post-tags p {
    margin: 0;
}
.post-tags a {
    color: #3396ff; /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.post-tags a:hover {
    color: #3396ff; /* Color on hover */
}

/* Style for the call-to-action section */
.rating-call-to-action {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    text-align: left; /* Align text to the left */
}

.rating-call-to-action p {
    margin: 10px 0;
}

.rating-call-to-action strong {
    font-weight: bold;
}

.rating-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #3396ff; /* Adjust as needed */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.rating-link:hover {
    color: #fff;
}


/* Style for the post image wrapper */
.post-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Style for the number overlay */
#post-number-1,
#post-number-2,
#post-number-3,
#post-number-4,
#post-number-5,
#post-number-6, 
#post-number-7,
#post-number-8,
#post-number-9,
#post-number-10 {
    position: absolute;
    top: 55%;
    left: 33%;
    transform: translate(-50%, -50%);
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Round border */
    font-size: 14px; /* Adjust font size */
    font-weight: bold;
    color: #fff; /* White text color */
    background-color: #3396ff; /* Green background */
    z-index: 10; /* Ensure it is above the image */
     margin-left: 40%;
}


/* Add more specific styles for other number IDs if needed */
#trending-now{
    margin-top: 10px;
}


/* Style for the SVG icon */
#trend svg {
    margin-left: 10px; /* Space between text and icon */
    margin-top: -3px;
    vertical-align: middle; /* Aligns the icon with the text */
}
.hiphopkray-related-post {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    margin-top: 20px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    max-width: 100%; /* Ensure full width on mobile */
}

.hiphopkray-related-post:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #333;
}

.hiphopkray-related-post-link {
    text-decoration: none;
    display: flex;
    color: #333 !important;
    width: 100%;
    font-size: 14px;
}

.hiphopkray-related-post-image {
    flex-shrink: 0;
    margin-right: 20px;
}

.hiphopkray-related-post-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.hiphopkray-related-post-title {
    flex-grow: 1;
    font-size: 14px;
    font-weight: bold;
    text-align: left; /* Align text to the left */
}




/* Media Query for Desktop View */
@media (min-width: 768px) {
    .hiphopkray-related-post {
        max-width: 500px; /* Set the desired width for desktop */
        margin: 20px 0; /* Align to the left by removing auto margin */
    }

    .hiphopkray-related-post-image img {
        width: 120px; /* Slightly larger image on desktop */
        height: 120px;
    }

    .hiphopkray-related-post-title {
        font-size: 18px; /* Slightly larger font size for desktop */
    }
}
/* Wrapper for the content and sidebar */
.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* Main content area */
.main-content {
    width: 75%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 20px;
}

.main2-content {
    width: 75%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 40px;
}

@media (max-width: 767px) {
.main2-content {
    width: 99%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 20px;
}
}

/* Sidebar */
.post-list-sidebar {
    width: 40%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding: 20px;
}

/* Sidebar post item */
.post-list-sidebar .post-item {
    display: flex;
    margin-bottom: 15px;
    
}

.post-list-sidebar .post-image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.post-list-sidebar .post-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3396ff;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.post-list-sidebar .post-info {
    flex: 1;
}

.post-list-sidebar .post-title {
    font-size: 12px;
    color: #333;
    margin-left: 3rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .main-content, .post-list-sidebar {
        width: 100%;
        padding: 0;
        
    }

    /* Adjust the post list layout for mobile view */
    .post-list-sidebar {
        display: flex;
        flex-direction: column; /* Stack items vertically */
    }

    .post-list-sidebar .post-item {
        display: flex;
        align-items: flex-start; /* Align items to the top */
        margin-bottom: 20px; /* Space between items */
        
        border-bottom: 1px solid #ddd; /* Optional border for separation */
    }

    .post-list-sidebar .post-image-wrapper {
        margin-right: 20px; /* Increase space between image and text */
    }

    .post-list-sidebar .post-image {
        width: 120px; /* Adjust image size for mobile */
        height: 120px; /* Adjust image size for mobile */
        display: block; /* Ensure the image displays as a block */
    }

    .post-list-sidebar .post-number {
       
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .3s ease;
}
    

    .post-list-sidebar .post-info {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center text vertically */
    }

    .post-list-sidebar .post-title {
        font-size: 14px; /* Adjust font size for mobile */
        margin-bottom: 5px; /* Add space below the title */
    }
}

/* end of post sidebar for single content*/

/*VIDEO SECTION CSS*/

/* Unique styling for the video section */
.video-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
    gap: 15px;
    margin: 20px auto;
    max-width: 1200px; /* Adjust as needed */
}

/* Ensure the grid items are properly styled */
.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}


/* Styling for the video thumbnail */
.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

/* Play icon styling */
.play-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #3396ff; /* Green accent color */
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 20px;
}

/* Video title styling */
.video-title {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.video-title small {
    display: block;
    font-size: 12px;
    color: #777;
}

/* Responsive design for mobile view */
@media (max-width: 768px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Ensure 2 columns on mobile */
    }

    .video-thumbnail img {
        width: 100%; /* Full width for mobile */
        height: 100px; /* Maintain aspect ratio */
    }

    .video-title {
        font-size: 12px; /* Adjust font size for mobile */
    }
}

/* Ensure the grid is responsive and maintains 2x2 layout on very small screens */
@media (max-width: 480px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Two columns for small screens */
    }
}

/* END OF HOME VIDEO CSS*/
/* Pagination Container */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Pagination Links */
.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 16px;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    background-color: #3396ff; /* Green background for the links */
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active Pagination Link */
.pagination .current {
    background-color: #3396ff; /* Darker color for the active page */
    color: #fff; /* Off-White text for the active page */
    border: 2px solid #3396ff; /* Green border for the active page */
    font-weight: bold;
    padding: 8px 16px; /* Adjust padding to account for border */
    border-radius: 4px;
}

/* Hover Effects */
.pagination a:hover {
    background-color: #3396ff; /* Slightly darker Green on hover */
    color: #fff;
}

/* Previous/Next Text */
.pagination .prev, .pagination .next {
    font-weight: bold;
    margin-top: 10px;
}

/* Additional Styling for Mobile */
@media (max-width: 768px) {
    .pagination a {
        padding: 6px 12px;
        font-size: 13px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

    .pagination .current {
        padding: 6px 12px;
        font-size: 13px;
    }
}
/* Style for the Page Title */
.page-title {
    background-color: #3396ff; /* Green background */
    color: #fff; /* White text color */
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* General Styling for Category, Tag, and Author Post Items */
.page-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.page-post-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
}


.page-post-thumbnail {
    position: relative;
}

.page-post-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 200px; /* Adjust the height to maintain aspect ratio */
}

.page-post-title {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.page-post-title a {
    text-decoration: none;
    color: #333;
}

.page-post-title a:hover {
    color: #e74c3c; /* Accent color on hover */
}

/* Sidebar Styles */
.sidebar-desktop {
    float: right;
    width: 25%;
    margin-left: 20px; /* Adjust as needed */
}


.desktop-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li a {
    color: #333; /* Text color */
    
    text-decoration: none;
    display: block;
}

.desktop-nav li a:hover,
.desktop-nav li:hover > a {
    color: #fff;
}

/* Hide the dropdown menu by default */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #333;
    list-style: none;
    padding: 10px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 150px;
}

/* Ensure the parent is positioned relatively for the absolute dropdown */
.nav-menu .menu-item-has-children {
    position: relative;
}

/* Show the dropdown menu on hover */
.nav-menu .menu-item-has-children:hover .dropdown-menu {
    display: block;
}

/* Optional: Style the dropdown menu items */
.nav-menu .dropdown-menu li {
    margin-bottom: 10px;
}

.nav-menu .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu .dropdown-menu li a {
    text-decoration: none;
    color: #fff;
}

.listen-section {
    margin-top: 10px;
}

.listen-section p {
    font-weight: bold;
    margin-bottom: 10px;
}

audio {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}

.download-button {
    display: inline-block;
    background-color: #3396ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-button .button {
    display: inline-flex;
    align-items: center;
    background-color: #3396ff;
    color: white;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    gap: 10px; /* Space between text and icon */
}

.download-button .button svg {
    margin-left: 8px; /* Space between text and icon */
    fill: white; /* Icon color */
}
.youtube-embed {
    text-align: center;
}

.youtube-embed iframe {
    max-width: 100%;
    height: 300px;
}

.download-button .button {
    display: inline-flex;
    align-items: center;
    background-color: #3396ff;
    color: white;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    gap: 10px; /* Space between text and icon */
}

.download-button .button svg {
    margin-left: 8px; /* Space between text and icon */
    fill: white; /* Icon color */
}

.download-button .button:hover {
    background-color: #3396ff; /* Darker green on hover */
}
/* 404 Page Styles */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 .page-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.error-404 .page-content {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.error-404 .page-content p {
    margin: 0;
}

.error-404 a {
    color: #3396ff;
    text-decoration: none;
    font-weight: bold;
}

.error-404 a:hover {
    text-decoration: underline;
}

/* Search Form Styles */
.search-form {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5em;
}

.search-form input[type="search"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    max-width: 100%;
    box-sizing: border-box;
}

.search-form input[type="search"]:focus {
  
    outline: none;
}

.search-form input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #0073e6;
    color: white;
    cursor: pointer;
    font-size: 1em;
    margin-left: 10px;
}

.search-form input[type="submit"]:hover {
    background-color: #005bb5;
}

.comment-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.comments-section {
    margin-bottom: 20px;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.comments-title::before {
    content: '💬'; /* Comment icon */
    margin-right: 10px; /* Spacing */
}

.comment-list {
    list-style-type: none;
    padding: 0;
}

.comment-list li {
    display: flex; /* Use flexbox for alignment */
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.comment-list li:hover {
    background-color: #f1f1f1; /* Highlight on hover */
}

.avatar {
    border-radius: 50%; /* Makes the avatar round */
    width: 35px; /* Adjust size if needed */
    height: 35px; /* Adjust size if needed */
    margin-right: 15px; /* Space between avatar and text */
    float: left;
}

.comment-meta {
    font-size: 14px;
    color: #666;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center align items */
    margin-bottom: 5px;
}

.comment-meta .fn {
    font-weight: bold; /* Bold for author name */
    color: #0073aa; /* Author link color */
    margin-right: 10px; /* Space between author and date */
}

.comment-meta .commentmetadata {
    font-size: 12px; /* Smaller font for date */
    color: #999; /* Lighter color for date */
}

.comment-meta a {
    color: #666;
}

.comment-content {
    font-size: 16px;
    line-height: 1.5;
}

.no-comments {
    font-style: italic;
    color: #999;
}

.comment-edit-link {
    font-size: 12px;
    color: #0073aa;
}

.comment-edit-link:hover {
    text-decoration: underline;
}

.reply {
    margin-top: 10px;
}

.reply a {
    color: #3396ff;
    font-weight: bold;
}

.reply a:hover {
    text-decoration: underline;
}

#respond {
    margin-top: 20px;
}

.custom-comment-form input,
.custom-comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-comment-form button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.custom-comment-form button:hover {
    background-color: #005177;
}
