:root {
  --primary-bg: #405c47;
  --accent-color: #d7812c;
  --text-white: #ffffff;
  --dark: #1d1d1d;
  --light: #f7f7f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-white);
  height: 100vh;
}

main {
  overflow: hidden;
}

/* ========= utility classes start ===========  */

.title {
  font-size: 3.2rem;
  font-weight: 700;
}

.discription {
  font-size: 1.2rem;
  line-height: 1.3;
}

@media only screen and (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .discription {
    font-size: 1rem;
  }
}

/* ========= utility classes end ===========  */
header {
  position: relative;
  z-index: 999;
}
header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

.header-wrapper.border-none {
  border-bottom: none;
}

.header .header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  column-gap: 40px;
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--accent-color);
  position: relative;
  left: 1rem;
}

.logo {
  font-weight: lighter;
  line-height: 1.2;
}

.nav {
  display: flex;
  column-gap: 5rem;
}

.nav a {
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--accent-color);
}

.nav a:hover::after {
  width: 100%;
}

.auth a {
  margin-left: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
}

/* .auth a.login {
  color: var(--text-white);
} */

.auth a.login {
  color: var(--text-white);
  position: relative;
  transition: color 0.3s ease;
}

.auth a.login::after {
  content: "";
  position: absolute;
  bottom: -0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.auth a.login:hover {
  color: var(--accent-color);
}

.auth a.login:hover::after {
  width: 100%;
}

/* .auth a.signup {
  background: var(--accent-color);
  color: var(--text-white);
  display: inline-block;
  padding: 0.5rem 2rem;
} */

.auth a.signup {
  background: var(--accent-color);
  color: var(--text-white);
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.auth a.signup:hover {
  background: #e8923f;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  header .header-wrapper {
    padding: 1.1rem 0;
  }

  .header .header-right {
    column-gap: 30px;
  }

  .logo img {
    width: 100px;
  }
}

/* Mobile menu styles */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: right 0.5s ease;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    /* margin: 1rem 0; */
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .auth-mobile {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }

  .auth-mobile a {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
  }

  .auth-mobile .login {
    color: var(--text-white);
    border: 1px solid var(--text-white);
  }

  .auth-mobile .signup {
    background: var(--accent-color);
    color: var(--text-white);
  }

  .auth-desktop {
    display: none;
  }

  .divider {
    display: none;
  }
}

/* Desktop styles */
@media (min-width: 993px) {
  .auth-mobile {
    display: none;
  }

  .auth-desktop {
    display: block;
  }
}

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
}
/* =================== hero section start =================  */

.hero-section .hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-section .order-btn {
  background-color: var(--accent-color);
  border: none;
  padding: 0.3rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  display: flex;
  column-gap: 10px;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
}

.hero-section .order-btn i {
  font-size: 24px;
}

.hero-section .app-btn {
  background-color: rgba(28, 28, 28, 0.5);
  border: none;
  padding: 0.3rem 1.5rem;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  column-gap: 8px;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
}

.hero-section .order-btn,
.hero-section .app-btn {
  transition: all 0.3s ease;
}

.hero-section .order-btn:hover {
  background-color: #e8923f;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-section .app-btn:hover {
  background-color: rgba(28, 28, 28, 0.8);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-image {
  position: relative;
  top: 70px;
  z-index: 3;
}

.hero-image img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .hero-section ul li i img {
    width: 30px;
  }
  .hero-section .hero-buttons {
    gap: 1rem;
  }

  .hero-section .order-btn {
    padding: 0.3rem 1rem;
  }

  .hero-section .order-btn i {
    font-size: 18px;
  }

  .hero-section .app-btn {
    padding: 0.2rem 1rem;
  }

  .hero-section .hero-image {
    position: relative;
    top: 0;
    z-index: 3;
  }

  .hero-image img {
    width: 100%;
  }
}

/* =================== hero section end =================  */

/* ==================== features section Start  ========================== */

.features-section {
  background: var(--light);
  color: var(--dark);
  position: relative;
}

.features-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 32%;
  height: 100%;
  background-color: #6e8373;
  z-index: 0;
}

.features-section .single-feature {
  display: flex;
  column-gap: 16px;
  align-items: center;
  text-align: left;
color: var(--dark);
     text-decoration: none;
}

.features-section .single-feature:hover{
	color: var(--accent-color);
}

