/*!
Theme Name: fonderiesdumidi_2024
Theme URI: http://loic-hermer.fr/
Author: loic-hermer.fr
Author URI: http://loic-hermer.fr/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fonderiesdumidi_2024
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

fonderiesdumidi_2024 is based on Underscores https://loic-hermer.fr/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

body{
    --primary : var(--wp--preset--color--primary);
    --primary-mask : var(--wp--preset--color--primary-mask);
    --primary-light : var(--wp--preset--color--primary-light);
	--secondary : var(--wp--preset--color--secondary);
    --black : var(--wp--preset--color--black);
    --black-light : var(--wp--preset--color--black-light);
    --black-mask : var(--wp--preset--color--black-mask);
	--grey : var(--wp--preset--color--grey);
	--white : var(--wp--preset--color--white);
	--white-body : var(--wp--preset--color--white-body);
	--blue-light : var(--wp--preset--color--blue-light);
    --blue-border : var(--wp--preset--color--blue-border);
    --blue-bkg : var(--wp--preset--color--blue-bkg);
    /* Gradients */
    --primary-gradient: var(--wp--preset--gradient--primary-to-secondary);
    --container-space : calc((100vw - var(--wp--style--global--content-size)) / 2);
    --gap : var(--wp--custom--gap);
    --radius : var(--wp--custom--radius);
    --card-radius : calc(var(--radius) * 1);
    --sidebar-width : 0px;
    --breadcrump-height : 40px;
    --sup-header-height : 0px;
    --header-height : 120px;
    --header-height-fixed : 120px;
    --header-height-sticky : 55px;
    --content-header-spacer : calc(var(--breadcrump-height) + var(--header-height-fixed));
    --small-content-width : 80%;
    --posts-number : 3;
    --nav-column-number : 2;
    /* SHADOW */
    --shadow-button : 0px 0px 0px 0px rgba(0, 0, 0, 0);
    --shadow-button-hover : 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
}
body.sticky{
    --header-height : var(--header-height-sticky);
}
body.menu-mobile-active{
    overflow: hidden;
}
.dark{
    --white : var(--wp--preset--color--black);
    --black : var(--wp--preset--color--white);
}


@media (max-width: 1440px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
    :root, body{
        --header-height : 100px;
        --header-height-sticky : 55px;
        --header-height-fixed : 100px;
        --card-radius : calc(var(--radius) * 1.5);
    }
    
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/


/* Normalize
--------------------------------------------- */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* Document
	 ========================================================================== */


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 100%; /* 14px/16px = 0.875 */

}

/* Sections
========================================================================== */


/**
 * Remove the margin in all browsers.
 * SET FONT FOR MULTIDEVICES
 */

 body {
    margin: 0;
    background: var(--white-body);
    min-height: 100vh;
    font-size: 1rem;
    line-height: normal;
    font-family: var(--font), sans-serif;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    color: var(--black);
}
/**
 * Render the `main` element consistently in IE.
 */
main {
    display: flex;
    flex-direction: column;
}




.material-icon {
    align-items: center;
    border-radius: var(--card-radius);
    display: inline-flex;
    justify-content: center;
    position: relative;
}
.material-icon svg,
.material-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icon-42{
    width: 42px;
    height: 42px;
}
.icon-38{
    width: 38px;
    height: 38px;
}
.icon-32{
    width: 32px;
    height: 32px;
}
.icon-24{
    width: 24px;
    height: 24px;
}
.icon-20{
    width: 20px;
    height: 20px;
}
.icon-white svg *{
    fill: var(--white);
}
.icon-blue svg *{
    fill: var(--primary);
}
.icon-black svg *{
    fill: var(--black);
}
.icon-bkg-dark{
    background: rgba(0, 0, 0, 0.40);
}
.icon-bkg-light{
    background: rgba(255, 255, 255, 0.40);
}