/*
Theme Name: Twenty Twenty-Five Child - Patxera
Theme URI: https://patxera.com
Description: Child theme for Patxera pattern identity system
Author: Patxera
Template: twentytwentyfive
Version: 1.0.0
*/

/* Pattern cluster styles */
.cluster-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cluster-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.cluster-count {
    color: #666;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.person-card-mini {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.person-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.person-card-mini h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.person-card-mini .pattern {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

/* Single person page styles */
.person-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pattern-display {
    margin: 20px 0;
}

.pattern-code {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}

.calculator-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #333;
}

/* Home page cluster previews */
.home-clusters {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.home-clusters h1 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 10px;
}

.home-clusters .tagline {
    text-align: center;
    color: #666;
    font-size: 20px;
    margin-bottom: 60px;
}

.cluster-preview {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.cluster-preview h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cluster-names {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cluster-names a {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    transition: background 0.2s;
}

.cluster-names a:hover {
    background: #e0e0e0;
}
