/*
 * QR Studio - Styles
 * @autor : dynamic creative
 * @date : 2025
 * @version : Bootstrap 5
 */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --font-family : 'Open Sans', sans-serif;
    --color-principal : #000;
    --color-bt : #fff;
    --color-foot : #fff;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    -webkit-backdrop-filter: blur(var(--bg-blur));
    backdrop-filter: blur(var(--bg-blur));
}

.container {max-width: 1260px;}
a {text-decoration: none;}

section {
    min-height: 100vh;
    font-family: var(--font-family);
    color: var(--color-principal);
    font-size: 16px;
    padding: 20px 0;
}

#profil {max-width: 400px; margin: 0 auto;}

.profil-pic {height: var(--logo-height);}
.profil-pic img {object-fit: contain; height: 100%; width: 100%; max-width: 350px;}

h1 {font-size: 24px; font-weight: 600; margin-top: 10px;}

.item-bt {margin: 20px 0;}
.item-bt a {
    width: 100%;
    display: inline-flex;
    padding: 1.428em 1.2em;
    border-radius: 40px;
    color: var(--color-bt);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    opacity: 1;
    transition: all 350ms ease;
    justify-content: center;
    align-items: center;
}
.item-bt a i {font-size: 24px; margin-right: 10px; transition: all 350ms ease;}
.item-bt a:hover {opacity: 0.8;}
.item-bt a:hover i {margin-right: 20px;}

.fonction {display: block; font-size: 12px; padding-top: 3px;}

.item-collapse {position: relative; margin: 0;}
.item-collapse a:after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    transition: all 350ms ease;
}
.item-collapse a[aria-expanded="true"]:after {transform: translateY(-50%) rotate(180deg);}
.item-collapse a[aria-expanded="true"] {border-bottom-left-radius: 0; border-bottom-right-radius: 0;}

.bloc-collapse > div {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 12px;
}
.bloc-collapse > div > div {margin: 0;}
.bloc-collapse > div > div:not(:last-child) {padding-bottom: 10px;}

#reseaux {display: flex; justify-content: center; align-items: center; margin-bottom: 20px;}
#reseaux .item-reseau {padding: 0 10px; font-size: 30px;}
#reseaux .item-reseau a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: all 350ms ease;
}
#reseaux .item-reseau a:hover {opacity: 0.8; transform: scale(1.1);}

.style-1 .item-bt a {justify-content: center;}

.style-2 .item-bt a {
    position: relative;
    padding-left: 60px;
    padding-right: 30px;
    display: block;
    text-align: center;
}
.style-2 .item-bt a i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.style-3 .item-bt a {border-radius: 50px; padding: 1.2em 2em;}

.style-4 .item-bt a {border-radius: 8px;}

.style-5 .item-bt a {
    background-color: transparent !important;
    border: 2px solid currentColor;
}
.style-5 .item-bt a:hover {background-color: rgba(255,255,255,0.1) !important;}

.foot {color: var(--color-foot); font-size: 14px; line-height: 1.8;}
.foot a {color: var(--color-foot);}
.foot a:hover {color: var(--color-principal);}
.promo-link {font-size: 12px; opacity: 0.8; margin-top: 5px; display: inline-block;}
.promo-link:hover {opacity: 1;}

@media screen and (max-width: 480px) {
    .item-bt a {padding: 1.2em 1em; font-size: 13px;}
    #reseaux .item-reseau a {width: 44px; height: 44px; font-size: 20px;}
}
