/*
Theme Name: Talleres Enrique Theme
Theme URI: https://github.com/luisenramos/luracan_ai_design_system
Description: A premium, high-performance custom WordPress theme for Talleres Enrique. Incorporates a hybrid style of corporate modern and high-contrast industrial design, tailored color palettes, geometric Montserrat headlines, and technical Manrope body copy.
Version: 1.0.0
Author: Antigravity
Author URI: https://deepmind.google/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: talleres-enrique-theme
*/

/* Reset & Brand Foundations */
body {
    background-color: #F8F7F4;
    color: #1F2328;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Custom Scrollbar in Brand Colors */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1F2328;
}
::-webkit-scrollbar-thumb {
    background: #F28C00;
    border-radius: 2px;
    border: 2px solid #1F2328;
}
::-webkit-scrollbar-thumb:hover {
    background: #FFB875;
}

/* Industrial Dot Matrix Grid Background */
.industrial-grid {
    background-image: radial-gradient(#1F2328 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.03;
}

/* Dark Section Grid */
.industrial-grid-dark {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.2;
}

/* Premium Hero Overlay Gradient */
.hero-gradient {
    background: linear-gradient(to right, rgba(31, 35, 40, 0.95) 0%, rgba(31, 35, 40, 0.75) 50%, rgba(31, 35, 40, 0.2) 100%);
}

/* Dynamic Bento Hover Effects */
.bento-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    border-color: #F28C00;
}

/* Technical inputs and focus transitions */
.form-input-focus:focus {
    outline: none !important;
    border-color: #F28C00 !important;
    box-shadow: 0 0 0 2px rgba(242, 140, 0, 0.2) !important;
}

/* Custom Navigation Menu styles mapping to responsive layout */
.wp-nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}
.wp-nav-menu li a {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6B7280;
    transition: color 0.2s ease;
    text-decoration: none;
}
.wp-nav-menu li a:hover,
.wp-nav-menu li.current-menu-item a {
    color: #F28C00;
}

/* Ensure images maintain clean technical border-radius */
.wp-post-image {
    border-radius: 0.25rem;
}
