@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  overflow-x: hidden;
}

p {
  font-family: var(--inter);
  font-size: 24px;
}

/* ----------------------------------------- */
.product-section {
  padding: 0 120px;
  padding-top: 100px;
}
.hero-buttons.top-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: flex-end;
}

.btn-outline {
  padding: 8px 18px;
  border: 3px solid #000;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--inter);
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* -------------------------------- */

.collection-head {
  background-color: #f1e8e4;
  padding: 10px 20px;
  border-radius: 2rem 2rem 0 0;
  display: inline-block;
}
.collection-head h3 {
  font-size: 30px;
}
.collection-container {
  background-color: #f1e8e4;
  padding: 60px 40px;
  margin-bottom: 60px;
  border-radius: 0 2rem 2rem 2rem;
}
.col-img img {
  width: 100%;
  margin: 0 auto;
  min-height: 395px;
  object-fit: cover;
  max-height: 395px;
}
.col-img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.col-img .col-text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to top,
    rgb(0, 0, 0, 0.6),
    transparent,
    rgb(0, 0, 0, 0.6)
  );
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.col-img h2 {
  font-family: var(--waterfall);
  color: #fff;
  font-size: 50px;
}
.col-img h3 {
  color: #fff;
}
.col-icons {
  display: flex;
  gap: 20px;
  justify-content: left;
  margin-top: 20px;
}
.col-icon {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.col-icon img {
  width: 80%;
  border-radius: 50%;
}
.col-icon h5 {
  font-size: 12px;
}
.coll-box p {
  font-size: 14px;
  margin-bottom: 0 !important;
}

.btn-dashed {
  margin-top: 20px;
  padding: 10px 22px;
  border: 3px dashed #000;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: var(--inter);
  font-weight: 700;
  display: inline-flex;
}

.btn-dashed:hover {
  background: #000;
  color: #fff;
  border-style: solid;
}

/* -------------------------------------------------------------- */
.info {
  padding: 60px 0;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.info-icon {
  background-color: #f7e6cf;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}
.info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-text h4 {
  font-family: var(--montserrat);
  font-size: 20px;
}
.info-text p {
  text-align: center;
  font-family: var(--montserrat);
  font-size: 14px;
}
.info-icon i {
  font-size: 35px;
}

.info-section {
  border-bottom: 5px solid #000;
  padding-bottom: 40px;
}

/* ------------------------------------------------------------------ */

.off-section {
  background-image: linear-gradient(to bottom, #ffffff9d, #ffffff9d),
    url(../images/home/off-bg.png);
  background-size: cover;
  background-position: center;
  margin-top: 0px;
  padding: 70px 0;
}
.off-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.off-section .container h2 {
  font-size: 50px;
  font-weight: 600;
  font-family: var(--inter);
}
.off-section .container h4 {
  padding: 0 140px;
  font-family: var(--inter);
  font-size: 25px;
  line-height: 40px;
}
.off-section .container .btn {
  padding: 5px 30px;
  font-size: 26px;
  border-radius: 3rem !important;
  font-weight: bold;
  color: #000000;
  font-family: var(--inter);
  border: 6px solid #000;
  text-shadow: 1px 2px 0 #0000004f;
}

/* ------------------------Responsive Design---------------------- */

@media screen and (max-width: 700px) {
  .product-section {
    padding: 0;
  }
  .col-img h2 {
    font-size: 30px;
  }
  .collection-head h3 {
    font-size: 24px;
}
  .off-section .container h4 {
    padding: 0;
  }
  .collection-container {
    padding: 60px 20px;
}
  .off-section .container h2 {
    font-size: 36px;
  }
  .off-section .container h4 {
    padding: 0;
  }
  .off-section .container .btn {
    padding: 10px 20px;
    font-size: 20px;
  }
  .hero-buttons.top-buttons {
    margin-top: 80px;
    padding: 0 10px;
  }
}
