/* styles.css */
@font-face {
  font-family: domine;
  src: url("../fonts/Domine-Regular.ttf");
}
@font-face {
  font-family: Switzer;
  src: url("../fonts/Switzer-Variable.ttf");
}
body {
  font-family: domine;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* HEADER */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.navbar {
  padding: 40px 0 0 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar-brand {
  margin-right: 2rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-item {
  margin-right: 1.5rem;
}

.navbar-nav .nav-link {
  font-family: Switzer;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding: 0;
}

.navbar-nav .nav-link:hover {
  color: #c69c6d;
}

/* Dropdown Animation */
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: transparent !important;
  transform: translateX(5px);
}

/* Mobile Navbar Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white !important;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    margin: 0;
  }

  .navbar-collapse .nav-link {
    color: #333 !important;
    padding: 0.5rem 1rem;
  }

  .navbar-collapse .dropdown-menu {
    background-color: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: static !important;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .navbar-collapse .dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .navbar-collapse .dropdown-item {
    color: #333;
    padding: 0.5rem 1rem;
  }

  .navbar-collapse .dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
  }

  .navbar-toggler {
    border: 1px solid #fff !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO SLIDER */
.hero {
  position: relative;
  width: 100%;
  /* `  height: 100vh; */
  overflow: hidden;
}

.hero .carousel-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  position: relative;
  z-index: 1;
}
.hero .carousel-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(58, 40, 7, 0.42) 0%, rgba(58, 40, 7, 0) 68.82%);
  z-index: -1;
}

