/*
Theme Name: PéChe Glass
Theme URI: https://pecheglass.com
Author: Skypeaklimits
Author URI: https://skypeaklimits.com
Description: Tema profesional para PéChe Glass - Fabricación e Instalación de Cristalería Comercial y Residencial en Puerto Rico. Desarrollado por Skypeaklimits.
Version: 1.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: #
Text Domain: peche-glass
Tags: business, portfolio, custom-colors, custom-logo, full-site-editing
*/

/* Importar Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* Variables CSS */
:root {
    --color-orange:     #f58120;
    --color-orange-dark:#d96f10;
    --color-dark:       #53585a;
    --color-gray:       #97999b;
    --color-white:      #ffffff;
    --color-light:      #F8F9FA;
    --color-black:      #1a1a1a;
    --font-heading:     'Poppins', sans-serif;
    --font-body:        'Inter', sans-serif;
    --border-radius:    8px;
    --shadow:           0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:        0 8px 40px rgba(0,0,0,0.16);
    --transition:       0.3s ease;
    --max-width:        1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
