@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: 40px;
  line-height: 60px;
  color: #222;
}

h2 {
  font-size: 50px;
  line-height: 54px;
  color: rgb(255, 255, 255);
}

h3 {
  font-size: 45px;
}

h4 {
  color: #ff0000;
  font-size: 100px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 1000;
}

p {
  font-size: 16px;
  font-weight: bolder;
  color: rgb(255, 255, 255);
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 30px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #ffffff;
  background-color: #000000;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 800;
  padding: 11px 18px;
  color: #000000;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #000000;
  outline: none;
  transition: 0.2s;
}

body {
  background-color: #000000;
  width: 100%;
}

/* Header Start */
#header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20p 80px;
  background-color: #000000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#header .logo {
  padding: 10px;
}

#header h2 {
  color: #c3b30d;
  font-size: 34px;
  padding-left: 175px;
  position: absolute;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
}

#navbar li {
  list-style: none;
  padding: 0 10px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #c3b30d;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #928606;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* Home Page */
#hero {
  background-image: url("img/statue-of-libertyBLR.jpg");
  height: 90vh;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h1 {
  color: #c3b30d;
}

#hero h3 {
  color: #ffffff;
}

#hero h4 {
  padding-bottom: 10px;
}

#hero p {
  color: #c3b30d;
}

#hero button {
  background-color: #000000;
  background-repeat: no-repeat;
  font-family: cursive;
  font-size: 40px;
  color: #c3b30d;
  border: 0;
  padding: 14px 80px 14px 65px;
  cursor: pointer;
}

#feature {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 280px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  padding: 9px 8px 6px 8px;
  line-height: 2;
  border-radius: 4px;
  color: #4c96f0;
  background-color: #3b0606;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #1d0830;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #04192e;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #052f15;
}

#product1 {
  background-color: #000000;
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  background-image: url("/img/banner/banMarble.jpg");
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.03);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.08);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .desc {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .desc span {
  color: #0a0074;
  font-size: 12px;
}

#product1 .pro .desc h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .desc i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .desc h7 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #036684;
}
#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #dbe9fb;
  color: #000000;
  border: 1px solid #000000;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("img/banner/banFancy.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h1 {
  color: #ffffff;
  font-size: 26px;
  font-weight: bolder;
}

#banner h2 {
  color: #ffffff;
  font-size: 19px;
  padding: 10px 0;
}

#banner h2 span {
  color: #00e00f;
  font-size: 20px;
}

#banner button:hover {
  background: #2f2c2c;
  color: #00e00f;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background-image: url(img/banner/banStatueBLR.jpg);
  min-width: 580px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url(img/banner/banEngraveBLR.jpg);
}

#sm-banner .banner-box h4 {
  font-size: 50px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: #ffffff;
}

#sm-banner .banner-box h2 {
  font-size: 25px;
  color: #ffffff;
}

#sm-banner .banner-box span {
  font-weight: 800;
  color: #ffffff;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background: #417dfe;
  border: 1px solid #417dfe;
}

#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/banner/banMedBLR.jpg");
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  background-image: url("img/banner/banClassicBLR.jpg");
}

#banner3 .banner-box3 {
  background-image: url("img/banner/banModernBLR.jpg");
}

#banner3 h2 {
  color: rgb(255, 255, 255);
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  font-family: "Times New Roman", Times, serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

#couponclub {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("img/banner/banGold.jpg");
  background-repeat: no-repeat;
  background-position: 30% 30%;
  background-color: #000000;
}

#couponclub h4 {
  color: #0e022b;
  font-size: 22px;
  font-weight: 700;
}

#couponclub p {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
}

#couponclub p span {
  font-weight: 900;
  color: #0e022b;
}

#couponclub .form {
  display: flex;
  width: 40%;
}

#couponclub input {
  color: #c3b30d;
  background-color: #000000;
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#couponclub button {
  background-color: #0e022b;
  color: #c3b30d;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
}

footer h2 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  font-size: 25px;
  color: #c3b30d;
  padding-right: 4px;
  cursor: pointer;
}

footer .install p {
  color: #ff0000;
}

footer .install .row img {
  border: 1px solid #4a4a47;
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

#footer .follow i:hover,
footer a:hover {
  color: #c3b30d;
}

footer .copyright {
  width: 100%;
  text-align: center;
}

/* Shop Page*/

#page-header {
  background-image: url("img/banner/banFancy003Half.jpg");
  background-size: contain;
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 13px;
}

#page-header p {
  font-weight: 600;
  font-size: 15px;
}

#page-nav {
  text-align: center;
}

#page-nav a {
  text-decoration: none;
  background-color: #0e022b;
  padding: 15px 20px;
  margin: 3px;
  border-radius: 4px;
  color: #c3b30d;
  font-weight: 800;
}

#page-nav a i {
  font-size: 20px;
  font-weight: 900;
}

/* Single Product */

#prodinfo {
  display: flex;
  margin-top: 20px;
}

#prodinfo .single-prod-info h6 {
  text-decoration: underline;
  font-size: 12px;
  color: white;
}

#prodinfo .single-prod-info h1 {
  background: #0e022b;
  border-radius: 15px;
  text-align: center;
  font-size: 45px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  color: #ffffff;
  padding: 10px 0 10px 0;
  margin: 10px 0 10px 0;
}

#prodinfo .single-prod-info h4 {
  text-decoration: underline;
  text-align: center;
  font-size: 30px;
  color: #c3b30d;
  padding: 40px 0 20px 0;
}

#prodinfo .single-prod-info h2 {
  font-size: 35px;
  color: white;
}

#prodinfo .single-prod-info span {
  line-height: 30px;
  font-size: 15px;
  color: white;
}

