:root {
  --primary-color: #d49781;
  --secondary-color: #ed9421;
  --white-color: #fff;
  --black-color: #000;
  --text-color: #333;
  --border-color: #ddd;
  --btn-background-color: linear-gradient(
    96.55deg,
    #d49781 12.14%,
    #e9bc98 105.25%
  );
}

html,
body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
body {
  font-family: "Montserrat", sans-serif !important;
  background-color: var(--white-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
p {
  font-family: "Montserrat", sans-serif;
}
span {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

#header .navbar-brand {
  font-size: 26px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#header .navbar-brand:hover {
  transform: scale(1.1);
}

#header .navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

#header .navbar-nav .nav-link:hover {
  opacity: 0.7;
}

.banner {
  padding: 30px;
  background-color: #d49781;
}
.social-media a {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media a:hover {
  background-color: rgba(249, 200, 70, 0.9);
}

.introduce p {
  font-size: 15px;
}

.introduce a {
  border-bottom: 1px solid #dd9933;
}

/* Newsletter Section */
.newsletter {
  background-color: #d49781;
  padding: 30px;
}

.newsletter-title {
  font-size: 22px;
  font-weight: 600;
}

.newsletter-divider {
  width: 40%;
  border-top: 1px solid var(--black-color);
}

.newsletter-description {
  font-size: 1rem;
}

.newsletter-card {
  width: 70%;
  border: 1px solid var(--black-color);
}

.newsletter-card .card-text {
  font-size: 1rem;
  color: #7a7a7a;
}

.newsletter-btn {
  background: var(--black-color);
  color: var(--white-color);
}

.newsletter-btn:hover,
.newsletter-btn:focus {
  background: var(--black-color);
  color: var(--white-color);
}
/* Blog */

/* Responsive */
@media (max-width: 768px) {
  .offcanvas .nav-link {
    font-size: 12px !important;
    padding: 0 15px;
  }
  .offcanvas .sub-menu {
    background-color: #f4f4f4;
    padding: 10px 0;
  }
  .offcanvas .sub-menu .nav-link {
    padding: 10px 15px;
  }
  .offcanvas .nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
  }
  .offcanvas .nav-link[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
  }
  .newsletter-card {
    width: 100%;
    margin: 1rem;
  }
}

/* Header Desktop Layout */
.header-menu-left,
.header-menu-right {
  min-width: 0;
}
.header-menu-left {
  justify-content: flex-end;
  flex: 1;
}
.header-menu-right {
  justify-content: flex-start;
  flex: 1;
}
.header-logo {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-logo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #000;
  border: 4px double #fff;
  border-width: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  position: relative;
  box-shadow: 0 0 0 2px #000, 0 0 0 6px #fff;
}
.header-logo-circle .logo-top {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 400;
}
.header-logo-circle .logo-main {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 4px 0;
}
.header-logo-circle .logo-bottom {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 400;
}
.d-lg-flex.header-divider {
  border-top: 1px solid #222;
  flex: 1;
  height: 0;
  margin: 0 16px;
  align-self: center;
}
@media (max-width: 991.98px) {
  .header-logo,
  .header-menu-left,
  .header-menu-right {
    display: none !important;
  }
}
