/* cmsms stylesheet: 2-Ctaurel modified: samedi 18 avril 2026 10:38:57 */
@font-face {
    font-family: "opensans";
    src: url(https://ctaurel-informatique.fr/uploads/_interface/polices/OpenSans.woff2) format('woff2');
    font-display: swap;
}

html
{
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: "opensans", helvetica;
    color: #ffffff;
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/fond.jpg');
    background-attachment: fixed;
    background-size: cover;
}

@media screen and (max-width: 851px)
{
html
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/fond-768.jpg');
}
}

body
{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-image:
    /* diagonales */
    repeating-linear-gradient(78deg,  rgba(255,255,255,.07) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(-67deg, rgba(255,255,255,.07) 0 1px, transparent 1px 120px),
    /* lignes verticales/horizontales */
    repeating-linear-gradient(27deg, rgba(255,255,255,.07) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(-42deg,  rgba(255,255,255,.07) 0 1px, transparent 1px 140px);
}



h1
{
    color: #345B66;
    font-size: 1.6rem
}

h2
{
    color: #345B66;
    font-size: 1.8rem;
}

@media screen and (max-width: 851px)
{
h2
{
    font-size: 1.7rem;
}
}

h3
{
    color: #345B66;
    font-size: 1.3rem;
}

a
{
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    transition: 0.2s ease;
}

a:hover
{
    color: #345B66!important;
    transition: 0.2s ease;
}

a::after
{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #345B66;
    
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

a:hover::after
{
    transform: scaleX(1);
}

img
{
    max-width: 100%;
    max-height: 100%;
}

input[type="text"],input[type="email"],input[type="tel"]
{
    width: 100%;
    max-width: 500px;
    height: 60px;
    border: none;
    border-bottom: 1px solid rgba(52,91,102,0.8);
    background-color: transparent;
    font-size: 1.2rem;
}

textarea
{
    width: 100%;
    max-width: 500px;
    height: 185px;
    border: none;
    border-bottom: 1px solid rgba(52,91,102,0.8);
    background-color: transparent;
}

li::marker
{
    color: #345B66;
    padding: 0;
    margin: 0;
}

.bleu
{
    color: #345B66;
    font-weight: bold;
}

.opacite-blanc
{
    background: rgba(255,255,255,0.75);
    color: #333333;
}

.opacite-noir
{
    background: rgba(0,0,0,0.25);
    color: white;
}

.texte
{
    width: 65%;
    margin: auto;
    padding: 20px 20px 30px 40px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    clip-path: polygon(100% 0%, 100% 93%, 0% 100%, 0% 0%);
    border-top-left-radius: 8px;
}

@media screen and (max-width: 851px)
{
.texte
{
    width: 95%;
    clip-path: polygon(100% 0%, 100% 98%, 0% 100%, 0% 0%);
}
}

.bouton
{
    display: inline-block;
    margin: 30px;
    padding: 20px 20px;
    background-color: #345B66;
    border: 1px solid #345B66;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    transition: 400ms;
    text-align: center;
    border-radius: 8px;
}

.bouton:hover
{
    background-color: white;
    border: 1px solid #003b68;
    font-weight: bold;
    transition: 400ms;
    color: #003b68;
}

.bouton:hover::after
{
    transform: scaleX(0);
}

.contenu 
{
    width: 75%;
    margin: auto;
    min-height: 600px;
    padding: 2%;
    clip-path: polygon(100% 0%, 100% 98%, 0% 100%, 0% 0%);
    box-sizing: border-box;
}

.contenu h2 
{
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #345B66;
}

@media screen and (max-width: 851px)
{
.contenu 
{
    width: 95%;
    clip-path: polygon(100% 0%, 100% 99.5%, 0% 100%, 0% 0%);
}
}

.section
{
    position: relative;
    overflow: hidden;
    min-height: 800px;
    width: 100%;
    padding: 20px;
    display: flex;
    box-sizing: border-box;
}

.section:before
{
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.8) contrast(1.1) blur(3px);
    z-index: -1;
}

.mention-rgpd
{
    border: 2px solid #345B66;
    padding: 20px 20px 30px 40px;
    box-sizing: border-box;
    border-top-left-radius: 8px;
}

.mention-rgpd a
{
    color: #333333;
}


/* Animations */
.texte
{
    opacity: 0;
    transform: translateY(30px);
    transition: all 1600ms ease;
}

.texte.visible 
{
    opacity: 1;
    transform: translateY(0);
}

.block
{
    opacity: 0;
    transform: translateY(30px);
    transition: all 1600ms ease;
}

.block.visible
{
    opacity: 1;
    transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  .texte, .block, .section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* Animations */


/* Header */
#header
{
    display: flex;
    align-items: center;
    width: 90%;
    margin: auto;
}

#header h1
{
    font-style: italic;
    color: white;
    text-align: center;
    flex: 7;
}

@media screen and (max-width: 851px)
{
#header
{
    display: block;
    width: 95%;
    text-align: center;
}
}
/* Header */

/* Menu */
#menu-responsive-show, #menu-responsive-hide
{
    display: none;
}

#menu
{
    z-index: 15;
    position: sticky;
    top: 0;
    text-align: center;
    background-color: rgba(31,30,30,0.95);
    border-top: 1px solid rgba(255,255,255,0.80);
    border-bottom: 1px solid rgba(255,255,255,0.80);
}

#menu .liens
{
    width: 90%;
    margin: auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

#menu .liens a
{
    color: white;
    transition: 400ms;
    position: relative;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font: inherit;
    cursor: pointer;
    border-radius: 8px;
}

.menu-toggle img {
    width: 24px;
    height: 24px;
}

.menu-toggle:focus-visible,
#menu .liens a:focus-visible,
.bouton:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

@media screen and (max-width: 851px)
{
    .menu-toggle {
        display: inline-flex;
    }

    #menu {
        text-align: left;
        padding: 15px;
        box-sizing: border-box;
    }

    #menu .liens {
        display: none;
        width: 100%;
        margin-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #menu .liens.is-open {
        display: flex;
    }

    #menu .liens .lien {
        width: 100%;
    }

    #menu .liens .lien a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
}
/* Menu */

/* Présentation */
#presentation::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/passion-informatique.jpg');
}

