/* Général */
body{
    font-family: sans-serif;
    font-size: 15px;
    margin: 0px;
    overflow-x: hidden;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none !important;
}
#wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
ul{
    list-style: none;
}
/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 90px;
    padding: 0 200px;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0; 
}
.image-acro img {
    width: 280px;
    height: 160px;
    object-fit: contain;
}
nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li a {
    font-size: 18px;
    color: #686262;
    white-space: nowrap;
    transition: color 0.2s ease;
    font-weight: 600;
}
nav ul li a:hover, nav ul li a.active {
    color: #f96f19; 
}
.special {
    background-color: #f96f19;
    height: 42px;
    width: 140px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}
.special:hover {
    background-color: rgba(137, 132, 132, 0.785);
}
.special a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    font-size: 18px;
}
.special a .material-symbols-outlined {
    color: #fff;
    font-size: 18px;
}

/* MAIN-IMG */
#main-ACRO{
    position: relative;
    height: 780px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}
#main-ACRO::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
#main-ACRO img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text {     
    font-size: 30px;     
    position: absolute;     
    top: 50%;     
    left: 50%;     
    transform: translate(-50%, -50%);    
    width: 60%;     
    text-align: left;     
    color: #fff;     
    z-index: 2; } 
.p-1tube{     
    display: flex;     
    align-items: center;     
    justify-content: center;     
    font-size: 19px;     
    color: #ffad3b;     
    background-color:  rgba(124, 63, 6, 0.45);     
    height: 45px;     
    width: 340px;     
    border-radius: 20px;     
    gap: 6px; 
} 
.material-symbols-outlined {     
    font-size: 22px;     
    color: #efa236;     
    font-variation-settings: 'FILL' 0;
 } 
 .text h1 {     
    font-size: 90px;     
    color: #fff; 
} 
.p-2tube {     
    font-size: 24px;     
    color: #e2e2e2dc;     
    line-height: 1.8;     
    font-weight: 300;     
    margin: 5px 0 30px; 
} 
.orange {     
    color: #f0942b;
 } 
 .button1 {     
    background-color: #f96f19;     
    height: 60px;     
    width: 220px;     
    border-radius: 40px;     
    color: #fff;     
    text-decoration: none;         
    font-size: 21px;     
    display: inline-flex;     
    align-items: center;     
    justify-content: center;     
    gap: 8px; 
} 
.button1 .material-symbols-outlined {     
    color: #fff; 
}
 .button1:hover{     
    border-radius: 40px;     
    text-decoration: none;         
    display: inline-flex;     
    align-items: center;     
    justify-content: center;     
    gap: 8px;     
    font-weight: 500;     
    border: 1.5px solid rgb(223, 84, 34);     
    transition: all 0.3s ease;     
    letter-spacing: 1.2px; 
}
 .button2 {     
    background-color:rgb(147, 137, 137);     
    height: 60px;     
    width: 220px;     
    border-radius: 40px;     
    text-decoration: none;         
    font-size: 21px;     
    display: inline-flex;     
    align-items: center;     
    justify-content: center;     
    gap: 8px;     
    font-weight: 500;     
    border: 1.5px solid rgb(255, 255, 255);     
    transition: all 0.3s ease;     
    letter-spacing: 0.5px; 
}
 .button2:hover {    
    background-color: rgba(147, 137, 137, 0.6);
    letter-spacing: 1.2px;
}
/* ANIMATION DU MAIN ET ADOPTION*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.text .p-1tube{
    opacity: 0;
    animation: fadeInLeft 1s cubic-bezier(0.215, 0.610, 0.355, 1)forwards;
}
.text h1{
    opacity: 0;
    animation: fadeInLeft 1s cubic-bezier(0.215, 0.610, 0.355, 1)forwards;
    animation-delay: 0.15s;
}
.text .p-2tube{
    opacity: 0;
    animation: fadeInLeft 1s cubic-bezier(0.215, 0.610, 0.355, 1)forwards;
    animation-delay: 0.3s;
}

.text .button1,
.text .button2{
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.215, 0.610, 0.355, 1)forwards;
    animation-delay: 0.45s;
}

/* STATS */

