/* Paladin ID Shared Styles */
/* Reusable across all Paladin ID prototypes */
/* Real brand colors and fonts from paladinid.com */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Raleway:wght@400;500;600;700&display=swap');

:root {
    /* Real Paladin ID Brand Colors */
    --paladin-primary: #1a558d;        /* Dark Navy Blue (headings) */
    --paladin-secondary: #eb7c44;      /* Primary Orange (CTAs) */
    --paladin-dark: #002a5c;           /* Dark Blue (menu hover) */
    --paladin-light: #f2f2f2;          /* Background gray */
    --paladin-accent: #3b7db6;         /* Secondary blue accent */
    --paladin-hover-orange: #d1553c;   /* Light hover orange */
    --paladin-gray: #666;
    --paladin-border: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--paladin-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 42px; margin-bottom: 20px; }
h2 { font-size: 36px; margin-bottom: 18px; }
h3 { font-size: 30px; margin-bottom: 16px; }
h4 { font-size: 22px; margin-bottom: 14px; }

/* Buttons */
.btn-primary {
    background: var(--paladin-secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--paladin-hover-orange);
}

.btn-secondary {
    background: white;
    color: var(--paladin-primary);
    border: 2px solid var(--paladin-primary);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--paladin-primary);
    color: white;
}

/* Sections */
.full-section {
    padding: 40px;
    margin: 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--paladin-primary);
    font-weight: 600;
}

/* Color variations for sections */
.about-section {
    background: white;
}

.recommendations-section {
    background: #fff8f0;
}

.history-section {
    background: #f9f9f9;
}

.blog-section {
    background: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: white;
    border: 1px solid var(--paladin-border);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card-image {
    width: 100%;
    height: 150px;
    background: #f9f9f9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 12px;
    border-radius: 4px;
}

.product-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    min-height: 40px;
}

.product-card .price {
    color: var(--paladin-secondary);
    font-weight: 700;
    font-size: 16px;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--paladin-border);
    margin-bottom: 25px;
    gap: 5px;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--paladin-gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab.active {
    border-bottom-color: var(--paladin-secondary);
    color: var(--paladin-secondary);
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.blog-card {
    background: white;
    border: 1px solid var(--paladin-border);
    border-radius: 8px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--paladin-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--paladin-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
