
/*================= VARIABLES CSS =================*/
:root {
    --header-height: 8.1rem;

    /*================= Colors =================*/
    /* Color mode HSL(hue, saturation, lightness) */
    --black-color: hsl(269, 100%, 8%);

    --dark-purple-color: hsl(270, 100%, 20%);
    --medium-purple-color: hsl(269, 100%, 67%);
    --purple-color: hsl(269, 100%, 79%);
    --light-purple-color: hsl(269, 100%, 86%);
    --lighter-purple-color: hsl(269, 100%, 95%);

    --yellow-color: hsl(51, 91%, 70%);
    --light-yellow-color: #fcf3c0;

    --white-color: hsl(0, 0%, 100%);
    --hint-color: hsl(0, 0%, 80%);



    --title-color: var(--dark-purple-color);
    --text-color: var(--black-color);
    --body-color: var(--white-color);
    
    /*================= Fonts =================*/
    /* .5rem = 8px | 1rem = 16px ... */
    --body-font: "Montserrat", sans-serif;
    --text-font: "Montserrat", sans-serif;
    --title-font: "Random Grotesque Standard Bold", sans-serif;

    --biggest-font-size: 4.25rem;
    --big-font-size: 3rem;

    --h1-font-size: 3rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;

    --normal-font-size: 1rem;
    --small-font-size: .8rem;

    /*================= Font Weight =================*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    
    /*================= Box-Shadow =================*/
    --normal-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    /*================= z index =================*/
    --z-back: 0;
    --z-middle: 1;
    --z-front: 2;
    --z-tooltip: 10;
    --z-fixed: 1001;
    

}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);

    /* Makes footer appear at the bottom */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* overflow-x: hidden; */
}

/* main {
    min-height: 100vh ;
} */

footer {
    /* Makes footer appear at the bottom */
    margin-top: auto;
}

ul {
    list-style: none;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

input {
    font-family: var(--text-font);
    font-size: var(--normal-font-size);
    color: var(--black-color);
}

button {
    border: none;
    cursor: pointer;
}

input:focus,
button:focus {
    outline: none;
}

/*================= REUSABLE CSS CLASSES =================*/
.container {
    max-width: 1240px;
    /* padding-inline: 1.5rem; */
    margin-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 1.25rem;
}

.section {
    padding-block: 5rem;
}

.dnone {
    display: none;
}






/*================= BREAKPOINTS =================*/
/* For small devices */
@media screen and (max-width: 500px) {
    .container {
        margin-inline: initial;
        /* padding-inline: .5rem; */
    }
}
/* For large devices */
@media screen and (min-width: 1300px) {
    .container {
        margin-inline: auto;
    }
}



