/*   
Theme Name: Style Me
Theme URI: sailstudio.com
Description: Minimal WP Theme for Developers
Author: sailstudio.com
Author URI: sailstudio.com
Version: 1.1
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #00a0d2;
}

/* Layout */
wr {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header,
footer {
    width: 100%;
    background-color: #f8f9fa;
}

header {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

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

.header h4 {
    margin: 0;
}

footer {
    border-top: 1px solid #eee;
    padding: 40px 0;
    margin-top: 40px;
}



.main-menu-top ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Content */
.content {
    padding: 40px 0;
}

.content-page {
    /* Ready for your styles */
}

/* Blog List Grid */
.blog-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    display: flex;
    flex-direction: column;
}

.blog-list a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.blog-list .ptitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.blog-list .mini-description {
    font-size: 0.9rem;
    color: #666;
}

/* Helpers */
.fleft {
    float: left;
}

.fright {
    float: right;
}

/* Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.widget-title {
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {

    .topmenu ul,
    .main-menu-top ul {
        flex-direction: column;
        gap: 10px;
    }

    h1 {
        font-size: 2rem;
    }
}