:root {
  --border-color: #2a2857;
  --btn-color: #2a2857;
}

@font-face {
  font-family: "font-head";
  src: url(./fonts/RecklessCondensedS-TRIAL-Book.woff);
}
@font-face {
  font-family: "font-p";
  src: url(./fonts/RobotoMono-Regular.ttf);
}
@font-face {
  font-family: "midnight";
  src: url(./fonts/midnight-sans-rd-12-medium-trial.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #fbf9eb;
}

main {
  position: relative;
  background-image: url("./image/header/header-main.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 95vh;
}

.top-head {
  width: 100%;
  height: 4vh;
  background-color: var(--border-color);
  font-family: "font-p";
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 100;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
}

/*  */
.navbar {
  letter-spacing: 1px;
  margin: 1% 3%;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  position: sticky;
  top: -0.1%;
  z-index: 999;
  height: 8vh;
  background-color: #fffefb;
  transition: all 0.3s ease;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "font-head";
  font-weight: 200;
  font-size: 1.1rem;
}

.icons {
  border-radius: 49%;
  border: 1px solid black;
  background-color: #c0dbff;
  font-size: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.icons:hover {
  transform: rotate(180deg);
  background-color: #ffb500;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
}

/*  */

.img-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  /* width: fit-content; */
  justify-content: center;
  padding-left: 5%;
  top: 50%;
  gap: 20px;
}

.img-text h1 {
  font-size: clamp(2rem, 5rem, 10rem);
  font-family: "font-head";
  color: white;
  font-weight: 100;
  line-height: 1;
}

.img-text p {
  font-size: clamp(0.5rem, 1rem, 2rem);
  font-family: "font-p";
  color: white;
  font-weight: 400;
}

.img-btn {
  background-color: var(--btn-color);
  padding: 16px 40px;
  width: 40%;
  border-radius: 30px;
  color: white;
  font-size: 1.2rem;
  font-family: var(--btn-font);
  transition: all ease 0.2s;
  cursor: pointer;
}

.img-btn:hover {
  background-color: white;
  color: black;
}

.bottom-icon {
  border: 1px solid black;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: end;
  background-color: var(--border-color);
  color: white;
  font-size: 25px;
  padding: 15px 15px;
  top: 95%;
  left: 92%;
}
.bottom-icon-left {
  border-radius: 50%;
  position: fixed;
  display: flex;
  align-items: end;
  justify-content: end;
  background-color: #60a6c6;
  font-size: 60px;
  color: white;
  top: 85%;
  left: 5%;
}

/* text-section */

.text-section1 {
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "font-head";
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 100;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* seller */

.best-seller {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  height: 100vh;
}

.best-tag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-seller h1 {
  background-color: #daaeea;
  text-transform: uppercase;
  padding: 2px 4px;
  border: 1px solid black;
  font-family: "font-head";
  font-weight: 900;
  font-size: 2.5rem;
  border-radius: 5px;
  transform: rotate(-1deg);
}
.best-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.best-cards::-webkit-scrollbar {
  display: none;
}

.card-sections {
  min-width: 300px;
  height: 450px;
  /* background: rgb(195, 28, 28); */
  flex-shrink: 0;
}

.card1 {
  width: 300px;
  min-width: 250px;
  max-width: 300px;
  height: 330px;
  background-color: #c1ee91;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.card-sections:nth-child(2) .card1 {
  background-color: #ffd884;
}
.card-sections:nth-child(3) .card1 {
  background-color: #b0e8c1;
}
.card-sections:nth-child(4) .card1 {
  background-color: #c1e4f8;
}
.card-sections:nth-child(5) .card1 {
  background-color: #c0e571;
}
.card-sections:nth-child(6) .card1 {
  background-color: #ffcb96;
}
.card-sections:nth-child(7) .card1 {
  background-color: #ffd1b8;
}
.card-sections:nth-child(8) .card1 {
  background-color: #cce3ff;
}
.card-sections:nth-child(9) .card1 {
  background-color: #aee0f9;
}

.top-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.top-card h3 {
  background-color: white;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-family: "midnight";
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 100;
}

.bottom-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding: 10px;
}

.bottom-card p {
  text-align: center;
  background-color: white;
  padding: 5px 10px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.bottom-card p:hover {
  background-color: var(--btn-color);
  color: white;
}

.card-img {
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-img img:hover {
  scale: 1.2;
}

.card-bottom-text {
  padding-top: 10px;
  width: 300px;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.card-bottom-text h3 {
  font-family: "font-head";
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 100;
}

.card-bottom-text p {
  font-family: "font-head";
  font-weight: 100;
}

.best-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.best-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--btn-color);
  padding: 16px 40px;
  border-radius: 30px;
  color: white;
  font-size: 1.1rem;
  font-family: var(--btn-font);
  transition: all ease 0.2s;
  cursor: pointer;
}

.best-btn button:hover {
  background-color: white;
  color: black;
}

.line {
  border: none;
  border-top: 2px solid #1a1a2e; /* dark navy color */
  margin: 0;
  width: 100%;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.sec-3 {
  width: 100%;
  height: 200vh;
  background-image: url('./image/bg-img-sec3.jpeg');
  /* background-color: #2d5a27; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8% 10% 6%;
  position: relative;
}

.sec3-badge {
  background-color: #A2C9FC;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-1.5deg);
  padding: 4px 12px;
  font-family: "midnight";
  font-size: 3rem;
  font-weight: 100;
  text-transform: uppercase;
  margin: 0;
}

.sec3-title {
  text-align: center;
}

.sec3-title h1 {
  font-family: "midnight";
  font-size: 10rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 0.9;
  margin: 0;
}

.sec3-para {
  max-width: 100%;
  text-align: center;
}

.sec3-para p {
  font-family: "font-head";
  font-size: 4rem;
  color: white;
  font-weight: 100;
  line-height: 1.4;
}

.sec3-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.sec3-icons img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.sec3-btn button {
  padding: 16px 50px;
  border: 1px solid white;
  border-radius: 30px;
  background-color: white;
  font-family: "font-p";
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sec3-btn button:hover {
  background-color: var(--btn-color);
  color: white;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* sectionLovedbyteapeopleeverywhere */

.section-Loved {
  position: relative;
  width: 100%;
  height: 110vh;
}
.love-head {
  position: absolute;
  top: 5%;
  left: 25%;
  background-color: #73bc25;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-1.5deg);
  padding: 0px 2px;
}

.love-head h1 {
  margin: 0;
  font-family: "midnight";
  font-size: 3.5rem;
  font-weight: 100;
  text-transform: uppercase;
}

.loverd-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 15vh;
}

.loverd-text h1 {
  font-family: "font-head";
  font-size: 4rem;
  font-weight: 100;
  font-style: italic;
}

.loverd-cards {
  display: flex;
  gap: 20px;
  padding: 5% 3%;
}

.sec4-card {
  text-align: center;
  overflow: hidden;
  width: 270px;
  min-width: 250px;
  max-width: 280px;
  height: 400px;
  background-color: #f5af8a;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.sec4-card:nth-child(2) {
  background-color: #abdf74;
}
.sec4-card:nth-child(3) {
  background-color: #ffd265;
}
.sec4-card:nth-child(4) {
  background-color: #ade674;
}
.sec4-card:nth-child(5) {
  background-color: #d9c2e1;
}

.sec4-card-top {
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.sec4-card-top h2 {
  /* background-color: red; */
  padding: 10px 10px;
  text-align: center;
  font-family: "font-head";
  font-weight: 100;
  font-size: 1.55rem;
}

.sec4-card-bottom {
  background-color: #ea6d44;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0 20px;
  overflow: hidden;
}

.sec4-card:nth-child(2) .sec4-card-bottom {
  background-color: #73bc25;
}
.sec4-card:nth-child(3) .sec4-card-bottom {
  background-color: #ffb500;
}
.sec4-card:nth-child(4) .sec4-card-bottom {
  background-color: #8bc045;
}
.sec4-card:nth-child(5) .sec4-card-bottom {
  background-color: #c790db;
}

.sec4-img {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.sec4-img img {
  width: 40px;
  height: 55px;
  object-fit: cover;
}

/* Text */
.sec4-bottom-text {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0px 15px;
}

.sec4-bottom-text h6 {
  margin: 0;
  font-family: "font-head";
  text-transform: uppercase;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 500;
}

/* Button */
.sec4-btn button {
  background: #fff;
  border: 1px solid #333;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* discover */

.section-discover {
  position: relative;
  width: 100%;
  height: 100vh;
}
.discover-head {
  position: absolute;
  top: 3%;
  left: 25%;
  background-color: #ff7f31;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-2deg);
  padding: 0px 2px;
}

.discover-head h1 {
  margin: 0;
  font-family: "midnight";
  font-size: 3.5rem;
  font-weight: 100;
  text-transform: uppercase;
}

.discover-text {
  padding: 12vh 0 0 25%;
}

.discover-text h1 {
  font-family: "font-head";
  font-size: 3.5rem;
  font-weight: 100;
}


.discover-input {
  padding: 3% 0 0 25%;
}

.discover-input input {
  width: 380px;
  padding: 26px 24px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: "font-p";
  background-color: transparent;
  outline: none;
  color: #aaa;
}

.discover-vibes {
  padding: 4% 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vibe-label {
  font-family: "font-p";
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vibe-tags span {
  padding: 20px 50px;
  border: 1px solid #aac0d6;
  border-radius: 10px;
  background-color: #dce8f5;
  font-family: "font-head";
  font-size: 1.2rem;
  font-weight: 100;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vibe-tags span:hover {
  background-color: var(--btn-color);
  color: white;
  border-color: var(--btn-color);
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* section-5 */

.sec-5 {
  width: 100%;
  height: 90vh;
  background-color: var(--btn-color);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec5-left {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sec5-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec5-right {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  padding: 60px;
}

.sec5-right h1 {
  font-family: "font-head";
  font-weight: 100;
  font-size: 5rem;
  color: white;
  letter-spacing: 3px;
}

.sec5-btn {
  padding: 15px 50px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  text-transform: capitalize;
  font-family: "font-p";
  font-weight: 200;
}

.sec5-btn:hover {
  background-color: var(--btn-color);
  color: rgb(255, 255, 255);
  border: 1px solid black;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* section-6 */

.sec-6 {
  width: 100%;
  height: 105vh;
  background-color: #9f6429;
  position: relative;
  overflow: hidden;
}

.sec6-top {
  padding-top: 4%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sec6-top h1 {
  font-family: "midnight";
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}
.sec6-top p {
  font-family: "font-p";
  color: white;
  display: inline-block;
}

.sec6-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin: 6% 5%;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background-color: #ffcb96;
  height: 65vh;
}

.sec6-left {
  width: 50%;
  height: 100%;
}

.sec6-left img {
  position: absolute;
  top: -10%;
}

.sec6-right {
  width: 50%;
  height: 60vh;
}

.right-chai h1 {
  font-family: "font-head";
  font-weight: 100;
  font-size: 4rem;
  text-transform: capitalize;
}

.right-chai p {
  font-family: "font-head";
  font-size: 1.3rem;
}

.right-chai button {
  padding: 10px 50px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 4%;
}

.right-chai-head {
  background-color: #f09f54;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-1.5deg);
  padding: 0px 2px;
  font-family: "midnight";
  font-size: 3.5rem;
  font-weight: 100;
  text-transform: uppercase;
}
.right-top-head {
  background-color: #ffcb96;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-1.5deg);
  padding: 0px 2px;
  font-family: "midnight";
  font-size: 3.5rem;
  font-weight: 100;
  text-transform: uppercase;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.sec-7 {
  width: 100%;
  height: 125vh;
  background-color: #fbf9eb;
  position: relative;
}

.sec7-part1 {
  display: flex;
  flex-direction: column;
  padding: 5% 20%;
  gap: 20px;
}

.part1-head {
  width: fit-content;
  background-color: #ffb500;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-1.5deg);
  padding: 0px 2px;
  font-family: "midnight";
  font-size: 3.5rem;
  font-weight: 100;
  text-transform: uppercase;
}

.sec7-part1 h1 {
  font-family: "font-head";
  font-weight: 100;
  font-size: 3.5rem;
  text-transform: capitalize;
  font-style: italic;
}

.sec7-part2 {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  overflow-x: auto;
}
.sec7-part2::-webkit-scrollbar {
  display: none;
}

.sec7-img {
  text-align: center;
  overflow: hidden;
  width: 370px;
  min-width: 350px;
  max-width: 380px;
  height: 400px;
  background-color:var(--btn-color);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.sec7-tag {
  display: inline-block;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 4px 10px;
  font-family: "midnight";
  font-size: 1rem;
  text-transform: uppercase;
  align-self: flex-start;
}

.sec7-img-top {
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  margin: 10px 0;
}

.sec7-img-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sec7-img:hover .sec7-img-top img {
  transform: scale(1.05);
}

.sec7-img-title {
  font-family: "font-p";
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a2e;
  background-color: #dce8f5;
  padding: 10px;
  border-radius: 8px;
  text-align: left;
}

.sec7-part3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 60px;
  border-radius: 30px;
  color: white;
  font-size: 1.1rem;
  font-family: var(--btn-font);
  transition: all ease 0.2s;
  cursor: pointer;
}

.sec7-part3 button:hover {
  background-color: white;
  color: black;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.sec-8 {
  width: 100%;
  height: 90vh;
  background: url(./image/sec-8.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: border-box;
  position: relative;
  background-position: 50% center;
}

.sec8-text {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  position: absolute;
  width: 30%;
  height: 75vh;
  background-color: #f26412;
  top: 8%;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

.sec8-text h1 {
  color: white;
  font-family: "font-head";
  font-weight: 100;
  font-size: 4rem;
  padding: 0 10%;
}

.sec8-text button {
  padding: 10px 80px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-family: "font-p";
  font-size: 1rem;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.sec-9 {
  width: 100%;
  height: 130vh;
  background-color: #c0dbff;
  border: 1px solid var(--border-color);
}

.sec-9-social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 5% 8%;
}

.social-email {
  flex: 1;
  max-width: 400px;
}

.social-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #aaa;
  border-radius: 30px;
  font-size: 1rem;
  background-color: white;
  outline: none;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon-link {
  width: 45px;
  height: 45px;
  border: 2px solid #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-link:hover {
  background-color: #1a1a2e;
  color: white;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.footer {
  background-color: #2a2857;
  margin: 40px;
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-template-areas:
    "foot1 foot2 foot3 foot4 foot5 ."
    "foot6 foot7 .     .     .     .";
  gap: 40px 20px;
}

.footer-col:nth-child(1) {
  grid-area: foot1;
}
.footer-col:nth-child(2) {
  grid-area: foot2;
}
.footer-col:nth-child(3) {
  grid-area: foot3;
}
.footer-col:nth-child(4) {
  grid-area: foot4;
}
.footer-col:nth-child(5) {
  grid-area: foot5;
}
.footer-col:nth-child(6) {
  grid-area: foot6;
}
.footer-col:nth-child(7) {
  grid-area: foot7;
}

.footer-heading {
  font-family: "font-head";
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #9090b0;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "midnight";
  font-weight: 100;
}

.footer-links a:hover {
  color: white;
}


