/* cleaned_style_v2.css
Merged CSS - keeps original colors and navigation
*/

@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans:ital@0;1&display=swap');

:root {
  --Color-carte:#fffff2;
  --Color-body:#fffff2;
  --Color-carte-icon:#008cda;
  --Color-titre:#008cda;
  --Color-text:#000;
  --Color-orange:#FF6B4A;
  --Color-bleu:#008cda;
}

/* BODY */
body {
  font-family:"Inclusive Sans",sans-serif;
  font-size:18px;
  line-height:26px;
  color:#333;
  background-color:var(--Color-body);
  -webkit-font-smoothing:antialiased;
  cursor:url('../images/favicons/cursor-git-64.cur'),auto;
}

/* TITLES KEEP COLORS */
h1,h2,h3,h4,h5,h6 {
  font-family:"Inclusive Sans",sans-serif;
  font-weight:700;
  line-height:1.2;
}

h3 {
  color:var(--Color-orange);
}

h4 {
  color:var(--Color-bleu);
}

.color-orange {
  color:var(--Color-orange)!important;
}

.color-blue {
  color:var(--Color-bleu)!important;
}

@media(max-width:575px){
 h1{font-size:36px;font-weight:600}
 h2{font-size:32px;font-weight:600}
 h3{font-size:28px}
}

h1{font-size:50px}
h2{font-size:42px}
h3{font-size:32px}
h4{font-size:26px}
h5{font-size:22px}
h6{font-size:18px}


/* LINKS */
a {
 text-decoration:none;
 transition:.2s ease;
}

a:hover {
 color:#FF0043;
 cursor:url('../images/favicons/cursor-git-64-hand.cur'),auto;
}


/* NAVIGATION PRESERVED */
.navigation {
 transition:.2s ease;
}

.navigation.nav-bg {
 background:#fff;
 box-shadow:0 15px 60px rgba(62,62,62,.102)!important;
}

.nav-item {margin:0}

.navbar-light .navbar-nav .nav-link {
 color:#222;
}

.navbar-light .navbar-nav .nav-link:hover {
 color:#FF0043;
}

.navbar-expand-lg .navbar-nav .nav-link {
 padding:20px;
 font-size:17px;
}

@media(max-width:991px){
 .navbar-expand-lg .navbar-nav .nav-link{
  padding:10px;
  display:block;
 }
}


/* BACKGROUND COLORS */
.custom-bg-orange {
 background-color:#fd9843!important;
 color:white!important;
}

.custom-bg-green {
 background-color:#479f76!important;
 color:white!important;
}

.custom-bg-blue {
 background-color:#3d8bfd!important;
 color:white!important;
}


/* CARDS */
.card {
 background:linear-gradient(to bottom,var(--Color-carte) 0%,var(--Color-carte) 100%);
 border:0;
 border-radius:12px!important;
 box-shadow:0 15px 60px rgba(62,62,62,.102)!important;
 transition:.2s ease;
}

.card:hover {
 transform:translateY(-6px);
 box-shadow:0 12px 30px rgba(0,0,0,.12)!important;
}


/* ICONS */
.card-icon,
.card-icon2,
.card-icon-Sad,
.card-icon-Rouge-22,
.card-icon-Vert,
.card-icon-Vert-2,
.card-icon-Bleu,
.card-icon-Jaune,
.card-icon-Rose,
.card-icon-Orange,
.card-icon-Mauve {
 height:55px;
 width:55px;
 line-height:55px;
 border-radius:55px!important;
 color:white;
 text-align:center;
 font-size:27px;
 display:block;
 margin-top:10px;
}

.card-icon,.card-icon-Bleu{background:#008cda}
.card-icon2,.card-icon-Rouge-22{background:#FF0000}
.card-icon-Sad{background:#393B57}
.card-icon-Vert{background:#0e8572}
.card-icon-Vert-2{background:#80c143}
.card-icon-Jaune,.card-icon-Orange{background:#f7aa1c}
.card-icon-Mauve{background:#9805f7}

.card-text.content img {
  display: block;        /* Prevents inline baseline spacing issues */
  width: 100%;           /* Constrains image to the container's width */
  max-width: 100%;       /* Ensures it doesn't overflow on large screens */
  height: auto;          /* Maintains the correct aspect ratio */
  object-fit: contain;   /* Ensures the whole image is visible without distortion */
  border-radius: 4px;    /* Optional: softens harsh corners */
}

/* SECTIONS */
.section {
 padding-top:0;
 padding-bottom:80px;
}

.sectionChansons {
 padding-top:0;
 padding-bottom:80px;
}

@media(min-width:1200px){
 body{
  background-image:url('../images/all/bg-uku.png');
  background-repeat:no-repeat;
 }

 .container-M,
 .container-M-lg,
 .container-M-md,
 .container-M-sm,
 .container-M-xl{
  max-width:1440px;
  padding-left:350px;
 }
}


/* IMAGES MOBILE */
img{
 max-width:100%;
 height:auto;
 vertical-align:middle;
}

.floating-right{
 float:right;
}

@media(max-width:575px){
 .floating-right{
  float:none;
  display:block;
  margin:auto;
 }
}
@media (min-width:1200px) {
  .margin-title {
    margin-left:18rem;
  }
}

.sidenav {
    border-right: 1px solid #E2E2E2;
    padding-right: 20px;
    list-style: none;
}

.sidenav > li {
    border-bottom: 1px solid #E2E2E2;
}

.sidenav > li:last-child {
    border-bottom: none;
}

.sidenav > li > a {
    display: block;
    padding: 20px 0;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.sidenav > li > a:hover {
    color: #FF0043;
}