/*!
Theme Name: FluentConnect API
Theme URI: https://fluentcart.com
Author: FluentCart
Author URI: https://fluentcart.com
Description: Nothing to see here
Version: 100.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: connect
Requires at least: 6.3
Tested up to: 6.8.2
Tags: connect, api
Requires PHP: 7.4
*/

/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Main Content Styles */
main {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

article {
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

article:hover {
    transform: translateY(-5px);
}

article h2 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
}

article h2 a:hover {
    color: #3498db;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.entry-content {
    font-size: 1rem;
    color: #444;
}

.entry-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Posts Navigation */
.nav-links {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    font-size: 1rem;
}

.nav-links a {
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #3498db;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-links a:hover {
    background: #3498db;
    color: white;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

footer p {
    font-size: 0.9rem;
}

footer nav ul {
    margin-top: 1rem;
}

footer nav ul li a {
    font-size: 0.9rem;
}

footer nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 a {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    article {
        padding: 1rem;
    }

    article h2 a {
        font-size: 1.5rem;
    }
}
