/*
Theme Name: GS-Lite
Theme URI: https://example.com/
Author: Shahin R
Author URI: https://example.com/
Description: Ultra-lightweight, Google Sites-inspired WordPress theme, fast and SEO-friendly.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gs-lite
Tags: blog, lightweight, minimal, seo, responsive, fast
*/

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #202124;
    line-height: 1.6;
}

a { color: #1a73e8; text-decoration: none; }
a:hover { text-decoration: underline; }

header, footer { padding: 20px; text-align: center; background: #f1f3f4; }
.container { width: 95%; max-width: 900px; margin: 0 auto; }

article { margin-bottom: 40px; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; }
.post-meta { font-size: 0.9em; color: #5f6368; margin-bottom: 10px; }

.related-posts ul { list-style: none; padding: 0; }
.related-posts li { margin-bottom: 5px; }
.author-box { display: flex; align-items: center; margin-top: 20px; padding: 10px; border-top: 1px solid #ddd; }
.author-info { margin-left: 10px; }
.breadcrumbs { font-size: 0.85em; margin-bottom: 20px; color: #5f6368; }

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    border-radius: 5px; /* optional rounded corners */
}
/* Modern header styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'Roboto', Arial, sans-serif;
    padding: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
}
.site-branding h1 {
    font-size: 2rem;
    margin: 0;
    color: #333;
    font-weight: 700;
}
.site-description {
    font-size: 1rem;
    color: #666;
    margin: 0;
}
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #0073e6;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    margin-left: 20px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        display: none;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 15px;
        border-radius: 8px;
    }
    .main-nav.active ul {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
/* Web3 Look Styles */
body {
    background: linear-gradient(135deg, #0f2027, #2c5364 80%);
    font-family: 'Roboto', Arial, sans-serif;
    color: #e0e0e0;
}

.site-header {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    margin: 30px auto 20px auto;
    max-width: 1200px;
    padding: 24px 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding h1 {
    font-size: 2.5rem;
    font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
    color: #00ffe7;
    text-shadow: 0 0 8px #00ffe7, 0 0 24px #0f2027;
    margin: 0;
}

.site-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    background: linear-gradient(90deg, #00ffe7 0%, #0073e6 100%);
    box-shadow: 0 2px 8px rgba(0,255,231,0.15);
    transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
    background: linear-gradient(90deg, #0073e6 0%, #00ffe7 100%);
    color: #222;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #00ffe7;
    margin-left: 20px;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(31,38,135,0.17);
}

footer {
    text-align: center;
    padding: 24px 0;
    background: rgba(255,255,255,0.08);
    color: #00ffe7;
    font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
    border-radius: 18px;
    margin: 40px auto 0 auto;
    max-width: 1200px;
    box-shadow: 0 4px 24px rgba(31,38,135,0.17);
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        display: none;
        background: rgba(255,255,255,0.12);
        position: absolute;
        top: 60px;
        right: 15px;
        box-shadow: 0 2px 8px rgba(0,255,231,0.15);
        padding: 15px;
        border-radius: 12px;
    }
    .main-nav.active ul {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}





