/* 
Theme Name: Les cercistes
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

@font-face {
    font-family: "Caviar Dreams";
    src: url('fonts/CaviarDreams.ttf');
}

@font-face {
    font-family: "Shoal";
    src: url('fonts/Shoal.otf');
}

:root{
    --primary-color: #FCC195;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

h1{
    font-family: "Shoal" !important;
}

body{
    font-family: "Caviar Dreams" !important;
}

#comingsoon .nf-form-cont label{
    color: var(--primary-color);
}

#comingsoon span.ninja-forms-req-symbol{
    color: var(--primary-color);
}

#comingsoon .nf-form-fields-required{
    display: none;
}

#comingsoon input[type='submit']{
    color: #FFF;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    width: 160px;
}

#comingsoon input[type='submit']:hover,
#comingsoon input[type='submit']:focus,
#comingsoon input[type='submit']:active {
    background-color: var(--primary-color);
}

#comingsoon .nf-response-msg {
    color: #FFF;
}

#comingsoon nf-fields-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#comingsoon nf-fields-wrap nf-field:nth-child(3) {
  flex-basis: 100%; /* occupe toute la largeur → retour à la ligne */
  display: flex;           /* transforme le champ en flex pour centrer */
  justify-content: center; /* centre horizontalement */
}

.ninja-forms-req-symbol{
    display: none;
}

.nf-error-msg {
    background-color: rgba(255,255,255,0.7);
    text-align: center;
}