/*
 Theme Name:   Caro Theme
 Theme URI:    https://carolina-limachi.com/
 Description:  Child theme for Carolina Limachi website, based on Hello Elementor
 Author:       Revi Development
 Author URI:   https://revi.dev/
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  caro-theme
*/

@import url("../hello-elementor/style.css");

/* ==========================================================================
   Recursos Gratis - Styling
   ========================================================================== */

:root {
    --caro-primary: #8e44ad;
    --caro-accent: #3498db;
    --caro-text: #2c3e50;
    --caro-bg-soft: #f8f9fa;
    --caro-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --caro-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Resource Card (to be used in Elementor Loop Builder) */
.caro-resource-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--caro-shadow);
    transition: var(--caro-transition);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.caro-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--caro-primary);
}

.caro-resource-icon {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--caro-primary);
    margin-bottom: 15px;
    display: block;
}

/* Resource Button */
.caro-button.resource-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--caro-primary) 0%, var(--caro-accent) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--caro-transition);
    gap: 8px;
    margin-top: auto;
}

.caro-button.resource-button:hover {
    filter: brightness(1.1);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
    transform: scale(1.02);
}

.caro-button.resource-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Taxonomy Badges */
.resource-type-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--caro-primary);
    background: rgba(142, 68, 173, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}