@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

@font-face {
  font-family: 'metropolis1920';
  src: url('../font/metropolis1920.otf') format('truetype');
}

:root {
  --clr-white: #fff;
  --clr-light: #d9d9d9;
  --clr-dark: #0E110D;
  --clr-darkLight: #1F2120;
  --clr-primary: #C9AB81;
}

.bg-darkLight {
  background-color: var(--clr-darkLight);
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  background-color: var(--clr-dark);
  color: var(--clr-light);
  /* cursor: none; */
}

.custom-cursor {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: background 0.2s, mix-blend-mode 0.2s;
}

.letter-span {
  display: inline-block;
  transition: color 0.2s;
}

p {
  color: var(--clr-light);
  font-size: 16px;
  margin: 0 0 20px;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

/* Button */

.ThemeBtn {
  border: 0;
  padding: 5px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 4px;
  background: var(--clr-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-white);
  transition: all 0.5s linear;
  outline: none;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;

}

.ThemeBtn:hover {
  color: var(--clr-white);
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  background-color: var(--clr-dark);
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.sticky-header {
  background: var(--clr-dark);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  padding: 0;
}

.sticky-header.show-nav .navbar-nav .nav-link,
.sticky-header.hide-nav .navbar-nav .nav-link {
  color: #fff;
}

header .navbar {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
  min-height: 90px;
  background: var(--clr-darkLight);
}

.sticky-header .navbar {
  padding: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.navbar-brand {
  display: flex;
  padding: 0;
  margin: 0;
}

.navbar-brand .brandLogo {
  width: 150px;
  min-width: 150px;
}

.navigation-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.navbar-nav {
  gap: 30px;
}

.navbar-nav .nav-link {
  padding: 5px 0 !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-light);
  position: relative;
  text-transform: uppercase;
}

.product-header .navbar-nav .nav-link {
  color: var(--clr-dark);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-primary);
}

.navbar-nav .nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  border-top: 1px solid #c9ab81;
  transform: scale(0, 1);
  transform-origin: 0 50%;
  transition: transform .4s cubic-bezier(.48, .57, .33, .89) .1s, -webkit-transform .4s cubic-bezier(.48, .57, .33, .89) .1s;
}

.navbar-nav .nav-link::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  border-top: 1px solid #c9ab81;
  transform: scale(0, 1);
  transform-origin: 0 50%;
  transition: transform .4s cubic-bezier(.48, .57, .33, .89), -webkit-transform .4s cubic-bezier(.48, .57, .33, .89);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link.active::before {
  transform: scale(1, 1);
}

.ourLocation {
  min-width: 150px;
  display: flex;
  justify-content: flex-end;
}

.SideToggle {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: rgb(201 171 129 / 10%);
}

.SideToggle i {
  font-size: 18px;
  color: var(--clr-primary);
}

/* header end */

.custom-space {
  padding: 80px 0;
}

.sectionInfo h2 {
  font-size: 40px;
  margin: 0 0 30px;
  color: var(--clr-primary);
  text-transform: capitalize;
}

.sectionInfo h6 {
  font-size: 18px;
  margin: 0 0 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.sectionInfo .subInfo {
  margin: 0 0 30px;
}

.imgHover {
  overflow: hidden;
  position: relative;
}

.imgHover:after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.imgHover:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}


/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -70px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--clr-primary);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
  animation: pulse-animation 2s infinite;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

/* scroll top */

footer {
  padding: 15px;
  text-align: center;
  background: var(--clr-dark);
}

footer p {
  margin: 0;
  font-size: 14px;
}

/* sidebar location */

.sidebarLocation {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--clr-darkLight);
  transition: 0.5s;
  padding: 40px;
  z-index: 999;
  box-shadow: -5px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebarLocation.show {
  right: 0;
}

.sidebarLocation .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebarLocation .close-btn span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--clr-primary);
  transition: all 0.3s ease-in-out;
}

.sidebarLocation .close-btn span:first-child {
  transform: translate(0px, 0px) rotate(45deg);
}

.sidebarLocation .close-btn span:last-child {
  transform: translate(0px, -6px) rotate(-45deg);
}

.sidebar-content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sidebar-content .sideLogo {
  width: 200px;
}

.sidebar-content .location-info {
  text-align: center;
}

.sidebar-content .location-info h6 {
  margin: 0 0 15px;
}

.sidebar-content .openingHours-info {
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.sidebar-content .openingHours-info h6 {
  font-size: 18px;
  text-transform: uppercase;
}

.sidebar-content .openingHours-info .timeBox h6 {
  font-size: 16px;
  text-transform: capitalize;
}

/* custom image modal */

#imageModal {
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(0 0 0 / 90%);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.imgModal-content {
  width: 100%;
  max-width: 700px;
  position: relative;
  height: 80vh;
}

.imgModal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 5px 100px #444);
}

.closeImgmodal {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  color: var(--clr-primary);
}

/* keyframe */

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(201, 171, 129, 0.3);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(201, 171, 129, 0);
  }
}

.shrink {
  animation: shrink 2s infinite;
}

@keyframes shrink {
  0% {
    background-size: 120% 120%;
  }

  100% {
    background-size: 100% 100%;
  }
}

.drift {
  animation: drift 2s linear infinite alternate forwards;
}

@keyframes drift {
  from {
    border-radius: 100px 100px 0px 100px;
  }

  to {
    border-radius: 0px 100px 100px 100px;
  }
}

.blink {
  animation: blink 2s infinite alternate;
}

@keyframes blink {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.7);
  }
}

.loading {
  animation: loading 2s linear infinite alternate forwards;
}

@keyframes loading {
  0% {
    left: -100%;
    right: 100%;
  }

  50% {
    left: 50%;
    right: 40%;
  }

  100% {
    left: 100%;
    right: -100%;
  }
}

/* keyframe end */