/*
 Theme Name:   GeneratePress Child Nodepo
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme optimized for Nodepo Affiliate Directory.
 Author:       Nodepo
 Template:     generatepress
 Version:      1.0
*/

/* Reset & Basics */
body {
    background-color: var(--nodepo-bg, #f5f5f5);
    color: #333;
    overflow-x: hidden; /* Fixes horizontal scroll from 100vw elements */
}

a {
    color: var(--nodepo-primary, #0071c2);
    text-decoration: none;
}

a:hover {
    color: var(--nodepo-primary, #005999); /* Fallback dark */
    text-decoration: underline;
}

/* Button Overrides */
button, 
html input[type="button"], 
input[type="reset"], 
input[type="submit"], 
.button, 
.button-primary {
    background-color: var(--nodepo-primary, #0071c2) !important;
    color: #fff !important;
}

/* Header Tweaks */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

/* Modern Footer Base */
.site-footer {
    background-color: var(--nodepo-primary, #003580);
    border-top: none;
    padding: 60px 0 40px;
    margin-top: 80px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 40px 0;
}

/* GLOBAL GRID SYSTEM */
.nodepo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nodepo-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.nodepo-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nodepo-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* PAGE TEMPLATE STYLES */
.nodepo-page-wrapper { padding-top: 40px; padding-bottom: 60px; }
.nodepo-page-title { margin-bottom: 20px; }
.nodepo-content-box { background: #fff; padding: 30px; border: 1px solid #e7e7e7; border-radius: 4px; }

/* Footer States Grid */
.footer-states-wrapper {
    margin-top: 20px;
}

.footer-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.footer-state-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-state-link:hover {
    color: #fff !important;
    text-decoration: underline;
}