@media screen and (max-width: 851px)
{
#presentation::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/768/passion-informatique.jpg');
}
}
/* Présentation */

/* Services */
#services
{
    width: 95%;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

#services .texte
{
    flex: 1;
}

#services .services
{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
}

#services .services .block
{
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
    box-sizing: border-box;
}

#services .services .block:hover
{
    transform: translateY(-5px);
}

#services .services .block img
{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

@media screen and (max-width: 851px)
{
#services
{
    display: block;
}

#services .services
{
    flex: 1;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

#services .services .block
{
    padding: 20px;
}
}
/* Services */

/* creation site */
#creation-site
{
    position: relative;
    overflow: hidden;
    min-height: 800px;
    width: 100%;
    padding: 20px;
    display: flex;
    box-sizing: border-box;
}

#creation-site::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/creation-site.jpg');
}
/* Page création site */
#csi-presentation::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/pourquoi-un-site.jpg');
}

@media screen and (max-width: 851px)
{
#creation-site::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/768/creation-site.jpg');
}

#csi-presentation::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/768/pourquoi-un-site.jpg');
}
}
/* Pourquoi du sur mesure */
#csi-surmesure
{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

#csi-surmesure .texte
{
    flex: 1;
    margin-left: 20px;
}

#csi-surmesure .photo
{
    filter: brightness(1) contrast(1.20) blur(1px);
    opacity: 0.8;
}

#csi-surmesure .photo img
{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 851px)
{
#csi-surmesure
{
    margin: auto;
    display: block;
}

#csi-surmesure .texte
{
    margin-left: 0px;
    margin: auto;
}
}
/* Pourquoi du sur mesure */

/* Mise en ligne */
#csi-enligne::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/apres-la-mise-en-ligne.jpg');
}

@media screen and (max-width: 851px)
{
#csi-enligne::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/768/apres-la-mise-en-ligne.jpg');
}
}
/* Mise en ligne */

