/*
Theme Name: AHRA Theme
Theme URI: https://ahra.local
Description: Tema hijo de GeneratePress para AHRA Digital Horizon
Author: AHRA Development Team
Author URI: https://ahra.local
Template: generatepress
Version: 1.0.0
Text Domain: ahra
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, block-styles, style-variations, customizable-highlighted-content, translation-ready, accessibility-ready, hover-effects, post-formats
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================
   AHRA Custom Styles
   ============================================ */

:root {
    --ahra-primary-color: #2563eb;
    --ahra-secondary-color: #1e40af;
    --ahra-accent-color: #f59e0b;
    --ahra-text-color: #1f2937;
    --ahra-light-bg: #f9fafb;
    --ahra-dark-bg: #111827;
}

body {
    color: var(--ahra-text-color);
}

a {
    color: var(--ahra-primary-color);
}

a:hover {
    color: var(--ahra-secondary-color);
}

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--ahra-primary-color), var(--ahra-secondary-color));
    color: white;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.ahra-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--ahra-accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.ahra-btn:hover {
    background-color: #d97706;
    color: white;
}

/* Cards */
.ahra-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ahra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
    background-color: var(--ahra-dark-bg);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* ============================================
   CONTENEDOR GLOBAL — Ancho consistente
   ============================================ */
.ahra-container {
    max-width: 80rem; /* = max-w-7xl = 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;  /* = px-6 */
    padding-right: 1.5rem;
}

.site-footer a {
    color: var(--ahra-accent-color);
}