/*
Theme Name: Tuff Search
Theme URI: https://tuffsearch.com
Description: A minimal basic WordPress theme for Tuff Search website - designed for Elementor
Author: RB IT AGENCY
Author URI: https://rbitagency.com
Version: 1.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuff-search
*/

/* Reset and Basic Structure Only */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Minimal Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Basic Content Area */
.site-main {
    padding: 20px 0;
}

.content-area {
    margin-bottom: 20px;
}

/* Basic Typography */
.entry-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.entry-content {
    line-height: 1.6;
}

.entry-content p {
    margin-bottom: 10px;
}

/* Basic Links */
a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Basic Lists */
ul, ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Basic Images */
img {
    max-width: 100%;
    height: auto;
}

/* Basic Buttons */
.btn {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.btn:hover {
    background: #005a87;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