.stats-list{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    gap: 80px;
    text-align: center;
    padding-top: 155px;
    padding-bottom: 50px;
}
.stats-list li{
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.088);
    width: 300px;
    height: 200px;
    border-radius: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out,  transform 0.6s ease-out;
}

.stats-list li.visible{
    opacity: 1;
    transform: translateY(0);
}
.stats-list li.visible:nth-child(2){
    transition-delay: 0.15s;
}
.stats-list li.visible:nth-child(3){
    transition-delay: 0.3s;
}
.stats-list li.visible:nth-child(4){
    transition-delay: 0.45s;
}

.stats-list h1{
    color: #000;
    margin: 0;
}
.stats-list p{
    color: #625f5f;
    margin: 10px;
}
.iconChat{
    height: 65px;
}
.iconVeto{
    height:65px;
}
.iconNature{
    height: 65px;
}
.iconCalendrier{
    height: 65px;
}

/*ADOPTION*/
.adopt{
    text-align: center;
    padding-top: 170px;
    padding-bottom: 55px;
}
.adopt h2{
    color: #f78138;
    font-size: 19px;
    margin-bottom: 20px;
}
.adopt h1{
    font-size: 58px;
    margin: 10px;
}
.adopt p{
    font-size: 22px;
    color: #625f5f;
    font-weight: 500;
    padding-top: 10px;
}
.adopt h2,
.adopt h1,
.adopt p{
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.215, 0.610, 0.355, 1), transform 1s cubic-bezier(0.215, 0.610, 0.355, 1)
}
.adopt h2.visible, 
.adopt h1.visible, 
.adopt p.visible {
    opacity: 1;
    transform: translateY(0);
}
.adopt h2.visible{
    transition-delay: 0s;
}
.adopt h1.visible{
    transition-delay: 0.15s;
}
.adopt p.visible{
    transition-delay: 0.3s;
}
/* LISTE DES CHATS */

#liste-chats{
    display: flex;
    justify-content: center;
    gap: 30px;
    padding:  50px 20px;
    flex-wrap: wrap;
    height: 500px;
    margin-bottom: 1400px;
}

.carte-chat{
    background-color:#fff;
    border-radius: 20px;
    width: 500px;
    overflow: hidden;
    font-family: sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
    transition: transform 0.6s ease;
}
.carte-chat:hover{
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.carte-chat:hover h2{
    color: #f78138;
}
.carte-chat img{
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.infos-chat h2{
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #333;
    margin: 20px 30px 15px ;
}
.infos-chat h3{
    color: #666;
    margin: 10px 30px;
    font-size:17px;
}
.infos-chat p{
    color: #666;
    margin: 10px 30px;
    font-size:17px;
}

.badge-dispo{
    position: absolute;
    background-color: #c5ebc7;
    color: #2c7730;
    padding: 5px 12px;
    border-radius: 7px;
    font-size: 0.9rem;
    margin: 15px;
    font-weight: bold;
}

.status{
    color: #27852c;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 20px 30px;
}

/* DON */
#don{
    background:linear-gradient(180deg, #ec7b0b 0%, #ff9e01 100%);
    height: 520px;
    margin-top: 80px;
}
#don h1{
    font-size: 59px;
    color: #fff;
    text-align: center;
    padding-top: 130px;
    margin-bottom: 40px;
}
#don p{
    color: #ffffffd1;
    font-size: 25px;
    margin-top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.les_boutons{
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
    padding-top: 30px;
}
.button3{
    background-color: #fff;
    height: 71px;
    width: 195px;
    border-radius: 40px;
    color: #f96f19;
    text-decoration: none;    
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
}
.button3:hover{
    background-color: #f1f1f1;
}
.button4{
    background-color: #f96f19;
    height: 71px;
    width: 230px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;    
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.button4:hover{
    background-color: #fd6100;
}

/* FOOTER*/
#footer {
    background: #171717;
    color: white;
    padding: 80px 40px ;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    gap: 200px;
    padding-bottom: 40px;
    margin-left: 180px;
}

.footer-col {
    margin-left: 30px;
}

.footer-col h3 {
    margin-bottom: 22px;
    font-size:20px;
}

.footer-col p,
.footer-col a {
    color: #bdbdbd;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 20px;
}

.footer-col a:hover {
    color: #ec7b0b;
}

#footer h1 {
    margin-bottom: 15px;
    font-size: 28px;
}