/* Exemples de créations */
#csi-creation
{
    width: 95%;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

#csi-creation .texte
{
    flex: 1;
}

#csi-creation .creation
{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

#csi-creation .creation .block
{
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}

#csi-creation .creation .block:hover
{
    transform: translateY(-5px);
}

#csi-creation .creation .block .logo
{
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#csi-creation .creation .block .logo a
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#csi-creation .creation .block .logo a:hover::after
{
    transform: scaleX(0);
}

#csi-creation .creation .block img
{
    max-width: 180px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0;
}

@media screen and (max-width: 851px)
{
#csi-creation
{
    padding: 0px;
    display: block;
}

#csi-creation .texte
{
    margin-bottom: 30px;
}
}
/* Exemples de créations */

/* Page création site */
/* creation site */


/* Les étapes */
#etapes
{
    width: 90%;
    margin: auto;
    margin-bottom: 40px;
}

#etapes .sur-block
{
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

/* ligne verticale */
#etapes .sur-block::before 
{
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.4);
}

/* bloc étape */
#etapes .block-etape 
{
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}

/* numéro */
#etapes .block-etape .numero 
{
    min-width: 50px;
    height: 50px;
    background: #345B66;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

/* texte */
#etapes .block-etape .texte 
{
    width: 100%;
}

@media screen and (max-width: 851px)
{
#etapes
{
    width: 95%;
}

#etapes .sur-block
{
    width: 95%;
}

/* bloc étape */
#etapes .block-etape 
{
    gap: 15px;
}
}
/* Les étapes */


/* Montage PC */
#montage-pc
{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

#montage-pc .texte
{
    flex: 1;
    margin-left: 20px;
}

#montage-pc .photo
{
    filter: contrast(85%) brightness(100%);
    opacity: 0.8;
}

#montage-pc .photo img
{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1366px)
{
#montage-pc
{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

#montage-pc .texte
{
    flex: 4;
    margin-left: 20px;
}

#montage-pc .photo
{
    flex: 6;
    filter: contrast(85%) brightness(100%);
    opacity: 0.8;
}

#montage-pc .photo img
{
    width: 100%;
    height: 100%;
}
}


@media screen and (max-width: 851px)
{
#montage-pc
{
    display: block;
}
}
/* Page montage PC */
#mpc-presentation::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/montage-pc.jpg');
}

#mpc-apres::before 
{
    background-image: url('https://ctaurel-informatique.fr/uploads/_interface/images/sections/apres-le-montage.jpg');
}
/* Page montage PC */

/* Montage PC */


/* Contact */
#contact
{
    width: 100%;
    min-height: 800px;
    background: #f5f5f5;
    color: #333;
    background-image:
    repeating-linear-gradient(78deg,  rgba(31,30,30,.06) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(-67deg, rgba(31,30,30,.06) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(27deg,  rgba(31,30,30,.05) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(-42deg, rgba(31,30,30,.05) 0 1px, transparent 1px 140px);
    clip-path: polygon(100% 0%, 100% 100%, 0% 90%, 0% 0%);
}

#contact .sur-block
{
    width: 90%;
    padding: 20px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10%;
    box-sizing: border-box;
}

#contact .texte
{   
    flex: 6;
}

#contact .texte a
{
    color: #333333;
}

#contact .coordonnees
{
    display: flex;
    align-items: center;
    gap: 15px;
}

#contact .formulaire
{
    flex: 4;
    padding: 20px;
}

#contact .formulaire input:focus, #contact .formulaire textarea:focus
{
    outline: none;
    border-bottom: 1px solid #345B66;
    box-shadow: 0 10px 25px rgba(52, 91, 102, 0.08);
}

#contact .formulaire div
{
    margin-bottom: 15px;
}

#contact .contact-info
{
    margin-top: 35px;
    padding-left: 20px;
    border-left: 3px solid #345B66;
}

#contact .form-site
{
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 851px)
{
#contact
{
    clip-path: polygon(100% 0%, 100% 100%, 0% 98%, 0% 0%);
}

#contact .sur-block
{
    width: 100%;
    padding: 0px;
    display: block;
}
}
/* Contact */


/* Footer */
#footer
{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 200px;
    margin: auto;
    text-align: center;
}

#footer .block
{
    flex: 1;
}

#footer a
{
    color: white;
}

@media screen and (max-width: 851px)
{
#footer
{
    display: block;
    width: 100%;
}
}
/* Footer */
