/* Global */
:root {
  --padding-section: 60px;
  --transition: 0.3s;
  --main-color: #826300;
}

/* Start Header */
header .top-header {
  height: 40px;
  background-color: var(--main-color);
  padding: 5px;
}
header .navbar {
  background-color: #faeddf !important;
  height: 70px;
}
@media (max-width: 992px) {
  header .navbar {
    height: auto;
  }
}
header .navbar img {
  max-height: 100px;
  width: auto;
}
@media (max-width: 992px) {
  header .navbar .navbar-collapse {
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050; /* above overlays */
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 0;
  }
}
@media (max-width: 992px) {
  header .navbar .navbar-collapse a {
    color: white !important;
    padding: 10px 16px; /* bigger touch target */
  }
}

/* End Header */
/* Start Home Section */
.home {
  position: relative;
  height: 80vh;
  color: #fff;
}
.home::before {
  content: "";
  position: absolute;
  background-image: url(../imgs/Home.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home .content {
  max-width: 600px;
}
.home .content .btn-main {
  background: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s;
}
.home .content .btn-main:hover {
  background: var(--main-color);
}

/* End Home Section */
/* Start Product Section */
.product-section {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
}
.product-section .text .main-title {
  font-size: 1.8rem;
  color: #222;
}
.product-section .text .btn-outline-dark {
  border-radius: 25px;
  padding: 6px 18px;
  font-weight: 500;
  transition: var(--transition);
}
.product-section .text .btn-outline-dark:hover {
  background: #222;
  color: #fff;
}
.product-section .card {
  max-width: 320px;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.product-section .card:hover {
  transform: translateY(-10px);
}
.product-section .card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-section .card .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-section .card .card-body p {
  font-size: 1rem;
  color: #111;
}
.product-section .Rectangle {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  color: #fff;
}
.product-section .Rectangle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../imgs/Rectange.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  filter: brightness(0.6);
}
.product-section .Rectangle h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.product-section .Rectangle .btn-main {
  background: #a27b12;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}
.product-section .Rectangle .btn-main:hover {
  background: #7a5c0d;
}

/* End Product Section */
/* Start Shop Section*/
.shop {
  padding-top: calc(var(--padding-section) - 20px);
  padding-bottom: var(--padding-section);
}
.shop .products {
  gap: 40px;
}
.shop .products .product {
  gap: 20px;
  flex-wrap: wrap;
}
.shop .products .product .img {
  height: 330px;
  padding: 10px;
  background-color: #cccccc;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.shop .products .product .img:hover {
  transform: translateY(-5px);
}
.shop .products .product .img:hover p {
  transform: translateY(-15px);
  background-color: #000;
  color: #fff;
}
.shop .products .product .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.shop .products .product .img p {
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* End Shop Section*/
/* Start Service Section*/
.service {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  background-color: #cccccc;
}
@media (max-width: 1300px) {
  .service .boxes {
    flex-wrap: wrap;
  }
}
.service .boxes img {
  width: 40px;
  height: 40px;
}
.service .boxes p {
  width: auto;
  line-height: 1.6;
}

/* End Service Section*/
/* Start Footer Section*/
footer {
  background-color: #515050;
  padding: 20px;
}
footer .info-one p {
  width: 186px;
}
footer .info-one input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid;
  outline: none;
}

/* End Footer Section*//*# sourceMappingURL=index.css.map */