#prodinfo .single-prod-info select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#prodinfo .single-prod-info input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 20px;
  margin-right: 10px;
}
#prodinfo .single-prod-info input:focus {
  outline: none;
}
#prodinfo .single-prod-info button {
  background: #0e022b;
  color: #c3b30d;
}

#prodinfo .single-prod-image {
  width: 30%;
  margin-right: 50px;
}

.prod {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  display: grid;
}

.small-img-group {
  margin-top: 50px;
  justify-content: space-between;
}

.small-img-row {
  flex-basis: 24%;
  cursor: pointer;
}

#prodinfo .single-prod-info {
  width: 50%;
  padding-top: 30px;
}
/* ChatGPT */

#sourceGPT {
  font-style: italic;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 13px;
  color: #ffffff;
}

/* About Page */

#page-header.about-header {
  background-image: url("img/banner/banGoldNoBor.jpg");
  background-repeat: no-repeat;
  background-size: auto;
  background-color: #000000;
}

#page-header.about-header h2 {
  font-size: 55px;
  color: #ffea0072;
}

#about {
  padding: 50px 50px 50px 50px;
}

#about .about-box {
  display: flex;
  align-items: center;
  width: 100%;
}

#about .about-img {
  width: 50%;
  margin-right: 40px;
}

#about img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

#about .about-details {
  width: 50%;
}

#about .about-details h4 {
  font-size: 40px;
  font-family: "Times New Roman", Times, serif;
  text-decoration: underline;
  color: #c3b30d;
}

#about .about-details p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  line-height: 40px;
  padding: 0;
  margin-bottom: 0px;
}

#about .about-details2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  line-height: 40px;
}

#about .about-details h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}

#about .about-details a {
  color: #c3b30d;
}

/* Contact Page */

#contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-info .details {
  width: 40%;
}

#contact-info .details li {
  display: flex;
  padding: 10px 0;
}

#contact-info .details li i {
  font-size: 18px;
  padding-right: 22px;
}

#contact-info .details li p {
  margin: 0;
  font-size: 16px;
}

#contact-info .map {
  width: 55%;
  height: 400px;
}

#contact-info .map iframe {
  width: 100%;
  height: 100%;
}

#form-details {
  display: flex;
  justify-content: space-between;
  margin: 30px;
  padding: 80px;
  border: 2px solid #c3b30d;
}

#form-details form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 65%;
}

#form-details form span {
  color: #ffffff;
  font-size: 16px;
  text-decoration: underline;
}

#form-details form h2 {
  font-size: 18px;
}

#form-details form input,
#form-details form textarea {
  color: #c3b30d;
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px solid #c3b30d;
  background-color: #000000;
}

#form-details form button {
  background-color: #0e022b;
  color: #c3b30d;
}

#form-details .people div {
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

#form-details .people div img {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
}

#form-details .people div a {
  color: #ffffff;
}

#form-details .people div p {
  margin: 0;
  font-size: 13px;
  line-height: 25px;
}

#form-details .people div p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #c3b30d;
}

/* Start Media Query */

@media (max-width: 799px) {
  .section-p1 {
    padding: 40px 40px;
  }
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 200px;
    background-color: #000000;
    box-shadow: 0 40px 60px #c3b30d;
    padding: 80px 0 0 10px;
    transition: 0.4s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
    padding-right: 30px;
  }
  #mobile i {
    color: #c3b30d;
    font-size: 25px;
    padding-left: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #d21515;
    font-size: 25px;
  }

  #lg-cart {
    display: none;
  }

  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #feature {
    justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro {
    margin: 15px;
  }

  #banner {
    height: 30vh;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
  }

  #banner3 {
    padding: 0 40px;
  }

  #banner3 .banner-box {
    width: 28%;
  }

  #couponclub .form {
    width: 70%;
  }

  /* Contact Page */
  #form-details {
    padding: 40px;
  }

  #form-details form {
    width: 50%;
  }
}

@media (max-width: 477px) {
  .section-p1 {
    padding: 20px;
  }
  #header {
    padding: 10px 30px;
  }

  #header h2 {
    display: none;
  }

  h1 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 35px;
  }

  #hero {
    padding: 0 20px;
    background-position: 55%;
  }

  #feature {
    justify-content: space-between;
  }

  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  #product1 .pro {
    width: 100%;
  }

  #banner {
    height: 30vh;
  }

  #sm-banner .banner-box {
    height: 40vh;
  }

  #sm-banner .banner-box2 {
    margin-top: 20px;
  }

  #banner3 {
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
  }

  #couponclub {
    padding: 40px 20px;
  }

  #couponclub .form {
    width: 100%;
  }

  /* Single Product */
  #prodinfo {
    display: flex;
    flex-direction: column;
  }
  #prodinfo .single-prod-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodinfo .single-prod-info {
    width: 100%;
  }

  /* About Page */

  #about {
    padding: 100px 20px 0 20px;
  }

  #about .about-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #about .about-img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  #about .about-details {
    width: 100%;
  }

  #navbar {
    margin-right: 0px;
  }

  /* Contact Page */
  #contact-info {
    flex-direction: column;
  }

  #contact-info .details {
    width: 100%;
    margin-bottom: 30px;
  }

  #contact-info .map {
    width: 100%;
  }

  #form-details {
    margin: 10px;
    padding: 30px 10px;
    flex-wrap: wrap;
  }

  #form-details form {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (min-width: 380px) {
  #feature {
    margin: 0 13px 0 13px;
  }
}

@media (min-width: 3000px) {
  #feature {
    min-width: 49%;
    height: 30vh;
  }
}
