@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

{
  margin: 0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Spartan',sans-serif;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color:black;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: black;
}

h4 {
  font-size: 20px;
  color: black;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: black;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}


body {
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


#header {
display: flex;
align-items: center; 
justify-content: space-between;
padding: 25px 50px;
background: #121212;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
position: sticky;

}


#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}


#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
text-decoration: none; 
font-size: 16px;
font-weight: 600;
color: #C5A14E;
transition: 0.3s ease;
}


#navbar li a:hover,
#navbar li a.active {
  color: #C5A14E;
}
#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #C5A14E;
  position: absolute;
  bottom: -4px;
  left: 20px;
}


#nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: black;
  cursor: pointer;
}

#mobile {
  display: none;
  align-items: center;
  color: #C5A14E;
}

#close {
  display: none;
}


#hero {
  background-image: url(https://res.cloudinary.com/dwrgml2bx/image/upload/v1758010522/Radiated_Tortoise_in_Desert_Light_flcy1x.png);
  height: 100vh;
  width: 100%;
  background-position: top 25% right 0;
  background-size: cover;
  padding-top: 10px;
  }

  
#product {
  text-align: center;
}


#product1 .pro-container {
   display: flex;
 flex-direction: row;
  justify-content: center;
  padding-top: 20px; 
}


.pro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}

#product .tortoise-card {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
}


#product1 .tortoise-card:hover {
 ox-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product .tortoise-card img {
  width: 100%;
  border-radius: 0px;
}


.view-button {
  display: inline-block;
   padding: 10px 20px;
   border-color: #C5A14E;
   background-color:#C5A14E;   
  color: white;
  border-radius: none;
  text-decoration: none;
  font-weight: bold; 
  transition: 0.3s ease;
  cursor: pointer;
}



.view-button:hover {
  background: #444;

}





#care-guide {
  text-align: center;
}

#about-us {
  text-align: center;
}



#about-us .btn {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: none;
  background: #C5A14E;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#about-us .btn:hover {
  background: #444;

}






#about-us {
  background-color: #121212;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#about-us h1 {
  color: #C5A14E;
  font-size: 2.5em;
  margin-bottom: 20px;
}

#about-us h2 {
  color: #C5A14E;
  margin-bottom: 10px;
}

#about-us .intro {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 900px;
  margin: auto;
}

#about-us span {
  color: #C5A14E; 
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}



#site-footer {
  background-color: #121212;
  background: linear-gradient(to bottom, #0a0a0a, #000);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.footer-container h3 {
  color: #C5A14E; 
  margin-bottom: 10px;
}

.footer-contact a {
  color: #C5A14E; 
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #C5A14E; 
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9em;
  color: #aaa;
}

html {
  scroll-behavior: smooth;
}



@media (max-width:799px) {
  #header {
    position: fixed;
    padding: 10px 50px;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: -15px;
    right: -350px;
    height: 100vh;
    width: 300px;
    background-color: #121212;
    padding: 80px 0 0 10px;
    transition: 0.3s;
    z-index: 1000;
  
  }



  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

#mobile {
  display: flex;
  align-items: center;
}

#mobile i {
  color: #C5A14E;
  font-size: 24px;
  padding-left: 20px;
}

#close {
  display: initial;
  position: absolute;
  top: 30px;
  left: 30px;
  color: #C5A14E;
  font-size: 24px;
}


#hero {
    height: 100vh;
  
  background-position: top center;
  padding: 40px 20px;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}


}


@media (max-width: 477px) {
  #header {
    padding: 10px 10px;
    width: 95%;
  }

  #navbar {
    z-index: 1000;
  }


  #product .tortoise-card {
    width: 100%;
  }

  html, body {
    overflow-x: hidden;
  }

  html {
  scroll-behavior: smooth;
}

}

}



