:root {
  --default-font: "DM Sans", sans-serif;
  --heading-font: "Black Han Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #221400;
  --background-color-secondary: #B58A4D;
  --bg-color: #ffffff;
  --color-primary: #221400;
  --color-secondary: #ffffff;
  --font-color: #333333;
  --icon-color: #B58A4D;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #333333;
  --nav-hover-color: #B58A4D;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #333333;
  --nav-dropdown-hover-color: #B58A4D;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.bg-cream{
  background-color: #F4EADE;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--font-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px;
  background-color: var(--bg-color);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
  width: 100%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--default-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .menu-item-has-children ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .menu-item-has-children ul li {
    min-width: 200px;
  }

  .navmenu .menu-item-has-children ul a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .menu-item-has-children ul a i {
    font-size: 12px;
  }

  .navmenu .menu-item-has-children ul a:hover,
  .navmenu .menu-item-has-children ul .active:hover,
  .navmenu .menu-item-has-children ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .menu-item-has-children .menu-item-has-children ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .menu-item-has-children .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
.mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  display: none !important;
  transition: color 0.3s;
}

.mobile-nav-active #navmenu .menu-item-has-children.active-new .depth_0 {
  display: block;
  visibility: visible;
  opacity: 1;
  padding-left: 20px;
  box-shadow: unset;
}

.mobile-nav-active #navmenu .menu-item-has-children.active-new-second .depth_1 {
  display: block;
  visibility: visible;
  opacity: 1;
  padding-left: 20px;
  box-shadow: unset;
}

@media (max-width: 1199px) {

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: flex;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .menu-item-has-children ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .menu-item-has-children ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .menu-item-has-children>.menu-item-has-children-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--contrast-color);
  padding-bottom: 15px;
  font-family: var(--default-font);
}

.footer .footer-top {
  padding: 50px 0;
}

.footer-content p {
  font-size: 17px;
  font-weight: 400;
}

.footer-about .social-links a {
  padding: 0 5px;
  color: var(--icon-color);
}

.footer-about .social-links a:first-child {
  padding-left: 0;
}

.footer-about .social-links a i {
  background-color: var(--bg-color);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 19px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--color-secondary);
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}

.footer-contact-details {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.footer-contact-details .icon-box i {
  background-color: var(--bg-color);
  width: 38px;
  height: 38px;
  color: var(--background-color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  font-size: 19px;
}

.footer-contact-details p {
  font-size: 17px;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: none;
  background-color: var(--background-color-secondary);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--background-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--background-color);
  color: var(--color-secondary);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global CSS
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.title {
  font-size: 58px;
  color: var(--color-primary);
  font-family: var(--heading-font);
}

.section-title p {
  color: #2C2C2C;
  font-size: 18px;
}

img {
  max-width: 100%;
}

.button-bg {
  background: linear-gradient(280.27deg, #B58A4D 67.45%, #643B00 98.13%);
  display: unset;
  padding: 10px 18px;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/

/* Start Hero Section */

.hero-slide-single {
    position: relative;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
}

.hero-slide-content a {
    display: block;
    width: 100%;
}

.hero-slide-content p {
    font-size: 20px;
    color: var(--font-color);
}

/* End Hero Section */

/* Start Home About Section */

.home-about-image {
    position: relative;
}

.home-about-element.img-fluid {
    position: absolute;
    right: -30px;
    bottom: -70px;
    z-index: -1;
}

.home-about-image>img {
    border-radius: 60px;
}

/* End Home About Section */

/* Start Product Benefits Section */

#product_benefits {
    background: linear-gradient(180deg, #FFE5C6 0%, #F4EADE 100%);
    padding-bottom: 0;
}

.product-benefits-content {
    position: relative;
}

.product-benefits-button {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* End Product Benefits Section */

/* Start Customer Review Section */

.customer-reivew-single {
    border: 1px solid rgba(244, 234, 222, 1);
    box-shadow: 0px 2px 14px 0px rgba(139, 139, 139, 0.08);
    border-radius: 22px;
    padding: 20px;
    margin: 50px 20px 0 0;
}

.quote-image {
    width: 54px;
    height: 54px;
    background-color: rgba(181, 138, 77, 1);
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    margin-bottom: 10px;
}

.quote-image img {
    width: 24px;
    height: 24px;
}

.star-rating {
    margin-bottom: 10px;
}

.customer-reivew-single p {
    font-size: 20px;
    color: #797979;
}

.reviewe-name {
    font-size: 20px;
    font-weight: 600;
}

/* End Customer Review Section */

/* Start CTA Section */

.CTA-bg {
    background-image: url(../imgs/CTA.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 30px;
    height: 300px;
}

/* End CTA Section */

/* Start FAQ Section */

#FAQ {
    background-image: url(../imgs/FAQ.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.FAQ .accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 220, 194, 1);
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
}

.FAQ .accordion-button {
    background-color: unset !important;
    box-shadow: unset !important;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--default-font);
    color: var(--font-color);
}

.FAQ .accordion-body {
    padding-top: 0;
}

.FAQ .accordion-button:not(.collapsed)::after {
    background-image: url(../imgs/minus.png);
}

.FAQ .accordion-button::after {
    background-image: url(../imgs/plus.png);
}

/* End FAQ Section */


/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/

#hero_section {
    padding: 0;
}

.hero_section_main {
    position: relative;
}

.hero_section_content {
    position: absolute;
    top: 0;
    left: 7%;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our_process_Box {
    background: linear-gradient(326.05deg, #FFF2D9 3.78%, rgba(255, 255, 255, 0.6) 38.33%);
    padding: 30px 50px;
    border: 2px solid #fff;
    border-radius: 20px;
}

.our_promise_content .sub-title {
    font-size: 24px;
    font-weight: bold;
    color: #C05F18;
}

/*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

.page-template-product .hero_section_content {
    text-align: center;
    left: 0;
}

.product-box img {
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Product Single Page
--------------------------------------------------------------*/

.product-img img {
    border-radius: 50px;
}

.product-option p {
    font-size: 24px;
    font-weight: bold;
}

.product-option button {
    background-color: #221400;
    color: #fff;
    border: none;
    padding: 10px 50px;
    border-radius: 10px;
}

.product-benefits p {
    font-size: 24px;
    font-weight: bold;
}

.product-benefits ul {
    list-style: none;
}

.product-benefits ul li{
    position: relative;
    margin-bottom: 15px;
}

.product-benefits ul li:before {
    content: "";
    background-image: url('../imgs/tick mark.png');
    background-repeat: no-repeat;
    background-size: 15px;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: -3%;
    top: 10%;
}

.product-content-main{
  border-bottom: 1px solid #CBCBCB;
}

.size-btn.active {
    background-color: #B58A4D;
    color: #fff;
}

#mainProductImage {
    transition: opacity 0.3s ease-in-out;
}

#mainProductImage.fade-out {
    opacity: 0;
}

#mainProductImage.fade-in {
    opacity: 1;
}

.enquiry-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.address-title-icon img {
    width: 50px;
}

.address-title-icon p {
    font-size: 24px;
    font-weight: bold;
}

.address-content a {
    color: #000;
}

.submit-btn {
    background-color: #B58A4D;
    border: none;
    color: #fff;
    padding: 10px 50px;
    border-radius: 10px;
}