/*
Theme Name: Hello Elementor Child
Theme URI: https://viadist.codersh.com/
Description: Child theme for Hello Elementor
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add your custom CSS below this line */

body.menu-open {
  overflow: hidden;
}
/* ================= HEADER ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #f3f3f3;
  z-index: 1000;
}

.nav-container {
  max-width: 1650px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
/* Logo */

.des-nav-links {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.logo {
  font-size: 30px;
  font-weight: 600;
}

.logo span {
  color: #b88a44;
}
/* Desktop Menu */

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.desktop-menu li {
  list-style: none;
  position: relative;
}

.desktop-menu a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
/* Desktop Dropdown */

.desktop-menu li ul {
  position: absolute;
  top: 80%;
  margin-top: 24px;
  left: 0;
  background: #fff;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.desktop-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-menu li ul li {
  padding: 8px 20px;
  white-space: nowrap;
}
/* Button */

.header-btn a {
  background: #a67c3d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
/* Hamburger */

.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #000;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* ================= MOBILE ================= */

.mobile-menu {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: #efefef;
  transform: translateY(100%);
  transition: 0.4s;
  z-index: 999;
  overflow: hidden;
}

.mobile-menu.active {
  transform: translateY(0);
}

.panel {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding: 0 30px;
  transition: 0.4s;
}

.panel ul {
  list-style: none;
  text-align: center;
}

.panel li {
  font-size: 26px;
  margin: 18px 0;
  cursor: pointer;
}

.arrow {
  font-size: 18px;
  margin-left: 6px;
}

.panel.sub {
  left: 100%;
}

.panel.active {
  left: 0;
}

.panel.slide-left {
  left: -100%;
}

.back {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  color: #777;
  cursor: pointer;
  text-align: center;
}

.mobile-footer {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.mobile-footer button {
  width: 100%;
  padding: 14px;
  background: #a67c3d;
  color: #fff;
  border: none;
  border-radius: 6px;
}
/* Responsive */

@media (max-width: 991px) {
  .desktop-menu,
  .header-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

.content {
  padding-top: 120px;
  height: 200vh;
}
