@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/brands.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/brands.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  background-color: #F3E0DC;
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 80px;
    background: #D4A59A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#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: 20px;
    font-weight: 600;
    color: #BC4639;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #5C2018;
}

#navbar li a:hover::after,
#navbar li a.active::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #5C2018;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

#hero {
    background-image: url("https://sfycdn.speedsize.com/2780c694-3419-4266-9652-d242439affeb/https://stateandliberty.com/cdn/shop/products/Springer12-_2.jpg?v=1664819869&width=800");
    /*background-image: url("./img/head-removebg-preview.png");*/
    height: 70vh;
    width: 100%;
    background-size: contain;
    background-position: top 0 right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-repeat: no-repeat;
    background-color: #F3E0DC;
}

#hero h2 {
    padding-bottom: 15px;
    color: #BC4639;
}

#hero h1 {
    color: #5C2018;
}

#hero button {
    /*background-image: url("./img/button.png");
    background-repeat: no-repeat;*/
    background-color: #D4A59A;
    color: #BC4639;
    border: 0;
    padding: 14px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    position: relative;
    top: 25px;
    border-radius: 15px;
}

#hero button:hover {
    color: #5C2018;
    transition: 0.3s ease;
}

#product1 {
  text-align: center;
  background-color: #F3E0DC;
}

#product1 p {
  font-size: 18p;
  font-weight: 600;
  color: #BC4639;
}

#product1 h2 {
  color: #5C2018;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 15px;
  border: 1px solid #5C2018;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: center;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #BC4639;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #5C2018;
  font-size: 16px;
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #BC4639;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #D4A59A;
  width: 100%;
  margin-top: auto;
}

footer .footer-text .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-right: 20px;
}

footer .logo {
  height: 100%;
  width: 80px;
  padding-bottom: 15px;
}

#header .logo {
  height: 100%;
  width: 80px;
}

footer h4 {
  color: #5C2018;
  font-size: 16px;
  padding-bottom: 20px;
}

footer p,
footer .icon {
  color: #BC4639;
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 8px 0;
}

footer .icon {
  cursor: pointer;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}

footer .footer-text .follow i {
  padding-bottom: 10px;
}

footer .footer-text .follow i:hover {
  color: #5C2018;
  transition: 0.2s ease;
}

footer .footer-text .follow i a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #BC4639;
  padding-bottom: 10px;
}

footer .footer-text .follow i a:hover {
  color: #5C2018;
  transition: 0.2s ease;
}

.footer-text {
  display: flex;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*
SHOP PAGE
*/

#page-header {
  background-image: url("./img/bg55.png");
  width: 100%;
  height: auto;
  min-height: 40vh;
  max-height: 45vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#page-header h2 {
  color: #5C2018;
  margin-bottom: 10px;
}
#page-header h1 {
  color: #5C2018;
}

#page-header p {
  color: #5C2018;
  font-size: 28px;
  width: 70%;
  font-weight: 500;
  align-self: center;
}

#pagination {
  text-align: center;
}

#pagination a {
  text-decoration: none;
  background-color: #D4A59A;
  padding: 15px 20px;
  border-radius: 4px;
  color: #5C2018;
  font-weight: 600;
}


#pagination a i {
  font-size: 16px;
  font-weight: 600;
}

/*
SINGLE PRODUCT
*/

#pro-details .single-pro-image {
  width: 40%;
  margin-right: 50px;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

#pro-details {
  display: flex;
  margin-top: 20px;
  color: #5C2018;
}

#pro-details .single-pro-details {
  width: 50%;
  padding: 30px;
}

#pro-details .single-pro-details h4 {
  padding: 20px 0px;
  color: #5C2018;
  font-weight: 600;
}

#pro-details .single-pro-details h2 {
  font-size: 26px;
  color: #5C2018;
}

#pro-details .single-pro-details span {
  line-height: 25px;
  font-weight: 500;
}

/*
ABOUT
*/

#page-header.about-header {
  background-image: url("./img/bg50.png");
}

#about-head {
  display: flex;
  align-items: center;
}

#about-head img {
  width: 50%;
  height: auto;
}

#about-head div {
  padding-left: 40px;
}

#about-store {
  text-align: center;
}

#about-store .video {
  width: 30%;
  height: auto;
  margin: 30px auto 0 auto;
}

#about-store .video video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

#about-store h1 {
  color: #5C2018;
}

#about-head h2 {
  color: #5C2018;
}

