/*
Theme Name: hatch co.
Theme URI: https://hatch.mx
Author: hatch co. 
Author URI: https://hatch.mx
Description: hatch co. theme 
Version: 1.0
*/

/* Declaración de las fuentes */
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400; /* Regular */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500; /* Medium */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
}


/* Aplicar la fuente globalmente */
body {
  font-family: "Montserrat", sans-serif;
  color: #333; /* Color general del texto */
  background-color: #fff; /* Fondo general */
  margin: 0;
  padding: 0;
}

/* Estilo para el header */
header {
  margin: 0;
  padding: 0;
  width: 100%; /* Asegura que ocupe todo el ancho */
  box-sizing: border-box; /* Incluye padding y bordes en el ancho total */
}

/* Encabezados */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/* Enlaces */
a {
  color: #ff5100;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: underline;
}

/* Párrafos */
p {
  line-height: 1.6;
  margin-bottom: 1rem;
}


/* Estilos generales para los inputs */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%; /* Ocupa todo el ancho del contenedor */
    padding: 10px 15px; /* Espaciado interno */
    margin-bottom: 15px; /* Separación entre inputs */
    font-size: 15px; /* Tamaño de la fuente */
    color: #333; /* Color del texto */
    background-color: #fff; /* Fondo blanco */
    border: none; /* Sin borde */
    border-radius: 3px; /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
    outline: none; /* Elimina el borde azul al hacer clic */
    box-sizing: border-box; /* Asegura que el padding no exceda el ancho */
}

/* Placeholder (texto dentro del input) */
input::placeholder,
textarea::placeholder {
    color: #aaa; /* Color del placeholder */
    font-style: italic; /* Estilo cursivo */
}

/* Efecto al enfocar el input */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    background-color: #f9f9f9; /* Cambia ligeramente el fondo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Aumenta la sombra */
    outline: none; /* Sin borde adicional */
}

/* Para textareas, si aplicas alguno */
textarea {
    resize: none; /* Evita que se redimensione */
    height: 100px; /* Altura fija */
}
