/*
Theme Name: Tido Theme
Theme URI: https://yourwebsite.com/tido-theme
Author: Dilip
Author URI: https://yourwebsite.com
Description: A modern, responsive WordPress theme designed for business, blog, and creative websites with clean UI and fast performance.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tido-theme
Tags: custom-theme, responsive, modern, blog, business
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

.hero {
    background: #000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.btn {
    background: red;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

.services {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.service-box {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background: #fff;
    padding: 20px;
    width: 30%;
}

.blog {
    padding: 0px!important;
}

.blog-posts {
    display: flex;
    gap: 20px;
}

.post {
    width: 30%;
}

.read-more {
    color: red;
    text-decoration: none;
}

/*header*/
.site-header {
    background: #000;
    color: #fff;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

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

.site-footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/*page*/

.page-content {
    padding: 60px 0;
}

.page-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.page-body {
    font-size: 16px;
    line-height: 1.6;
}