:root {
  --primary-color: #c78e3d;
  --font-style: "Playfair Display", serif;
}
/*  on hover dropdown */
.dropdown {
  position: relative;
  /* border: 1px solid black; */
}
.dropdown:hover .dropdown-menu {
  display: block;
  border: none;
  /* background: transparent; */
  transition: all 2s ease;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
    rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
    rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
    rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.dropdown button {
  border: 1px solid black;
  border: none !important;
  outline: none !important;
  height: 126px !important;
  color: var(--primary-color);
  font-size: 20px;
}
.dropdown-menu .dropdown-item {
  margin: 12px 0;
  background: transparent !important;
  /* border: 1px solid var(--primary-color); */
}
.dropdown-menu .dropdown-item.active {
  background-color: transparent;
}

/* on hover dropdown */
body {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
  overflow-x: hidden;
}
#navBarContainer {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  z-index: 999;
}
#navBarContainer img {
  width: 184px;
  height: 72px;
}
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 162px;
  /* border: 1px solid black; */
  box-shadow: none;
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: background-color 2s ease, box-shadow 2s ease;
  background-color: transparent;
}
.navigation {
  width: 70%;
  display: flex;
  /* border: 1px solid black; */
  justify-content: space-between;
  align-items: center;
}
.dropDownLinks {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 20px;
}
.dropDownLinks:hover {
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}
.dropDownLinks.active {
  font-weight: bold;
  color: var(--primary-color);
}
.navLinks {
  position: relative;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 0 10px;
}
.navLinks:after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  height: 2px;
  width: 0;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}
.btn.navLinks::after {
  bottom: 45px;
}
.navLinks:hover {
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}
.navLinks:hover:after {
  width: 100%;
}
.navLinks.active {
  font-weight: bold;
  color: var(--primary-color) !important;
}
/* CSS */
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.navBtn {
  appearance: none;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  box-sizing: border-box;
  color: var(--primary-color);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  /* width: 100%; */
  will-change: transform;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.navBtn:disabled {
  pointer-events: none;
}

.navBtn:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.navBtn:active {
  box-shadow: none;
  transform: translateY(0);
}
.navBtn::before {
  background: var(--primary-color);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}
.navBtn::before {
  width: 100%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.navBtn:hover::before {
  height: 380%;
}

/* Mobile */

.navBarMobile {
  display: none;
  /* border: 1px solid black; */
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: background-color 0.5s ease;
  background-color: transparent;
}
.navigationMobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.bg-light {
  background-color: transparent !important;
}
.container-fluid {
  padding: 4px 16px;
}
.hamburger {
  border: none !important;
  padding: 0 !important;
  background-color: transparent !important;
}
.hamburger:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
.navBtn.hamburger::before {
  background: transparent;
}
/* modal style */
.contactFormModal {
  width: fit-content;
  max-width: 100vw;
  height: fit-content;
  max-height: 100vh;
  margin: 40px auto;
}
.modal-backdrop {
  background-color: gray !important;
  backdrop-filter: blur(5px) !important;
  opacity: 0.8 !important;
}

.contactFormModalContent {
  width: 1000px;
  height: 100%;
  background-image: url("../images/backgrounds/redFrame.png");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px !important;
  position: relative;
  padding: 20px 0;
}

.contactFormModalHeader {
  padding: 0 1rem;
  border: none !important;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.contactFormModalBody {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* modal style */

/* contact form */
.navSection4 {
  width: 100%;
  position: relative;
  /* border: 1px solid black; */
}
.navSection4Container {
  border-radius: 0 0 8px 8px;
  width: 100%;
  margin: auto;
}
.navSection4Heading {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-weight: 400;
  align-items: center;
  gap: 8px;
}
.navSection4Heading h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
.navSection4Container h2 {
  width: 70%;
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  text-align: center;
  margin: 20px auto 80px;
  color: white;
}
.navformData {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: auto;
  gap: 20px;
  /* border: 1px solid black; */
}
.navformData div {
  display: flex;
  gap: 16px;
}
.navformData input,
.navformData textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  border: none;
  outline: none;
  color: #c78e3d;
}
.navformData input::placeholder,
.navformData textarea::placeholder {
  color: var(--primary-color);
}
.navformData button {
  margin: auto;
  border: none;
  background-color: #fff8f0;
  padding: 14px 16px;
  width: 50%;
  font-size: 16px;
  margin-top: 20px;
}
/* contact form */

/* Media Queries */
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------- */
@media all and (min-width: 993px) and (max-width: 1400px) {
  .navBar {
    padding: 0px 64px;
  }
  #navBarContainer img {
    width: 160px;
    height: 72px;
  }
  .navigation {
    width: 85%;
  }

  /* Mobile */
  /* contact form */
  .contactFormModalContent {
    width: 900px;
  }
  .navSection4Container h2 {
    margin: 20px auto 60px;
  }
  /* contact form */
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------- */
@media all and (min-width: 481px) and (max-width: 992px) {
  .navBar {
    display: none;
  }
  /* Mobile */
  .navBarMobile {
    display: block;
    /* border: 1px solid black; */
    padding: 0 24px;
  }

  /* contact form */
  .contactFormModalContent {
    width: 95%;
    margin: auto;
  }
  .navformData {
    width: 90%;
  }
  .navformData div {
    flex-direction: column;
    gap: 20px;
  }
  .navformData input,
  .navformData textarea {
    width: 100%;
  }
  .navformData button {
    width: 70%;
  }
  .navSection4Container h2 {
    margin: 20px auto 40px;
  }
  /* contact form */
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------------------- */
@media all and (max-width: 480px) {
  .navBar {
    display: none;
  }
  /* Mobile */
  .navBarMobile {
    display: block;
    padding: 0 4px;
  }
  /* contact form */
  .contactFormModalContent {
    width: 95%;
    margin: auto;
  }
  .navformData {
    width: 90%;
  }
  .navformData div {
    flex-direction: column;
    gap: 20px;
  }
  .navformData input,
  .navformData textarea {
    width: 100%;
  }
  .navformData button {
    width: 80%;
  }
  .navSection4Container h2 {
    font-size: 32px;
    line-height: 36px;
    margin: 20px auto 20px;
  }
  /* contact form */
}
