/*
Theme Name: Joe Black Marketing
Theme URI: https://dairewdesign.com/joe-black
Author: Dairew Design
Author URI: https://dairewdesign.com
Description: Modern marketing agency theme with multilingual support, video integration, and testimonials. One-page design with smooth scrolling.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: joe-black
Tags: one-column, custom-menu, featured-images, translation-ready, marketing, agency

Joe Black Marketing Theme, Copyright 2026 Dairew Design
Joe Black is distributed under the terms of the GNU GPL
*/

/* ============================================
   RESET Y BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales */
    --primary-blue: #4A9FD8;
    --dark-bg: #1a1d2e;
    --white: #ffffff;
    --black: #1a1a1a;
    --text-gray: #666666;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --footer-gradient-start: #4A9FD8;
    --footer-gradient-end: #1a2847;
    
    /* Tipografía */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Roboto", sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   UTILIDADES
   ============================================ */

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
