: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;
  --width: 100%;
  --max-width: 1920px;
  --border-radius: 0.3em;

}

@import url('https://fonts.googleapis.com/css2?family=Boots+And+Spurs&display=swap');


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{
  width: 100%;
  max-width: 100%;
  height: auto;
display: flex;
justify-content: space-between;
align-items: center;
gap:50px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 40px; 
  box-sizing: border-box;

}


.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;

}

a.current{
    font-weight: bold;
}

a.current:hover{
     color: #333;
  text-decoration: none;
  cursor: default;
}



.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;
 margin-top:20px; 
}

.nav-right ul{
display: flex;
align-items: center;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;

}

.nav-left ul li a {
    text-decoration: none;
    color: #333;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; 
}

.nav-left ul li a:hover {
    color: #007BFF; 
    border-bottom: 2px solid #007BFF; 
}

.nav-left ul li a.current {
    font-weight: bold;
    border-bottom: 2px solid #1b1b1b;
}


.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;  
}



.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  text-align: center;
}

.cover {
    background-image: url("picture/nature.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
height: 300px;
  width: 100%;     
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  

}

.overlay-content {    
position: relative;
    width: 400px;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: none;
    z-index: 6;
    opacity: 1;
    box-sizing: border-box;
    padding: 48px 32px;
    margin: 32px auto;
  border-radius: 15px;
}

.cover h1 {
    font-weight: 400;
    letter-spacing: .11em;
    margin: 0;
    text-transform: uppercase;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.about h1 {
    font-size: 24px;
    margin-bottom: 20px;
      display: flex;
    justify-content: center;
}

.about p {
    font-size: 18px;

    color: #555;
}

h2{
      display: flex;
    justify-content: center;
}


.values {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
}

.mission, .vision, .customer {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.mission img, .vision img, .customer img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mission h2, .vision h2, .customer h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}



.bottom {
  background-color: #657C6A;
  color: #fcfcfc;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 60px 20px;
  margin-top: 40px;
  flex-wrap: wrap; 
  gap: 30px;
}

.shop, .support, .about-us {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}

.bottom h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bottom p {
  margin: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 0.95rem;
}

.bottom p:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.social-media {
  background-color: #fcfcfc;
  padding: 40px 20px;
  text-align: center;
}

.title-media h3 {
  margin-bottom: 20px;
  color: #1b1b1b;
}

.logo-media {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}

.logo-media img {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo-media img:hover {
  transform: scale(1.2);
}

.footer-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  background-color: #fcfcfc;
}

.footer-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-bottom img {
  height: 45px;
  width: auto;
}

.legal-links ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.legal-links a {
  text-decoration: none;
  color: #666;
  font-size: 13px;
}

.legal-links a:hover {
  color: #1b1b1b;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: #1b1b1b;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 12px;
  font-weight: bold;
  cursor: pointer;
}

.flag {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

.copyright {
  font-size: 13px;
  color: #999;
}

@media (max-width: 768px) {
  .bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 15px;
  }
}
