﻿/******************************************************************************************************/
/* STRUCTURE GLOBALE DES PAGES */

*, h1, h2, h3 {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size:18px;
}

html { background-color: #e0ebed; }

h1 { font-size: 32px; color: #222; text-align:center; margin:0; padding:0; }
h2 { font-size: 28px; color: #fff; }
h3 { font-size: 14px; color: #eee; }
p  { font-size: 20px; line-height: 24px; color: #333; }

a, a:link, a:visited { color: #336699; text-decoration: none; }
a:hover { color: #000; text-decoration: none; }



/******************************************************************************************************/
/* SUBDIVISION GLOBALE DES PAGES */

.page-top  { background-color: #eeeff4; background-image:url('images/banner2.jpg'); background-repeat:repeat-x; background-position:left;}
.page-menu { background-color: #000000; }
.page-note { background-color: transparent; padding-top:30px; }
.page-main { background-color: transparent; padding-top:30px; }
.page-foot { background-color: transparent; padding-bottom:25px; text-align:center; }

.section { max-width: 1400px; margin-left: auto; margin-right: auto; }


/******************************************************************************************************/
/* SECTION DE LA PAGE */
.logo     { height: 140px; display: flex; justify-content: center; align-items: center;   }
.logo img { height: 100px; }

.menu     { height: 40px;  display:flex; justify-content:space-evenly; align-items:center; flex-wrap:nowrap; }
.menuItem { font-size: 22px; color: #ccc; }
.menuItem:hover { color: #fff; cursor:pointer; }

.note     { max-width: 600px; margin:0 auto 0 auto; color: #666 }
.note h1  { padding-bottom: 20px;   }
.note a, .note p { text-align: center; font-size: 18px; line-height: 22px; padding-bottom: 15px; }

.message { color:#cc0000; }

/******************************************************************************************************/
/*  CONTENU DE LA PAGE : COLLECTION 
    - La largeur des items est établie par la largeur de l'image
*/

.collection { display: flex; justify-content:space-between; flex-wrap: wrap; }

.item { margin: 0 0 50px 0px; /*border:solid 1px #333;   border-radius: 8px; overflow:hidden;*/ }

.item-header        { display: flex; justify-content: space-between; align-items: end; padding:10px; 
                      background-color:#000;/* border:solid 1px #333; */border-top-left-radius:8px; border-top-right-radius:8px;  }
.item-header-title  { display: block; }
.item-header-price  { text-align: right; }
.item-header-price-previous  { font-size:18px; color:#ccc; text-decoration:line-through; padding-right:10px;  }

.item-description   { display: flex; justify-content:space-between; align-content:center; 
                      background-color:#fff; /*border:solid 1px #333;  */}
.item-description-text { width:530px; padding:10px; }
.item-description-cart { width:70px;  padding-top:5px; }
.item-description-cart:hover { cursor:pointer; }
.item-description-cart:hover .item-icon { opacity:1.0; }


.item-note   { font-size:80%; color:#888;}
.item-histoire { font-size: 80%; color: #336699;}
.item-icon   { width: 48px; opacity:0.6; }
.item-photo  { width: 600px;/* border:solid 1px #333; */border-bottom-left-radius:8px; border-bottom-right-radius:8px;}
.item-number {  position:absolute; bottom:10px; left: 5px; padding:5px; background-color:#111; border-radius:5px; }




/******************************************************************************************************/
/*  GESTION DU CAROUSSEL DE PHOTOS
*/
.slideshow { max-width: 600px; position: relative; margin: auto; }
        
.slideshow-slide  { display: none; }
.slideshow-arrows { text-align:center; }
.slideshow-dots   { position:absolute; bottom:15px; }
.slideshow-dots-align   { width:600px; display:flex; justify-content:center; } /* Doit être de la même largeur que l'image */
     
.slide-fade      { animation-name: fade; animation-duration: 1.5s; }
@keyframes slide-fade { from {opacity: .4} to {opacity: 1} }

.prev, .next { font-size: 36px; color: #ddd; font-weight: bold; cursor: pointer; position: absolute; top: 50%; width: auto; margin-top: -22px; padding: 16px; user-select: none; }
.prev:hover, .next:hover { color: #fff; }
.prev { left: 0; }
.next { right: 0; }

.slideshow-dot { cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0 10px;
    background-color: transparent;
    border:solid 2px #fff;
    border-radius: 50%;
}



/*********************************************************************************************************/
/********************            AJUSTEMENTS RESPONSIVE           ****************************************/
/*********************************************************************************************************/

@media screen and (max-width: 1920px) 
{ 

    h1 { font-size: 32px;}
    h2 { font-size: 24px;}
    h3 { font-size: 14px;}
    p  { font-size: 18px; line-height: 22px; }
            
    .page-note { padding-top:25px; }
    .page-main { padding-top:20px; }
    .page-foot { padding-bottom:20px; }
    .section   { max-width: 1100px }
    
    .logo      { height: 140px;   }
    .logo img  { height: 100px; }
 
    .menu      { height: 36px; }
    .menuItem { font-size: 18px; }
    
    .note      { max-width: 600px; padding-bottom:15px; }
    .note h1   { padding-bottom: 20px;   }
    .note a, .note p { font-size: 18px; line-height: 22px; padding-bottom: 15px; }
     
    .item                   { margin: 0 0 40px 0px; }
    .item-header            { padding: 10px; }
    .item-description-text  { width: 440px; padding:10px; }
    .item-description-cart  { width: 60px;  padding-top:5px; }
    .item-header-price-previous  { font-size:16px;  }
    
    .item-icon              { width: 40px;  }
    .item-photo             { width: 500px; }
    .item-number            { bottom:10px; left: 5px; padding:5px; }
   
    .slideshow-dots-align   { width:500px; } /* Doit être de la même largeur que l'image */
    .slideshow-dots         { bottom:15px; }
    .slideshow-dot          { height: 20px; width: 20px; margin: 0 10px; }
    .prev, .next            { font-size: 36px; margin-top: -22px; padding: 16px; }


}

@media screen and (max-width: 1300px) 
{
    h1 { font-size: 24px;}
    h2 { font-size: 20px;}
    h3 { font-size: 10px;}
    p  { font-size: 16px; line-height: 20px; }
            
    .page-note { padding-top:20px; }
    .page-main { padding-top:12px; }
    .page-foot { padding-bottom:20px; }
    .section   { max-width: 870px; }
    
    .logo      { height: 90px;   }
    .logo img  { height: 70px; }
 
    .menu      { height: 32px; }
    .menuItem { font-size: 16px; }
    
    .note      { max-width: 500px; padding-bottom:5px; }
    .note h1   { padding-bottom: 10px;   }
    .note a, .note p { font-size: 16px; line-height: 18px; padding-bottom: 8px; }
    
    .item                   { margin: 0 0 25px 0px; }
    .item-header            { padding: 10px; }
    .item-description-text  { width: 350px; padding:8px; font-size:14px; }
    .item-description-cart  { width: 50px;  padding-top:4px; }
    .item-header-price-previous  { font-size:14px;  }

    .item-icon              { width: 32px;  }
    .item-photo             { width: 400px; }
    .item-number            { bottom:10px; left: 5px; padding:5px; }
   
    .slideshow-dots-align   { width:400px; } /* Doit être de la même largeur que l'image */
    .slideshow-dots         { bottom:15px; }
    .slideshow-dot          { height: 20px; width: 20px; margin: 0 10px; }
    .prev, .next            { font-size: 36px; margin-top: -22px; padding: 16px; }
}

@media screen and (max-width: 1023px) 
{ 
    h1 { font-size: 24px;}
    h2 { font-size: 20px;}
    h3 { font-size: 10px;}
    p  { font-size: 16px; line-height: 20px; }
            
    .page-note { padding-top:20px; }
    .page-main { padding-top:12px; }
    .page-foot { padding-bottom:20px; }
    .section   { max-width: 600px; }
    
    .logo      { height: 80px;   }
    .logo img  { height: 65px; }
 
    .menu      { height: 32px; }
    .menuItem { font-size: 16px; }
    
    .note      { max-width: 500px; padding-bottom:5px; }
    .note h1   { padding-bottom: 10px;   }
    .note a, .note p { font-size: 16px; line-height: 18px; padding-bottom: 8px; }
    
    .item                   { margin: 0 0 25px 0px; }
    .item-header            { padding: 10px; }
    .item-description-text { width:530px; padding:10px; font-size:16px; }
    .item-description-cart { width:70px;  padding-top:5px; }
    .item-header-price-previous  { font-size:16px;  }
  
    .item-icon              { width: 42px;  }
    .item-photo             { width: 600px; }
    .item-number            { bottom:10px; left: 5px; padding:5px; }
   
    .slideshow-dots-align   { width:600px; } /* Doit être de la même largeur que l'image */
    .slideshow-dots         { bottom:15px; }
    .slideshow-dot          { height: 20px; width: 20px; margin: 0 10px; }
    .prev, .next            { font-size: 36px; margin-top: -22px; padding: 16px; }

}



@media screen and (max-width: 767px) 
{ 

    h1 { font-size: 20px;}
    h2 { font-size: 16px;}
    h3 { font-size: 8px;}
    p  { font-size: 16px; line-height: 18px; }
            
    .page-note { padding-top:15px; }
    .page-main { padding-top:10px; }
    .page-foot { padding-bottom:15px; }
    .section   { max-width: 400px; }
    
    .logo      { height: 80px;   }
    .logo img  { height: 60px; }
 
    .menu      { height: 30px; }
    .menuItem { font-size: 14px; }
    
    .note      { max-width: 500px; padding-bottom:5px; }
    .note h1   { padding-bottom: 10px;   }
    .note a, .note p { font-size: 14px; line-height: 16px; padding-bottom: 5px; }
    
    .item                   { margin: 0 0 25px 0px; }
    .item-header            { padding: 10px; }
    .item-description-text  { width: 350px; padding:8px; font-size:14px; }
    .item-description-cart  { width: 50px;  padding-top:4px; }
    .item-header-price-previous  { font-size:12px;  }
    
    .item-icon              { width: 32px;  }
    .item-photo             { width: 400px; }
    .item-number            { bottom:10px; left: 5px; padding:5px; }
   
    .slideshow-dots-align   { width:400px; } /* Doit être de la même largeur que l'image */
    .slideshow-dots         { bottom:15px; }
    .slideshow-dot          { height: 20px; width: 20px; margin: 0 10px; }
    .prev, .next            { font-size: 36px; margin-top: -22px; padding: 16px; }



}

@media screen and (max-width: 424px) 
{ 
/*

        h1 { font-size: 28px; }
        h2 { font-size: 20px; }
        h3 { font-size: 14px; }
        p  { font-size: 15px; line-height:17px; }

    .margin-bottom { margin-bottom: 5px;  }

    .page-main    { padding: 12px 0 0 0; }
    .section     { max-width: 300px; }  
    .section-title { margin: 0 0px 12px 0; }

    .banner      { height: 100px; }
    .logo        { height: 80px;  }


    .item { margin: 0 0 15px 0px; }
    .item-photo { width: 300px; }
    .item-text  { width: 300px; }
    .slideshow-dots-align   { width:300px; } 
            
    .soldItemsLink { font-size:18px; padding:10px 0 15px 0;}
    .soldItemsSection { padding-top: 15px; }
    */
 

    h1 { font-size: 18px;}
    h2 { font-size: 14px;}
    h3 { font-size: 8px;}
    p  { font-size: 16px; line-height: 18px; }
            
    .page-note { padding-top:12px; }
    .page-main { padding-top:10px; }
    .page-foot { padding-bottom:15px; }
    .section   { max-width: 300px; }
    
    .logo      { height: 70px;   }
    .logo img  { height: 50px; }
 
    .menu      { height: 28px; }
    .menuItem { font-size: 12px; }
    
    .note      { max-width: 280px; padding-bottom:5px; }
    .note h1   { padding-bottom: 10px;   }
    .note a, .note p { font-size: 12px; line-height: 14px; padding-bottom: 3px; }
    
    .item                   { margin: 0 0 20px 0px; }
    .item-header            { padding: 8px; }
    .item-description-text  { width: 260px; padding:5px; font-size:14px; }
    .item-description-cart  { width: 40px;  padding-top:4px; }
    .item-header-price-previous  { font-size:10px;  }
    
    .item-icon              { width: 30px;  }
    .item-photo             { width: 300px; }
    .item-number            { bottom:10px; left: 5px; padding:3px; }
   
    .slideshow-dots-align   { width:300px; } /* Doit être de la même largeur que l'image */
    .slideshow-dots         { bottom:15px; }
    .slideshow-dot          { height: 20px; width: 20px; margin: 0 10px; }
    .prev, .next            { font-size: 30px; margin-top: -22px; padding: 16px; }

            
    }    