/*
Theme Name: ASK Services INTL
Theme URI: https://askservicesintl.com
Author: ASK Services
Description: Custom WordPress theme for A.S.K. Services INTL
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ask-services
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --font-main: 'Jost', sans-serif;

    --nav-height: 70px;
    --container-max: 1200px;
    --section-padding: 4rem 0;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-grey-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.bold {
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}


.wpcf7-form-control:not(.wpcf7-submit){
	display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #d0d0d0;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.wpcf7-submit{
	background-color: var(--primary-color);
    padding: 10px 20px !important;
    border-radius: 4px;
    color: var(--color-white);
    transition: 0.3s;
    border: 1px solid var(--primary-color);
	cursor: pointer;
	width: 100%;
}
.wpcf7-submit:hover{
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	background-color: transparent;
}
.wpcf7-form label{
	width: 100%;
}