/*
Theme Name: asticotheme
Theme URI: None
Author: asticoweb.com
Author URI: https://asticoweb.com
Description: Simple wordpress theme made with ❤️ by asticoweb.com | All rights reserved ©
Tags: theme, madewithlove, asticonet, asticoweb, asticoweb.com, asticotheme, coding, spreadthelove, personal, personaluseonly
Version: 3.8
License: License asticoweb.com
License URI: https://asticoweb.com
Text Domain: asticotheme
*/

::selection {
    background: var(--ciel);
    color: white;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--ciel);
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: var(--ciel);
    color: white;
    text-shadow: none;
}

*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    outline: none !important;
    text-decoration: none;

}

section,
div,
header,
nav,
article,
section,
aside,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
figure,
figcaption,
class,
img {

    margin: 0;
    padding: 0;
}


html,
body {

    width: 100vw;
    padding: 0;
    margin: 0;
    font-family: arboria, sans-serif;
    position: relative;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {

    overflow-x: hidden;
    overflow-y: overlay;
}

.no-scroll {

    overflow: hidden !important;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-left: solid 1px var(--blanc90);
}

::-webkit-scrollbar-thumb {
    background: var(--ciel);
}

::-webkit-scrollbar-button {
    display: none;
}

.page main>section>h1,
br.clear,
a.post-edit-link {

    display: none;
}

input::placeholder,
textarea::placeholder {

    opacity: 1 !important;
}

input {

    accent-color: var(--ciel);
}

:root {
    --ciel: #6ED0EB;
    --bleu2: #3B779F;
    --bleu: #071E52;
    --blanc95: #E4EDEF;
    --blanc90: #D7E0E2;
    --gris75: #AAB8BC;
    --gris50: #737D7F;
    --gris25: #393E3F;
}

/*------------------------------------*\
    DARK MODE
\*------------------------------------*/

input[type="search"] {

    background: white;
}

/*------------------------------------*\
   UNDERLINE
\*------------------------------------*/

#nav a {

    position: relative;
}

#nav a:after {
    content: '';
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--ciel);
    top: 100%;
    left: 0;
    pointer-events: none;
}

#nav a:hover::after {

    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

/*------------------------------------*\
    OVERLAY
\*------------------------------------*/

.overlay::after,
.overlay::before {

    content: '' !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--bleu);
    pointer-events: none;
    transition: all .3s;
}

.overlay::after {

    mix-blend-mode: color;
    z-index: 3;
}

.overlay::before {

    z-index: 2;
    opacity: .75 !important;
}

.overlay.safari:after {

    display: none;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/

#header {

    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    padding: 50px;
    transition: all .3s;
}

.active-header {
    padding: 25px 50px !important;
    background: white !important;
    border-bottom: solid 1px var(--blanc90) !important;
}

#header a#logo {

    display: flex;
    align-items: center;
    transition: all .3s;
}

.active-logo {

    margin-bottom: -50px !important;
}

#header a#logo img {

    height: 100px;
    width: auto;
    transition: all .3s;
}

.active-logo-img {

    height: 125px !important;
}

#nav {

    position: absolute;
    left: 50%;
    translate: -50%;
}

#nav ul {

    display: flex;
}

#nav li {

    list-style: none;
}

#nav a {

    transition: all .3s;
    color: white;
}

.active-nav {

    color: var(--bleu2) !important;
}


#nav ul li:not(:last-child):after {

    content: '';
    height: .75em;
    aspect-ratio: 3/4;
    mask: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 141.34"><path d="M50,141.34c27.61,0,50-22.37,50-49.96,0-37.51-50-91.38-50-91.38C50,0,0,53.88,0,91.38c0,27.59,22.39,49.96,50,49.96Z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 141.34"><path d="M50,141.34c27.61,0,50-22.37,50-49.96,0-37.51-50-91.38-50-91.38C50,0,0,53.88,0,91.38c0,27.59,22.39,49.96,50,49.96Z"/></svg>') no-repeat center;
    background: var(--ciel);
    display: inline-block;
    margin: 0 25px;
}

#header .tel {

    display: flex;
    align-items: center;
    gap: 12.5px;
}

#header .tel p {

    color: white;
    text-align: right;
    line-height: 1;
    font-family: 'Gochi Hand';
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: all .3s;
}

.active-text {

    color: var(--gris50) !important;
}

#header .tel a#tel {

    color: white;
    background: var(--bleu2);
    padding: 15px 25px;
    border-radius: .5em;
    display: inline-block;
    transition: all .3s;
}

#header .tel a#tel:hover {

    background: var(--bleu);
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

#footer {

    padding: 100px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: solid 1px var(--blanc90);
}

#footer li {

    list-style: none;
}

#footer li,
#footer a {

    font-weight: normal;
    color: var(--bleu2);
    transition: all .3s;
}

#footer a:hover {

    color: var(--bleu);
}

#footer ul:last-of-type a {

    color: var(--gris75);
}

#footer img {

    height: 125px;
    width: auto;
}

/*------------------------------------------------------------------------*\
    RESPONSIVE
\*------------------------------------------------------------------------*/

@media only screen and (max-width:950px) {

    /*------------------------------------*\
    HEADER
\*------------------------------------*/

    #nav {

        position: fixed;
        left: 0;
        bottom: 0;
        translate: none;
        background: var(--blanc95);
        border-top: solid 1px var(--blanc90);
        padding: 25px 50px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    #nav a,
    .active-nav {

        color: var(--bleu2) !important;
    }

    /*------------------------------------*\
    FOOTER
\*------------------------------------*/

    #footer {

        padding: 100px 50px 185px 50px;
        flex-wrap: wrap;
    }

    #footer .logo {

        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    #footer ul {

        width: 50%;
        text-align: center;
    }

}

@media only screen and (max-width:650px) {

    /*------------------------------------*\
    HEADER
\*------------------------------------*/

#header,
.active-header {
    padding: 25px !important;
}

#nav {

    padding: 25px;
}


    /*------------------------------------*\
    FOOTER
\*------------------------------------*/

    #footer {

        padding: 50px 25px 135px 50px;
        flex-direction: column;
        gap: 25px;
    }

    #footer .logo {

        margin-bottom: 0;
    }

    #footer ul {

        width: 100%;
    }
}