/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-Bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph: 1.6
Large: 1.8

- Letter spacing
0.5 px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints: #fdf2e9, #fae5d3
- Shades: #cf711f
- Accents:
- Greys
#6f6f6f (Lightest grey Allowed)
#767676
#555
#333

--- 05 SHADOWS

--- 06 BORDER-RADIUS
Default: 9px
medium: 11px
Default: 9px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

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

html {
    /*font-size: 10px;*/
    /*10px /16px = 0.625 = 62.5%*/
    /*Percentage of user's browser font-size setting*/
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Rubik", sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #555;
}

/*******************************/
/* GENERAL REUSABLE COMPONENTS */
/*******************************/


.container {
    max-width: 120rem; /*STANDARD OTHER EX: 1140px*/
    margin: 0 auto;
    padding: 0 3.2rem;
}

.grid-footer{
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.grid {
    display: grid;
    column-gap: 6.4rem;
    row-gap: 9.6rem;
}

.grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.grid-center-v {
    align-items: center;
}

.heading-primary, .heading-secondary {
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.heading-primary {
    font-size: 5.2rem;
    line-height: 1.05;
    margin-bottom: 3.2rem;
}

.heading-secondary {
    font-size: 4.4rem;
    line-height: 1.2;
    margin-bottom: 9.6rem;
}

.heading-tertiary {
    font-size: 3.0rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 3.2rem;
}

.subheading {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: #cf711f;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    letter-spacing: 0.75px;
    
}
.btn,
.btn:link,
.btn:visited {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    font-size: 2rem;
    /*Double the length on side as compared to up and down*/
    padding: 1.6rem 3.2rem;
    border-radius: 9px;
    transition: all 0.3s;
    
    /*For btn itself*/
    border: none;
    cursor: pointer;
}

.btn-full:link,
.btn-full:visited {
    color: #ffffff;
    background-color: #e67e22;
}

.btn-full:hover,
.btn-full:active {
    background-color: #cf711f;
}

.btn-outline:link,
.btn-outline:visited {
    background-color: #ffffff;
    color: #555555;
}

.btn-outline:hover,
.btn-outline:active {
    background-color: #fdf2e9;
    /*border: 3px solid #ffffff;*/
    /*    Trick to add border inside*/
    box-shadow: inset 0 0 0 3px; /**/
}

.btn-full-form{
    background-color: #45260a;
    color: #fdf2e9;
    align-self: end;
    padding: 1.2rem;
    transition: all 0.3s;
}

.btn-full-form:hover {
    background-color: #fff;
    color: #555;
}
*:focus{
    /*More like border but its above the box and not the part of the border box sizing*/
    /*Never set outline to none since its till doesn't let know the user where is the pointer*/
    outline: none;
    /*outline: 4px dotted #e67e22;*/
    /*outline-offset: ;*/
    box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.550);
}

.link:link,
.link:visited {
    display: inline-block;
    color: #e67e22;
    text-decoration: none;
    /*We don't use link udnerline as decoration, so hence we are using the border bottom and then "currentColor" will set the underline color as current applied color*/
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.link:active,
.link:hover {
    color: #cf711f;
    /*    By using bottom padding None, it will case the Uprising of text by some pixel
    fix: we simply put it as transparent*/
    border-bottom: 1px solid transparent;
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.list-item {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.list-icon {
    width: 3rem;
    height: 3rem;
    color: #e67e22;
}

/*HELPER CLASS || SETTING CLASS*/

.margine-right-sm {
    margin-right: 1.6rem;
!important;
    /*Using important we make it ensure that this right margine is applied */
}

/*To create a re-usable helper class,
* 1. it should have important if its something like margine
* 2. add it to the class, just line margine right
*/

.margine-bottom-md {
    margin-bottom: 4.8rem;
!important;
}

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

strong {
    font-weight: 500;
}


