/*
Theme Name: Ferragens do Cávado
Theme URI: https://ferragensdocavado.pt/
Author: Antigravity
Description: Tema institucional para Ferragens do Cávado, focado em catálogo de produtos e categorias de ferragens.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ferragens-cavado
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #191c1e;
    background-color: #f7f9fb;
}

/* Custom Variables based on the design */
:root {
    --primary: #000000;
    --primary-container: #131b2e;
    --on-primary: #ffffff;
    --secondary: #515f74;
    --background: #f7f9fb;
    --surface: #f7f9fb;
    --outline: #76777d;
    --sky-600: #0284c7;
    --sky-500: #0ea5e9;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-100: #f1f5f9;
}

/* Typography Utility */
.font-headline-xl {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.02em;
}

.font-headline-lg {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.01em;
}

.font-headline-md {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.font-body-lg {
    font-size: 18px;
    line-height: 28px;
}

.font-body-md {
    font-size: 16px;
    line-height: 24px;
}

.font-label-sm {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.01em;
}

.font-label-xs {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* Theme Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}