/* 
Theme Name: EchoxBlog
Theme URI: https://www.eyruz.com/product/wp/theme/echoxblog/
Author: Eyruz Badalzada Studio
Author URI: https://www.eyruz.com/
Description: EchoxBlog is a modern, lightweight, and responsive WordPress theme designed for personal blogs, portfolios, and news websites. Clean design, fast performance, and full customizer support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: echoxblog
Tags: blog, news, portfolio, one-column, two-columns, custom-background, custom-header, custom-menu, featured-images, theme-options, translation-ready
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.2
Copyright (c) 2025 Eyruz Badalzada Studio
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #333;
}

.desktop-nav .dropdown-menu .nav-link {color: #333 !important;}
.heading404 {color: #ffa500 !important;}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    header {
        text-align: left;
    }
}

@media only screen and (max-width: 480px) {
    header {
        font-size: 16px;
    }
}
.custom-logo {
    max-width: 200px; 
    height: auto; 
}

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

.comment-list li {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.comment-list li .comment-author {
    font-weight: bold;
    font-size: 1.1em;
    color: #0073e6;
}

.comment-list li .comment-meta {
    font-size: 0.9em;
    color: #666;
}

.comment-list li .comment-content {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
}

.comment-list li .comment-reply-link {
    background-color: #0073e6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
}

.comment-list li .comment-reply-link:hover {
    background-color: #005bb5;
}
.comment-form {
    background-color: #fff;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    margin-top: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    color: #333;
}

.comment-form input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
}

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

.comment-form label {
    font-weight: bold;
    color: #333;
}

.comment-form textarea {
    height: 150px;
    resize: vertical;
}

.comment-form .error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

.footer-text {padding:0.25rem 0 0.25rem 0; display:block; text-align: center;}
.card-container {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card-container img.card-img-top {
  transition: transform 0.5s ease;
}


.card-container:hover img.card-img-top {
  transform: scale(1.1);
}

.catagory-btn {background-color:#0073e6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.catagory-btn .catagory-link { color:#fff!important;}

.card-container:hover .catagory-btn  {
-webkit-box-shadow: 1px 1px 24px -3px rgba(0,0,0,0.46);
-moz-box-shadow: 1px 1px 24px -3px rgba(0,0,0,0.46);
 box-shadow: 1px 1px 24px -3px rgba(0,0,0,0.46);
  transform: translateY(-2px);
}






