@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, apple color emoji, segoe ui emoji, Segoe UI Symbol, noto color emoji; */
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #fafafa;
}

h1 {
  font-weight: bold;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 999;
}

.normal-header li {
  position: relative;
}

.normal-header li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: pink;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.normal-header li:hover::after {
  width: 100%;
  left: 0;
}

.mobile-header {
  display: none;
}

.mobile-header .navbar {
  /* background-color: rgba(255, 255, 255, 0.3); */
  /* backdrop-filter: saturate(180%) blur(50px); */
}

header .logo img {
  mix-blend-mode: screen;
  margin: 0px 50px;
}

header ul {
  padding: 0;
}

.normal-header div {
  display: flex;
  border-radius: 30px;
}

header ul li {
  list-style: none;
  margin-left: 20px;
}

header ul li a {
  color: white;
  text-decoration: none;
  padding: 6px 30px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.sec {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.sec:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../assets/images/Safeimagekit-resized-img.png);
  background-size: cover;
}

.under_development {
  position: absolute;
  left: 20%;
  /* Position in the middle between the left edge and the image */
  top: 50%;
  /* Adjust this value to vertically center the text */
  transform: translate(-50%, -50%);
  color: white;
  /* Set the text color */
  font-size: 36px;
  /* Set the font size */
  z-index: 2;
  /* Ensure the text is above the image */
}

.sec:nth-child(2) {
  background-image: url(../assets/images/Homepage-Bottle-Lineup-Hero_1920x.webp);
  background-size: cover;
  overflow: hidden;
  min-height: 100vh;
}

.sec.information {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* Set the desired height */
}

.sec.information .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/crystals.png);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  /* Adjust the opacity as desired */
  z-index: -1;
}

.sec:nth-child(4) {
  position: relative;
  background-color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* justify-content: space-evenly; */
  width: 100%;
  min-height: 100vh;
}

.sec:nth-child(4) h1 {
  position: absolute;
  top: 0;
}

.sec:nth-child(4) img {
  height: 100px;
}

.sec:nth-child(4) td {
  text-align: center;
  border: none;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #eee;
}

body section #bottle {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  transform: translateY(10rem);
}

.products-mobile {
  display: none;
}

.products {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  width: 100%;
}

.products h1 {
  margin-top: 25px;
  padding-top: 25px;
  color: white;
}

.products img {
  max-height: 50%;
  max-width: 10%;
}

.caption {
  width: 50%;
  padding: 30px;
  border-radius: 50px;
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
}

.caption h5 {
  color: pink;
}

.caption p {
  color: white;
  margin: 0;
}

.information .container {
  margin: 50px 0px;
}

.information ul {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: saturate(180%) blur(5px);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  border-radius: 15px;
}

.information ul li {
  font-size: 14px;
  padding: 0px 30px;
  list-style: none;
}

.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.card {
  width: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  height: 200px;
  min-width: 150px;
}

@media screen and (max-width: 768px) {
}

@media only screen and (max-width: 1000px) {
  .mobile-header {
    display: block;
  }

  .normal-header {
    display: none;
  }

  .under_development {
    position: absolute;
    left: 50%;
    /* Position in the middle between the left edge and the image */
    top: 10%;
    /* Adjust this value to vertically center the text */
    transform: translate(-50%, -50%);
    color: white;
    /* Set the text color */
    font-size: 24px;
    /* Set the font size */
    z-index: 2;
    /* Ensure the text is above the image */
  }

  .table-responsive {
    overflow-x: auto;
  }

  .table {
    display: block;
    width: 100%;
  }

  .table tbody,
  .table tr
  /* .table td { */ {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
  }

  .table tbody {
    padding-top: 30px;
  }

  .table td {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 1200px) {
  /* header {
        padding: 20px 0px;
    } */

  header ul li a {
    padding: 6px 10px;
  }
}

@media only screen and (max-width: 1000px) {
  .products h1 {
    margin-bottom: 100px;
  }

  .carousel img {
    height: 400px;
    width: auto;
    max-width: 100%;
  }

  .carousel .caption {
    display: none;
  }

  .image-container img {
    height: 500px;
  }
}
