:root {
    --font-primary: "Boots And Spurs", "Segoe UI", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --color-primary:#1b1b1b;
  --color-secondary: #fcfcfc; 
  --color-button-bg: #fcfcfc;
  --border-radius: 0.3em;
 --width:100%;
  --max-width: 1920px;
}

@import url('https://fonts.googleapis.com/css2?family=Boots+And+Spurs&display=swap');

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
    box-sizing: border-box;
}


body {
   color: var(--color-primary);
  background-color: var(--color-secondary);
  font-family: var(--font-primary);
  padding: min(50px, 7%);
  width: 100%;
  height: 100%;
  margin: 0;
   box-sizing: border-box;
  overflow-x: hidden;
}


header{
max-width: 1780px;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
gap:50px;
padding: 0 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    

}



.nav-left ul {
display: flex;
align-items: center;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
height: 100%;
}

.cta-button {
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-left a {
text-decoration: none;
color: #333;

}



.logo img {
width: 200px;
height: 80px;
display:flex;
align-items: center;
margin: auto;
transition: transform 0.3s ease, filter 0.3s ease;
cursor: pointer;
    margin-bottom: 20px;
}



.nav-right ul{
display: flex;
align-items: center;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
}

.nav-right li {
  margin: 0;
   text-decoration: none;
  color: #1b1b1b;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  
}

.nav-left li a:hover {
  color: #0056b3; 
  text-decoration: underline;
}

.nav-right a{
  text-decoration: none;
color: #333;
font-weight: bold;
}


.nav-right li a:hover {
  color: #0056b3; 
  text-decoration: underline;
}


.search-input {
padding: 8px 12px;
 border-radius: 20px;
 border: 1px solid #ccc;

}

.search-input:hover{
color: #ffffff;
  border-color: green;

}

.profile-img {
width: 40px;
 height: 40px;
 border-radius: 50%;
 object-fit: cover;
}


.about-link {
 text-decoration: none;
 color: #333;
font-weight: bold;
}

.regroup{
 display:flex;
  justify-content: flex-end;
align-items: center;
  gap: 20px;                  
  padding: 10px;  
}



/*new content*/
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  text-align: center;
}

.welcome {
background-image: url("picture/pexels.jpg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: left;
  position: relative;
  min-height: 70vh;
  width: 100%;
  color: #fcfcfc;;
}  

.welcome_content{
display: flex;
flex-direction: column;
  position: absolute;
  text-align: center;
  bottom: 40px;
 transform: translateX(-50%);
  left:50%;

}


.welcome_content h1,
.welcome_content p {
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);

}


.welcome_content h1 {
font-size: 50px;
font-weight: bold;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
color: #ffffff; 
}

.text-container{
  text-align: center;
  margin-bottom: 0px;
}

.text-container h1{
  line-height: 1.4;
  margin: 5px;
}

.text-container p{
  font-size: 15px;
  line-height: 1.4;
  margin: 5px;

}


.cta{
background-color: var(--color-button-bg);
color: #1b1b1b;
text-align: center;
font-size: 1em;
  padding: 10px 40px;
  border-radius: 15px;
  overflow: hidden;          
  text-decoration: none;
 width: 80px;
  height: 20px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); 
   margin: 5px;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.2s ease;
} 

.cta-container {
  max-width: 400px;
  margin: auto;
display: flex;
  justify-content: center;
  align-items: center;  
flex-wrap: wrap;
flex-direction: row;
border-radius: 10px;
}



.cta:hover {
  background-color: #0071e3;
  color: #fcfcfc;
  transform: scale(1.05);
}
.cta-button {
  transition: background-color 0.2s ease, transform 0.2s ease;
}




.collection{
  
  justify-content: center;
  text-align: center;
  margin-bottom: 5px;

}

 .collection h2{
   line-height: 1.4;
  margin: 20px;

}

.collection p{
  font-size: 15px;
  line-height: 1.4;
  margin: 5px;
}


.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.arrow-controls {
  display: flex;
  justify-content: right;
  gap: 20px;
  margin-bottom: 10px;
}

.scroll-arrow {
 
  color: black;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 50%;
  opacity: 0.7;
}


.grid-container {
  display: grid;
  grid-auto-rows: minmax(45px, auto);
  grid-template-columns: repeat(4, 1fr);
  max-width: 760px;
  gap: 15px;
  justify-content: center;
  margin: 20px auto;
  padding: 10px;
}

.grid {
  min-width: 300px;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
    height: 100%;
    margin-bottom:30px;
}

.grid:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grid img {
   width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: left;

}

.card-content p {
  margin: 5px 0;
}

.card-content a.cta {
  display: inline-block;
 color: #1b1b1b;
 text-align: center;
 font-size: 1em;
  padding: 10px 30px;
  border-radius: 15px;
  overflow: hidden;          
  text-decoration: none;
  width: 60px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
   margin: 5px;
   align-content: center;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.2s ease;
}
.card-content a.cta:hover{
  color: #ffffff;
}

.grid h3,
.grid p,
.grid a {
  text-align: left;
  margin: 5px 0;
  
}


.Discover {
  margin-top: 40px;
  text-align: center;
}

.discover-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #333; 
  position: relative;
  transition: color 0.3s ease;
}

.discover-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.discover-link:hover {
  text-decoration: none;
  color: #0071e3;
  transform: scale(1.05);

}