.hero .carousel-caption {
  bottom: 30%;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero .carousel-slide h1 {
  font-weight: 400;
  font-size: 52px;
  font-family: domine;
  margin-top: 20px;
}

.hero .carousel-slide h5 {
  font-family: Switzer;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 100%;
  text-transform: uppercase;
}
.hero-carousel .owl-nav {
  position: absolute;
  left: calc((100% - 1140px) / 2);
  z-index: 1;
  bottom: 30px;
}
.hero-carousel .owl-nav button {
  width: 42px !important;
  height: 42px;
  border-radius: 50%;
  background-color: #f0e7d2 !important;
  opacity: 1 !important;
  font-size: 30px !important;
  color: #361e12 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 0;
}
.hero-carousel .owl-nav button span {
  position: relative;
  top: -4px;
}
.hero-carousel .owl-nav button.owl-next {
  margin-left: 15px;
}
.hero .owl-dots {
  position: absolute;
  bottom: 40px !important;
  right: calc((100% - 1140px) / 2);
  z-index: 1;
}
.hero .owl-dots button {
  height: 12px !important;
  width: 12px !important;
  border-radius: 50% !important;
  background-color: #e6d6a2 !important;
  opacity: 0.6;
  outline: 0;
  margin: 0 2px;
}
.hero .owl-dots button.active {
  opacity: 1 !important;
}
a {
  text-decoration: none !important;
}
.logo {
  width: 120px;
}
.navbar-light .navbar-toggler {
  color: #fff !important;
  border: 1px solid #fff !important;
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}
.shop-now {
  background-color: #b2861e;
  border-radius: 30px;
  padding: 8px 15px;
  font-family: Switzer;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.shop-now:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.shop-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(178, 134, 30, 0.3);
}

.shop-now:hover:before {
  width: 100%;
}

.contact-us {
  background-color: #fff;
  color: #361e12 !important;
  border-radius: 30px;
  padding: 8px 15px;
  font-family: Switzer;
  font-weight: 400;
  font-size: 16px;
  margin-right: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-us:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(54, 30, 18, 0.05);
  transition: all 0.3s ease;
  z-index: -1;
}

.contact-us:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.contact-us:hover:before {
  width: 100%;
}
nav .nav-link {
  font-family: Switzer;
  font-weight: 500;
  font-size: 18px;
}

.products {
  padding: 100px 0;
  /* background-color: #f9f6f2; */
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.products img {
  width: 332px;
  height: 380px;
  /* border-top-left-radius: 200px;
  border-bottom-right-radius: 200px; */
  border-radius: 200px 0 200px 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: all 0.4s ease-in-out;
}
.product:hover img {
  border-radius: 100px 0 100px 0;
}
.sec-header h2 {
  font-family: Domine;
  font-weight: 400;
  font-size: 38px;
  line-height: 132%;
  color: #361e12;
}
.sec-header h6 {
  font-family: Switzer;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 100%;
  text-transform: uppercase;
  color: #b2861e;
}
.sec-header .p {
  font-family: Switzer;
  font-weight: 400;
  font-size: 20px;
  line-height: 152%;
  color: #614e3e;
  margin-bottom: 35px;
}
.product {
  margin: 15px 0;
}
.product h5 {
  font-family: Switzer;
  font-weight: 500;
  font-size: 24px;
  color: #3a220e;
  margin-top: 30px;
}
.product p {
  font-family: Switzer;
  font-weight: 400;
  font-size: 20px;
  color: #614e3e;
}
.product p.text-warning {
  font-family: Switzer;
  font-weight: 500;
  font-size: 20px;
  color: #b2861e !important;
}
.about {
  padding: 70px 0;
  background-image: url(../images/Canvas.jpg);
  background-position: center;
  background-size: cover;
  /* text-align: center; */
}
.about img {
  display: block;
  transition: all 0.4s ease-in-out;
}
.about .ab-img1:hover {
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
.about img,
.ab-img3 {
  max-width: 100%;
  margin-top: 20px;
  width: 100%;
  height: 352px;
  object-fit: cover;
  object-position: center;
  border: 8px solid #ffffff;
}
.about .ab-img1,
.ab-img3 {
  border-top-right-radius: 200px;
  border-bottom-left-radius: 200px;
}
.about .ab-img2 {
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
}
.about .ab-img2:hover {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
footer {
  background-color: #3a220e;
  padding: 70px 0 0 0;
}
.contact-info-ul li {
  position: relative;
  padding-left: 30px;
}
.contact-info-ul li i {
  position: absolute;
  left: 0;
  top: 6px;
}
footer img {
  max-width: 100%;
  width: 140px;
  height: auto;
}
footer h6 {
  font-family: Switzer;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #e2bb92;
  margin-bottom: 16px;
}
footer .social-icons i {
  font-size: 1.2rem;
  margin-right: 10px;
}
footer p {
  font-family: Switzer;
  font-weight: 400;
  font-size: 18px;
  color: #f0e7d2;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin: 5px 0;
  font-family: Switzer;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
footer ul li a {
  font-family: Switzer;
  font-weight: 400;
  /* font-size: 18px; */
  color: #fff;
}
.copyrights {
  padding-top: 70px;
}
.copyrights .container {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #ffffff29;
}
.banner {
  padding-top: 100px;
  min-height: 400px;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(58, 40, 7, 0.42) 0%, rgba(58, 40, 7, 0) 68.82%);
  z-index: -1;
}
.banner h2 {
  font-weight: bold;
  font-size: 50px;
}
/* FAQ Section Styles */
.faqs {
  padding: 90px 0;
}

.faqs .accordion {
  border: none;
}

.faqs .accordion-item {
  border: none;
  margin-bottom: 15px;
  background: transparent;
}

.faqs .accordion-button {
  background-color: #b2861e;
  color: #fff;
  border-radius: 30px !important;
  padding: 15px 20px;
  font-family: Switzer;
  font-weight: 500;
  font-size: 16px;
  box-shadow: none;
}

.faqs .accordion-button:not(.collapsed) {
  background-color: #b2861e;
  color: #fff;
}

.faqs .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faqs .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faqs .accordion-body {
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  font-family: Switzer;
  font-size: 16px;
  color: #614e3e;
  line-height: 1.6;
}

@media (max-width: 1140px) {
  .hero-carousel .owl-nav {
    left: 20px;
  }
  .hero .owl-dots {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .faqs .accordion {
    margin-top: 30px;
  }
  .contact-info-ul li i {
    display: none;
  }
  footer h6 {
    margin-top: 20px;
  }
  .contact-info-ul li {
    padding-left: 0;
  }
  .navbar {
    padding: 10px 0 0 0;
  }
  .hero .carousel-caption h1 {
    font-size: 2.5rem;
  }
  .sec-header h2 {
    font-size: 33px;
  }
  .sec-header h2 br {
    display: none;
  }
  .hero .carousel-caption h5 {
    font-size: 1.2rem;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  footer .container {
    flex-direction: column;
    text-align: center;
  }
  footer > div {
    margin-bottom: 20px;
  }
  .hero .carousel-slide h1 br {
    display: none;
  }
  .hero .carousel-slide h1 {
    font-size: 35px;
  }
  .hero .carousel-slide {
    height: 500px;
  }
  .products {
    padding: 60px 0;
  }
}