#footer h1 span {
    color: #ec7b0b;
}

.footer-fin {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 20px;
}

.footer-fin p {
    color: #777;
    margin: 0;
    font-size: 17px;
    margin-top: 20px;
}

/* PAGE NOS CHAT.HTML */

.LesChat h1{
    font-size: 59px;
    padding-top: 75px;
    text-align: center;
}
.LesChat p{
    text-align: center;
    font-size: 22px;
    margin-top: 10px;
    color: #625f5f;
    margin-bottom: 170px;
}

/* BARRE DE RECHERCHE */

.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;
}

.filters-box {
    display: flex;
    gap: 15px;
}

.search-box,
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    height: 63px;
    width: 690px;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

.select-wrapper select {
    height: 63px;
    padding: 12px 35px 12px 45px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.search-icon,
.filter-icon {
    position: absolute;
    left: 15px;
    font-size: 20px;
    color: #888;
    pointer-events: none;
    user-select: none;
}

.search-box input:focus,
.select-wrapper select:focus {
    border-color: #f78138;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* PAGE A PROPOS */

.histoire h3{
    color: #ec7b0b;
    font-size: 23px;
    margin: 130px auto 20px 230px;

}
.histoire h1{
    font-size: 75px;
    margin-bottom: 20px;
    margin: auto auto 30px 230px;
}
.histoire h1 span{
    color: #ec7b0b;
}
.histoire p{
    font-size: 25px;
    line-height: 40px;
    color: #625f5f;
    margin-bottom: 100px;
    margin: auto auto 120px 230px;
}
.chat_ciel{
    width: 100vw;
    height: 500px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 1)100%), url('images/chat-ciel.jpeg');
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
}

/* NOS VALEUR */

.valeurs-main {
    text-align: center;
    margin-top: 100px;
}
.valeurs-main h3 {
    color: #ec7b0b;
    font-size: 23px;
}
.valeurs-main h1{
    font-size: 45px;
    margin-top: 20px;
}

/* STATS ABOUT */

.information {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.information-list {
  display: flex;
  gap: 80px; 
  list-style: none;
  padding: 0;
  margin: 0;
}

.information-list li {
  text-align: center;
  width: 300px;
}

.information-list img {
  width: 250px;
  height: auto;
  margin-bottom: -50px; 
}

.information-list h1 {
  font-size: 22px;
  color: #e57300;
  margin-top: 5px;      
  margin-bottom: 15px;
}

.information-list p {
  font-size: 20px;
  line-height: 1.4;
  color: #7a7474;
}

.last-mission {
  padding: 200px 
}

.last-mission-2 {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1390px;
  margin: 0 auto;
}

.last-mission-text {
  flex: 1;
}

.last-mission-text h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e07b39;
  margin: 0 0 12px 0;
}

.last-mission-text h1 {
  font-size: 38px;
  font-weight: 800;
  color: #000;
  margin: 0 0 24px 0;
  line-height: 1.15;
}

.last-mission-text p {
  font-size: 19px;
  line-height: 1.3;
  color: #575656;
  margin: 0;
}

.last-mission-2 .chat-roux {
  flex-shrink: 0;
  width: 600px;
  height: 670px;
  object-fit: cover;
  border-radius: 20px;
}

.Les-Contacts{
    text-align: center;   
}

.Les-Contacts h3{
    color:  #e07b39;
    font-size: 20px;
    margin-bottom: 15px;
}
.Les-Contacts h1{
    font-size: 40px;
}
.Contact-ONE {
    padding: 60px 80px;
}

.contact-3 {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-3 li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 300px;
    background-color: #e6e6e62a;
}

.contact-3 img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
    margin-bottom: -20px;
}

.contact-3 h1 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.contact-3 p {
    font-size: 18px;
    line-height: 1.7;
    color: #606060;
    margin: 0;
    margin-bottom: 60px;
}