.discover-link:hover::after {
  transform: scaleX(1);
}

.visually-hidden {
  position: absolute;   
  left: -10000px;        
  top: auto;            
  width: 1px;           
  height: 1px;          ]
  overflow: hidden;      
}

.container-pictures{
  display: flex;
}

.container-shopleft{
  background-image: url("picture/pictureLeft.png");
 background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: left;
  position: relative;
  margin-top: 20px;
  width: 960px;
  height: 700px;
  color: #fcfcfc;;

}

.container-pictures img{
  width: 50%;
}

.container-shopright{
 background-image: url("picture/PictureRight.jpg");
 background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: left;
  position: relative;
   margin-top: 20px;
  width: 960px;
  height: 700px;
  color: #fcfcfc;

}

.container-shopleft h2,
.container-shopright h2{
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  
}

.cta-fixed {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9em;
  padding: 8px 24px;
  color: #1b1b1b;
  background-color: #fcfcfc;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.cta-fixed:hover {
  background-color: #0071e3;
  color: #fcfcfc;
}

.newsletter-form input{
  width: 200px;
  padding: 8px 12px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9em;
  box-sizing: border-box;
}

.newsletter-form button {
  height: 20px;
  padding: 10px 20px 20px;
  text-align: center;
  border-radius: 10px;
  border-color:#ccc;

}

.newsletter-form button:hover {
  border-color: green;
}

.newsletter-form input:hover{
color: #ffffff;
  border-color: green;
}

/* --- SECTION FOOTER PRINCIPALE (Verte) --- */
.bottom {
  background-color: #657C6A;
  width: 100%;
  min-height: 270px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start; /* Aligne les titres en haut */
  padding: 40px 20px;
  box-sizing: border-box;
}

/* --- COLONNES (Shop, Support, About) --- */
.shop, .support, .about-us {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fcfcfc;
  font-weight: bold;
  text-align: left; /* Plus pro pour des listes de liens */
}

/* --- GESTION DES LIENS (Anti-Violet) --- */
.shop p a, 
.support p a, 
.about-us p a {
  color: #fcfcfc !important; /* Force le BLANC même si visité */
  text-decoration: none;
  transition: color 0.3s ease;
}

.shop p a:visited, 
.support p a:visited, 
.about-us p a:visited {
  color: #fcfcfc !important; /* Empêche le passage au VIOLET */
}

.shop p a:hover, 
.support p a:hover, 
.about-us p a:hover {
  color: #FFD93D; /* Couleur dorée au survol */
  text-decoration: underline;
}

/* --- RÉSEAUX SOCIAUX --- */
.social-media {
  padding: 40px 0;
  background-color: #fcfcfc;
}

.title-media h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1b1b1b;
}

.logo-media {
  display: flex;
  justify-content: center; 
  gap: 25px; 
  align-items: center;
}

.logo-media img {
  height: 24px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-media img:hover {
  transform: scale(1.2);
}


/*new content*/
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f5f5f5;
}

.info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.logo-botton {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-botton img{
  width: 150px;
}

.logo-botton p {
  margin: 0 15px 0 0;
  font-size: 14px;
  cursor: pointer;
}


.language {
  margin-left: 100px;
  display: flex;
justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.language h3 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.language img {
  width: 24px;
  height: auto;
}


/* Footer - bottom bar */
.footer-bar {
  background: transparent;
  padding: 20px 0 0;
}

.footer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: justify;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Left side: logo + legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-bottom img {
  height: 44px;
  width: auto;
  display: block;
}

/* Legal links as inline list */
.legal-links ul {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.legal-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.legal-links a:hover { text-decoration: underline; }

/* FOOTER BAR */
.footer-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  background-color: #fcfcfc;
}

.footer-bar-inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.legal-links ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  background: #1b1b1b;
  color: #fff;
  border-color: #1b1b1b;
}

.flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Responsive Layout */
@media (max-width: 700px) {
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}



@media (max-width: 768px) {
  /* Header and Navigation */
  header {
    flex-direction: row;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .nav-left ul,
  .nav-right ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 10px 0;
    gap: 8px;
  }

  .logo img {
    width: 150px;
    height: auto;
    margin: 10px 0;
  }

  .regroup {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
  }

  .search-input {
    width: 80%;
    max-width: 300px;
  }

  .profile-img {
    width: 40px;
    height: 40px;
  }

  
  .welcome_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-container {
    flex-direction: column;
  }

  .cta {
    display: block;
    width: fit-content;
    margin: 5px auto;
  }

  /* Scroll and Grid */
  .scroll-wrapper {
    overflow-x: auto;
    padding: 10px;
  }

  .grid-container {
    flex-direction: column;
    gap: 20px;
  }

  .grid {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Discover + Pictures Section */
  .container-pictures {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    text-align: center;
  }

  .container-shopleft,
  .container-shopright {
    width: 100%;
  }

  .cta-fixed {
    margin: 10px 0;
  }

  /* Newsletter */
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .newsletter-form input {
    width: 80%;
    max-width: 300px;
  }

  /* Footer */
  .bottom {
    display: flex;
    flex-direction: row;
    text-align: center;
    gap: 20px;
  }

  .social-media,
  .logo-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .footer-bar .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .logo-botton img {
    width: 100px;
    height: auto;
  }

  .language {
    margin-top: 15px;
  }
}















