@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

:root {
  --primary-black: #000000;
  --white-color: #fff;

  --bg-black: #000000;
  --gray-bar: #777777;
  --ghost-text: #1a1a1a; /* Dark gray for background labels */

  /* font-weight-variables */
  /* font-weight-variables */

  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;

  /* Mr.Black Mission Page font size variables start*/
  --font-size-202: 12.625rem; /*202px */
  --font-size-200: 12.5rem; /* 200px */
  --font-size-154: 9.625rem; /*154px */
  --font-size-150: 9.375rem; /*150px */
  --font-size-136: 8.5rem; /*136px */
  --font-size-80: 5rem; /* 80px */
  --font-size-72: 4.5rem; /* 72px */
  --font-size-44: 2.75rem; /*44px */
  --font-size-32: 2rem; /*32px */
  --font-size-24: 1.5rem; /*24px */
  --font-size-22: 1.375rem; /*22px */
  --font-size-18: 1.125rem; /*18px */
  --font-size-16: 1rem; /*16px */
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* font-size custom classes css start */

.font-size-202 {
  font-size: var(--font-202);
}

.font-size-200 {
  font-size: var(--font-200);
}

.font-size-154 {
  font-size: var(--font-154);
}

.font-seize-150 {
  font-size: var(--font-150);
}

.font-size-136 {
  font-size: var(--font-136);
}

.font-size-80 {
  font-size: var(--font-80);
}

.font-size-44 {
  font-size: var(--font-44);
}

.font-size-32 {
  font-size: var(--font-32);
}

.font-size-24 {
  font-size: var(--font-24);
}

.font-size-22 {
  font-size: var(--font-22);
}

.font-size-18 {
  font-size: var(--font-18);
}

/* font weight custom classes css start */
/* font weight custom classes css start */

.font-100 {
  font-weight: var(--fw-100);
}

.font-200 {
  font-weight: var(--fw-200);
}

.font-300 {
  font-weight: var(--fw-300);
}

.font-400 {
  font-weight: var(--fw-400);
}

.font-500 {
  font-weight: var(--fw-500);
}

.font-600 {
  font-weight: var(--fw-600);
}

.font-700 {
  font-weight: var(--fw-700);
}

.font-800 {
  font-weight: var(--fw-800);
}

.font-900 {
  font-weight: var(--fw-900);
}

/* font weight custom classes css end */

/* style css start */

.landing-container {
  padding: 3.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.launching-soon {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 3.125rem 0rem;
  font-size: 2.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
}

.bottle-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.bottle-background-halftone {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    #d8ae6d 0.094rem,
    transparent 0.094rem
  );
  background-size: 1.25rem 1.25rem;
  transform: rotate(45deg);
  opacity: 0.7;
  mask-image: radial-gradient(circle, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black, transparent 70%);
}

.bottle-image {
  max-width: 100%;
  height: auto;
  position: relative;
}

.headline-section {
  margin-bottom: 2.5rem;
}

.headline-section p {
  font-size: 2.5rem;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
}

.highlight-text {
  color: #f9d64f;
  font-weight: bold;
  font-style: italic;
}

.headline-divider {
  width: 6.25rem;
  height: 0.063rem;
  background-color: var(--white-color);
  margin: 1.25rem auto;
}

.contact-form-section {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 0.938rem;
}

.form-control {
  background-color: #000;
  border: 0.063rem solid var(--white-color);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.75rem;
}

.form-control:focus {
  background-color: #050505;
  border-color: #d8ae6d;
  box-shadow: 0 0 0.625rem rgba(216, 174, 109, 0.3);
  color: #fff;
}

.form-control::placeholder {
  color: var(--white-color);
}

textarea.form-control {
  resize: none;
}

.send-button-wrapper {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #ddb153, #a97123, #dcb155);
  border-top: 0.063rem solid #ddb153;
  border-bottom: 0.063rem solid #ddb153;
  border-left: none;
  border-right: none;
  border-radius: 0;
  box-shadow:
    0 0.063rem 0 rgba(255, 255, 255, 0.3) inset,
    0 -0.063rem 0 rgba(255, 255, 255, 0.3) inset;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.send-button-wrapper::before,
.send-button-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.25rem;
  background-color: var(--bg-black);
}

.send-button-wrapper::before {
  top: 0.125rem;
}

.send-button-wrapper::after {
  bottom: 0.125rem;
}

.send-button-wrapper:hover {
  background: linear-gradient(to right, #e0a747, #be8737, #e0a747);
  box-shadow:
    0 0.125rem 0 rgba(255, 255, 255, 0.3) inset,
    0 -0.125rem 0 rgba(255, 255, 255, 0.3) inset;
}

.send-button-wrapper:active {
  background: linear-gradient(to right, #c38c31, #a16e21, #c38c31);
  box-shadow:
    0 0.063rem 0 rgba(0, 0, 0, 0.1) inset,
    0 -0.063rem 0 rgba(0, 0, 0, 0.1) inset;
  top: 0.063rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0rem 1.875rem 0rem;
  background-color: #fff;
  color: #000;
}

.social-icons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.938rem;
  margin-bottom: 1.563rem;
}

.social-icon {
  color: var(--white-color);
  background-color: var(--bg-black);
  border-radius: 50%;
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 0.063rem solid #000;
  text-decoration: none;
  transition: all 0.1s;
}

.social-icon:hover {
  background-color: #c3943a;
  color: #fff;
  border: 0.063rem solid #c3943a;
  transition: all 0.1s;
}

.social-icon svg {
  transition: all 1s;
}

.social-icon:hover svg {
  transform: rotateY(360deg);
}

.copyright {
  font-size: 1rem;
  margin: 0.938rem 0 0 0;
  font-weight: 400;
  border-top: 0.063rem solid #dddddd;
  width: 100%;
  text-align: center;
  padding-top: 1.563rem;
}

/* modal css start */
#onLoadModal .modal-content {
  background: #000;
  border: 0.25rem solid var(--white-color);
  border-radius: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.875rem;
  margin-bottom: 0.313rem;
}



.footer-text {
  font-size: 0.875rem;
  color: #ccc;
  text-align: center;
  margin-top: 0.938rem;
  line-height: 1.4;
}

.no-radius{
  border-radius: 0rem !important;
}

.icon-group{
  position: relative;
}
/* modal css end */

/* datepicker css start */

.icon-position-right{
  position: absolute;
  right: 0.6rem;
  bottom: 0.8rem;
}

.ui-datepicker-title{
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
/* datepicker css end */

/* style css end */

@media (max-width: 1199px) {
  :root {
    --font-size-200: 9.375rem;
    --font-size-154: 7.5rem;
    --font-size-150: 6.25rem;
  }
}

@media (max-width: 991px) {
  .landing-container {
    padding: 2.5rem 1.25rem;
  }

  .bottle-image {
    max-width: 80%;
  }

  .headline-section p {
    font-size: 2rem;
  }

  .form-control {
    padding: 0.625rem;
  }

  :root {
    --font-size-200: 6.25rem;
    --font-size-154: 5.5rem;
    --font-size-150: 5rem;
  }
}

@media (max-width: 767px) {
  .landing-container {
    padding: 2.5rem 1.25rem;
  }

  .bottle-image {
    max-width: 80%;
  }

  .headline-section p {
    font-size: 1.5rem;
  }

  .form-control {
    padding: 0.625rem;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-154: 3.5rem;
    --font-size-150: 3rem;
    --font-size-32: 1.375rem;
    --font-size-44: 2rem;
    --font-size-72: 3rem;
    --font-size-22: 1rem;
  }

  .landing-container {
    padding: 2.5rem 1.25rem;
  }

  .bottle-image {
    max-width: 80%;
  }

  .headline-section p {
    font-size: 1.3rem;
  }

  .form-control {
    padding: 0.625rem;
  }

  .launching-soon {
    font-size: 2rem;
  }
}

.video-container {
    margin-left: -20px;
    margin-right: -20px;
}

.simple-highlight-text{
  color: #b8822f;
}

.font-normal{
  font-weight: normal;
}

/*-- new css --*/
    .landing-container {
      padding: 0;
    }


    .video-container {
      position: relative;
      max-width: 100%;
      height: auto;
    }

    .simple-highlight-text {
      color: #b8822f;
    }

    .font-normal {
      font-weight: normal;
    }

    .launching-soon.simple {
      text-transform: capitalize;
      letter-spacing: normal;
      line-height: 50px;
      font-weight: 300;
    }

    video#brandVideo {
      max-width: 100%;
    }

    #unmute-text {
      position: absolute;
      top: 3%;
      right: 3%;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      z-index: 1;
    }

    #unmute-text img {
      width: 30px;
    }

    /*-- menu css --*/
    .bg-body-tertiary {
      padding: 2rem 1rem;
      background: #000000 !important;
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      font-size: 18px;
      font-weight: 400;
      text-transform: uppercase;
      padding: 0px 24px !important;
    }

    .navbar-nav .nav-link:hover {
      text-decoration: underline;
    }

    .menu-bar {
      width: 30px;
      height: 2px;
      background-color: #ffffff;
      margin: 6px 0;
    }

    /*-- price css --*/
    .pricing-wraper h1 {
      margin-bottom: 10px;
    }

    .pricing-wraper p.subtitle {
      color: #666;
      margin-bottom: 40px;
    }

    .pricing-wraper .pricing {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .pricing-wraper .card {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      width: 300px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
    }

    .pricing-wraper .card:hover {
      transform: translateY(-5px);
    }

    .pricing-wraper .card h2 {
      margin-bottom: 10px;
    }

    .pricing-wraper .price {
      font-size: 32px;
      color: #007BFF;
      margin: 15px 0;
    }

    .pricing-wraper ul {
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .pricing-wraper ul li {
      margin: 10px 0;
    }

    .pricing-wraper .featured {
      border: 2px solid #f9d64f;
    }

    .contact-form-section {
      padding: 3.75rem 1.25rem;
    }

    @media (max-width: 768px) {
      .pricing-wraper .pricing {
        flex-direction: column;
        align-items: center;
      }

      .navbar-nav .nav-link {
        padding: 0px 10px !important;
      }


      .bottle-section {
        padding: 20px;
      }

      .headline-section {
        padding: 20px;
        margin: 0;
      }

      .social-icons-container {
        padding: 20px;
      }




    }

    .send-button-wrapper.white::before,
    .send-button-wrapper.white::after {
      background-color: #ffffff;
    }
    
    @media (max-width: 480px) {
.social-icon {
    padding: 0.525rem;
    width: 2.5rem;
    height: 2.5rem;
}
 
.social-icons-container {
    gap: 0.2rem;
}
 
}