/*
Theme Name: PostQuee Theme
Theme URI: https://postquee.com
Author: Antigravity
Author URI: https://google.com
Description: Custom theme for PostQuee with Orange/Dark Blue design, supports WooCommerce.
Version: 1.0.0
Text Domain: postquee
*/

:root {
    --primary-orange: #FF8C00;
    --secondary-blue: #1A2B3C;
    --text-light: #F0F4F8;
    --neutral-grey: #E2E8F0;
    --dark-card: #2D3E50;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--secondary-blue);
    color: var(--text-light);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-top: 0;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 6px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
}

/* Header */
.site-header {
    background-color: rgba(26, 43, 60, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

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

.site-logo a {
    font-size: 24px;
    font-weight: 800;
    color: #FFF;
}

.site-logo span {
    color: var(--primary-orange);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Footer */
.site-footer {
    background-color: #0d161f;
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: #888;
}

/* WooCommerce Overrides (Basic) */
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    background-color: var(--dark-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: var(--primary-orange);
}

.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background-color: var(--primary-orange);
    color: white;
}