.features-section .single-feature i {
  flex-shrink: 0;
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-section .single-feature i img {
  border-radius: 10px;
}

ul li a{
  color: #ffffff;
}
/* .learn-more-btn {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.learn-more-btn i {
  margin-left: 1rem;
  font-size: 1.5rem;
} */

.learn-more-btn {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 0;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.learn-more-btn:hover {
  color: var(--accent-color);
}

.learn-more-btn i {
  margin-left: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(5px);
}

@media only screen and (max-width: 992px) {
  .features-section::after {
    width: 28%;
  }
}

@media only screen and (max-width: 768px) {
  .features-section {
    position: relative;
    margin-top: -52px;
  }
  .features-section::after {
    content: "";
    background-color: #6e8373;
    display: none;
  }

  .features-section .single-feature i {
    width: 50px;
    height: 50px;
  }


  .learn-more-btn {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: var(--text-white);
    text-decoration: none;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #6e8373;
    padding: 1rem;
  }

  .learn-more-btn i {
    margin-left: 1rem;
    font-size: 1.5rem;
  }
}

/* ==================== features section end  ========================== */

/* ==================== shop page start ========================== */

.shop-section {
  background-color: var(--primary-bg);
}

.shop-section h1.title {
  font-style: italic;
}

.shop-section .discription {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.product-wrapper {
  /* border-top: 2px solid #000000; */
  padding-top: 1rem;
  margin-top: 2rem;
  position: relative;
}

.product-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2%;
  width: 96%;
  border-top: 2px solid #000000;
}

.product-wrapper .single-product {
  background: #ffffff;
  padding: 16px;
}

.product-wrapper .single-product .product-img img {
  width: 100%;
}

.product-wrapper .single-product .product-details {
  margin-top: 16px;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}

.product-wrapper .single-product .product-details h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
}

.product-wrapper .single-product .product-details p {
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 8px;
}

/* .product-wrapper .single-product .product-details button {
  padding: 0.5rem 2rem;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  border: none;
  width: max-content;
  margin: 0 auto;
  background: #dfdbdb;
} */

.product-wrapper .single-product .product-details button,
.product-wrapper .single-product .product-details a {
  padding: 0.5rem 2rem;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
  border: none;
  width: max-content;
  margin: 0 auto;
  background: #dfdbdb;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-wrapper .single-product .product-details a:hover{
	background: var(--accent-color);
}

.product-wrapper .single-product .product-details button:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .header-wrapper.border-none {
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  }

  .product-wrapper .single-product .product-details {
    margin-top: 16px;
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 0.3rem;
  }

  .product-wrapper .single-product .product-details h4 {
    font-size: 22px;
  }

  .product-wrapper .single-product .product-details p {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .product-wrapper .single-product .product-details button {
    padding: 0.4rem 1.5rem;
    font-size: 16px;
  }
}
/* ==================== shop page End ========================== */

/* ==================== Contact page start ========================== */
.contact-section {
  background-color: var(--primary-bg);
}

.contact-section .contact-left .contact-details {
  padding-right: 2rem;
}

.contact-section .contact-left .mail-address {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
}

.contact-section .form-control {
  border: none;
  border-radius: 0;
  height: 55px;
  padding: 15px;
}

.contact-section .form-control::placeholder {
  font-weight: bold;
  color: #000;
  opacity: 1; /* Make sure it's not faded */
  text-transform: uppercase;
}

.contact-section textarea.form-control {
  height: 200px;
  resize: none;
}
/* .contact-section .submit-btn {
  background-color: #fff;
  color: #b05e1d;
  font-weight: bold;
  border-radius: 25px;
  padding: 9.5px 70px;
  border: none;
  transition: 0.3s ease;
  width: max-content;
  margin-left: auto;
} */

.contact-section .submit-btn {
  background-color: #fff;
  color: #b05e1d;
  font-weight: bold;
  border-radius: 25px;
  padding: 9.5px 70px;
  border: none;
  transition: all 0.3s ease;
  width: max-content;
  margin-left: auto;
  cursor: pointer;
  float: right;
}

.contact-section .submit-btn:hover {
  background-color: #b05e1d;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-section .contact-box {
  padding-right: 40px;
}

@media only screen and (max-width: 768px) {
  .header-wrapper.border-none {
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  }

  .contact-section .contact-left .contact-details {
    padding-right: 0;
  }

  .contact-section .contact-left .mail-address {
    font-size: 18px;
  }

  .contact-section .form-control {
    height: 40px;
    padding: 15px;
  }

  .contact-section .form-control::placeholder {
    font-size: 1rem;
  }

  .contact-section textarea.form-control {
    height: 120px;
  }
  .contact-section .submit-btn {
    padding: 9px 45px;
  }
}
/* ==================== Contact page End ========================== */

/* ==================== About page Start ========================== */
.about-section {
  background-color: var(--primary-bg);
}

.about-section .ceo-img {
  max-width: 100%;
  height: auto;
}

.about-section .ceo-content {
  padding-left: 2rem;
}

.about-section .ceo-title {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.about-section .ceo-name {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-section .ceo-highlight {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-section .ceo-description {
  color: #f0f0f0;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.about-section .btn-wrapper {
  text-align: right;
}

/* .about-section .read-more-btn {
  background-color: #fff;
  color: #b05e1d;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 25px;
  border: none;
  transition: 0.3s ease;
} */

.about-section .read-more-btn {
  background-color: #fff;
  color: #b05e1d;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 25px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-section .read-more-btn:hover {
  background-color: #b05e1d;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .header-wrapper.border-none {
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  }

  .about-section .ceo-content {
    padding-left: 0;
  }

  .about-section .ceo-title {
    font-size: 1.3rem;
  }

  .about-section .ceo-name {
    font-size: 2rem;
  }

  .about-section .ceo-highlight {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .about-section .ceo-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  .about-section .btn-wrapper {
    text-align: center;
  }

  .about-section .read-more-btn {
    padding: 10px 25px;
  }
}

/* ==================== About page End ========================== */
