
:root{
    --secondary-color: #a99201;
}
body{
    padding : 0;
    margin : 0;
}
#parralax_background{
    position : fixed;
    top : 0;
    left : 0;
    z-index : -1;
    width : 100%;
    height :  100%;
}             
 #parralax-header{
    display : block;
    background : url(../images/solar-panels-943999_1920.jpg);
    width: 100vw;
    height: 100vh;
}
#parralax_coil{
    width : 100%;
    height : 100%;
    position : fixed;
    top : 0;
    left : 0;
    background : #333333cf;
}
#main{
    display : flex;
    flex-direction: column;
}

#header{
    display: grid;
    width: 90vw;
    min-height : 75vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 10px;
    margin : 2em;
    margin-left: 5vw;

}
#header-title{
    font-size : 3em;
    color : #333;
    font-family : 'Phudu';
}
#header-description{
    /* border-left: 5px solid var(--secondary-color); */
    padding: 1em;
    font-size: 1.5em;
    text-shadow: 1px 1px #333;
    color : white;
    /* color : #333333; */
}
#header-description .button{
    background: #ffeb12;
    text-shadow: none;
    color: #3f3f3f;
    padding: 13px;
    border-radius: 3px;
    font-weight: bold;
    box-shadow: 1px 1px 1px 1px black;
    font-family: 'Roboto Slab';
}
#header-left{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: fit-content;
    height: fit-content;
    /* background: #ffffff7d; */
    padding: 3em;
    align-self: center;
    border-radius: 5px;
}
#header-right{
    grid-column: 2 / 3; /* Colonne 2, première ligne. */
    grid-row: 1 / 2; /* Ligne 1. */
    padding: 2em;
    display: flex;
    flex-direction: column;
    align-self: center;
}
#header-image{
    background : red;
    width: 60vh;
    background-size: cover;
    height: 45vh;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0px;
    border-radius: 5px;
    border: 1px solid #6e6e6e;

}
@font-face {
    font-family: 'BlackOpsOne'; /* Le nom de la police que vous souhaitez utiliser */
    src: url('../lib/fonts/BlackOpsOne-Regular.ttf') format('truetype');
    /* Vous pouvez ajouter d'autres formats de police ici */
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family : 'Phudu';
    src : url('../lib/fonts/Phudu-VariableFont_wght.ttf') format('truetype');
}
@font-face {
    font-family : 'Roboto Slab';
    src : url('../lib/fonts/RobotoSlab-VariableFont_wght.ttf') format('truetype');
}
  
#short-commercials-panel{
    display : flex;
    flex-direction : column;
    width : 90vw;
    margin-left : 5vw;
    background : white;
    border-radius : 10px;   
}
.short-commercial{
    display : flex;
}
.short-commercial-text{
    display : flex;
    flex-direction : column;
    font-size : 1em;
    padding : 1em;
    width : 50%;
}
.description{
    border-left : 3px solid var(--secondary-color);
    padding : 1em;
    font-size : 1.2em;
}
.title{
    font-size : 1.6em;
    color : var(--secondary-color);
    margin : 1em;
}
.short-commercial-icon{
    display: flex;
    font-size: 6em;
    width: 50%;
    align-items: center;
    justify-content: center;
    color: #345faf;
}