/*
Theme Name: Yanis Singer Thème
Theme URI: https://yanis-singer.com
Author: Yanis SINGER
Author URI: https://yanis-singer.com
Description: Un thème WordPress simple créé par Yanis SINGER.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yanis-singer.com
*/

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

html,
body {
    background-color: black;
    padding: 10px;
    width: 100%;
    height: 100%;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: white;
    position: relative;
}

#barba {
    height: 100%;
    width: 100%;
}

main {
    background-image: var(--bg-image, url('https://yanis-singer.com/wp-content/uploads/2025/09/vagues_fond_violet.jpeg')) !important;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    padding: 100px 15px 50px 15px;

}

p {
    color: white;
    line-height: 1.3;
}

p strong {
    font-weight: 700;
}

h1 {
    font-family: aw-conqueror-inline, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    text-shadow: black 5px 5px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
}


h2 {
    color: #6b48be;
    font-weight: 500;
    font-size: 30px;
    text-shadow: 5px 5px 8px black;

}

h3 {
    font-weight: 400;
    font-size: 20px;
}

a {
    text-decoration: none;
    font-weight: 500;
}

.bouton-lien {
    font-size: 16px;
    font-weight: 700;
    color: #291C59;
    background-color: white;
    border: 2px solid white;
    padding: 10px 30px;
    width: auto;
    height: auto;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
    transition: .5s;
    cursor: pointer;
}

.bouton-lien:hover {
    background: none;
    color: white;
    transition: .5s;
}

p a,
.lien-texte {
    text-decoration: underline;
    color: #E0752D;
    transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);
}

p a:hover,
.lien-texte:hover {
    color: white;
    transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);

}

.case {
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.185), rgba(0, 0, 0, 0.334));
    padding: 20px;
    display: block;
    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.363),
        inset -2px -2px 3px rgba(90, 90, 90, 0.205),
        0 0 15px rgba(0, 0, 0, 0.769);

}

@media (max-width:850px) {

    html,
    body {
        padding: 5px;
        font-size: 14px;
        height: auto;
    }

    main {
        background-image: var(--bg-image, url('https://yanis-singer.com/wp-content/uploads/2025/09/vagues_fond_violet.jpeg')) !important;
        border-radius: 20px;
        padding: 80px 5px 105px 5px;

    }

    h2 {
        font-size: 20px !important;
    }

    h3 {
        font-size: 15px;
    }

    p {
        font-size: 14px !important;
    }


}