#about-head p {
  color: #5C2018;
  font-weight: 500;
}

#about-head abbr {
  color: #BC4639;
  font-weight: 600;
}

#about-head marquee {
  color: #5C2018;
  line-height: 30px;
  font-weight: 600;
}

#page-header.contact-header {
  background-image: url("./img/bg50.png");
}

#page-header h2 {
  font-size: 50px;
}

#page-header p {
  font-size: 32px;
  font-weight: 500;
}


/*
CONTACT
*/

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 60%;
}

#contact-details .details h2 {
  font-size: 32px;
  color: #5C2018;
  font-weight: 700;
  line-height: 40px;
  padding: 20px 0px;
}

#contact-details .details h3 {
  font-size: 24px;
  color: #BC4639;
  margin-bottom: 20px;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0px;
}

#contact-details .details li i {
  font-size: 16px;
  padding-right: 22px;
  color: #5C2018;
}

#contact-details .details li p {
  margin: 0;
  font-size: 16px;
  color: #BC4639;
  font-weight: 500;
}

#contact-details .map {
  width: 50%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

/*
MEDIA QUERIES FOR RESPONSIVENESS
*/

@media (max-width: 1000px) {
  #navbar li {
    padding: 0 11px;
  }
}

@media (min-width: 800px) and (max-width: 1200px) {
  #about-store .video {
    width: 60%;
  }
}

@media (max-width: 799px) {
  #navbar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 200vh;
    width: 300px;
    background-color: #D4A59A;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 100px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #5C2018;
    font-size: 24px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #5C2018;
    font-size: 24px;
  }

  #hero {
    height: 50vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }
  
  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro{
    margin: 15px;
  }

  footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #D4A59A;
    width: 100%;
  }

  footer .logo {
    padding-bottom:15px;
  }

  #header .logo {
    padding-bottom: 0px;
  }

  footer.section-p1 {
    padding: 20px 80px;
  }
  /*#hero {
    background-image: url("./img/hero-bg.png");
  }*/

  #about-store .video {
    width: 70%;
  }

  #about-head {
    flex-direction: column;
  }

  #about-head img {
    width: 100%;
    margin-bottom: 20px;
  }

  #about-head div {
    padding-left: 0px;
  }

  #about-store .video {
    width: 90%;
  }

  #about-head h2 {
    font-size: 30px;
  }

  #about-head p {
    margin: 0px;
    margin-bottom: 10px;
  }
}

@media (max-width:477px) {
  #header{
    padding: 15px 30px;
  }

  #hero {
    padding: 0 25px;
    background-position: right 0 top 30%;
  }

  h1 {
    font-size: 38px;
    line-height: 55px;
  }

  h2 {
    font-size: 32px;
  }

  #product1 .pro {
    width: 100%;
  }

  footer.section-p1 {
    padding: 15px 30px;
  }

  #hero button {
    font-size: 15px;
  }

  #product1 .pro-container {
    padding: 0px;
  }

  #page-header.about-header h2 {
    margin-bottom: 0px;
  }


  #page-header.about-header {
    padding-top: 30px;
  }

  #page-header h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  #page-header h1 {
    font-size: 30px;
    line-height: 38px;
  }

  #page-header p {
    font-size: 20px;
  }

  #page-header {
    background-image: url("./img/bg50.png");
    height: 30vh;
  }

  #pro-details{
    display: flex;
    flex-direction: column;
  }

  #pro-details .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #pro-details .single-pro-details {
    width: 100%;
  }

  .section-p1{
    padding: 20px;
  }

  #about-head {
    flex-direction: column;
  }

  #about-head img {
    width: 100%;
    margin-bottom: 20px;
  }

  #about-head div {
    padding-left: 0px;
  }

  #about-store .video {
    width: 90%;
  }

  #about-head h2 {
    font-size: 30px;
  }

  #about-head p {
    margin: 0px;
    margin-bottom: 10px;
  }

  #contact-details {
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
  }

  #contact-details .details h2 {
    font-size: 26px;
    line-height: 34px;
  }
  
  #contact-details .details h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #contact-details .map {
    width: 100%;
    height: 300px;
  }
}

@media (min-width: 478px) and (max-width: 730px) {
  #contact-details {
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
  }

  #contact-details .details h2 {
    font-size: 26px;
    line-height: 34px;
  }
  
  #contact-details .details h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #contact-details .map {
    width: 100%;
    height: 300px;
  }
} 