--root {
  --text-dark-color: #484848;
  --button-light: #A28B68;
  --button-dark: #8D8980;
}

/* Fix container widths and box-sizing globally */
*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #2c2c2c;
   /*box-sizing: border-box; */
   overflow-x: hidden; /* Prevents horizontal scroll bars */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.main-header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 20px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #2c2c2c;
}

/* Nav Desktop */
.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

/* Button */
.contact-btn {
  background-color: #a78b6e;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  text-align: left;
  padding: 100px 20px;
  color: var(--text-dark-color);
  /* background-color: #333; */
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.hero .btn {
  background: #f6c90e;
  color: #000000;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  /* border-radius: 5px; */
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #e6b800;
}

footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.95em;
}

/* New Sections */
.delight {
  background: url('../images/white-bg.png') center/cover no-repeat;
  padding: 80px 20px;
  /* background-color: #ffffff; */
  text-align: center;
}

.delight h2 {
  font-size: 2.4em;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.delight p {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-us {
  background: url('../images/19550670736_cf9d6d4be5_h.jpg') center/cover no-repeat;
  padding: 40px 10px;
  text-align: center;
}

.about-us h2 {
  font-size: 3.7em;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.about-us p {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn.primary {
  background-color: #a78b6e;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  /* border-radius: 5px; */
  font-weight: 600;
  display: inline-block;
}

.btn.primary:hover {
  background-color: #8a7358;
}

.info-block {
  padding: 20px 20px;
  /* background-color: #faf8f3; */
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.info-image {
  background-color: #faf8f3;
}

.info-image img {
  max-width: 100%;
  /* border-radius: 10px; */
  width: 100%;
  max-width: 680px;
}

.info-text {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
}

.info-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2c2c2c;
}

.info-text p {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.product-view {
  padding: 60px 20px;
  background-color: #fff;
}

.five-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-items: center;
}

.product-image {
  padding: 15px;
  transition: transform 0.3s ease;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Sticky Header */
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Product Image Hover */
.info-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}


/* Why Choose Us */
.why-choose {
  /* background: url('../images/brown-mushrooms-2021-08-26-17-24-43-utc.jpg') left 80%/cover no-repeat; */
  padding: 100px 20px;
  background-color: rgba(162, 139, 104, 0.4);
  /* position: relative; */
}

.why-choose .overlay {
  /* background-color: rgba(162, 139, 104, 0.1); dark tint */
  /* z-index: 999; */
}

.why-choose .info-text h2, .why-choose .info-text p {
  color: #484848;
}

.why-choose .two-column {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
  /* align-items: center; */
  /* justify-content: center; */
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  color: #484848;
}

.feature-box {
  width: 260px;
  background: #ffffff;
  padding: 40px 20px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Optional: a subtle hover effect */
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Add a subtle border or accent line at the top */
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #a78b6e;
  border-radius: 2px;
}

/* Optional: styling for feature-box titles */
.feature-box h4 {
  margin-top: 20px;
  font-size: 1.1em;
  color: #333;
  font-weight: 600;
}

/* Optional: styling for feature-box paragraphs */
.feature-box p {
  font-size: 0.95em;
  color: #666;
  margin-top: 10px;
}

.logo-strip {
  padding: 40px 0;
  text-align: center;
}

.logo-strip img {
  max-height: 120px;
  margin: 0 15px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-strip img:hover {
  opacity: 1;
}


/* Product Grid */
.available-products {
  padding: 80px 20px;
  background-color: #fff;
}

.available-products h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.available-products p {
  color: #666;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 10px;
}

.product-card strong {
  display: block;
  font-size: 1.1em;
  margin: 10px 0;
}


/* Contact Page Hero */
.contact-hero {
  background: url('../images/19550670736_cf9d6d4be5_h.jpg') center/cover no-repeat;
  padding: 100px 20px;
  color: #484848;
  background-color: #f7f7f7;
  text-align: center;
}

.contact-hero h2 {
  font-size: 2.5em;
  font-weight: bold;
  color: #484848;
}

.contact-hero p {
  font-size: 1em;
  margin-top: 10px;
  color: #484848;
}

.contact-form {
  padding: 80px 20px;
  background-color: #fff;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.info-form {
  flex: 1;
  min-width: 280px;
  max-width: 550px;
}

.info-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-form input,
.info-form textarea {
  padding: 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  /* border-radius: 6px; */
  width: 100%;
  box-sizing: border-box;
}

.info-form button {
  padding: 15px;
  background: #a78b6e;
  color: #fff;
  border: none;
  font-weight: bold;
  /* border-radius: 6px; */
  cursor: pointer;
  transition: background 0.3s ease;
}

.info-form button:hover {
  background: #8a7358;
}

.info-text {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.info-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.info-text p {
  color: #555;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1em;
  color: #444;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}


.contact-info p {
  font-size: 1em;
  margin: 10px 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}

.close-modal {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.modal-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 18px;
  background-color: #a78b6e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.modal-buttons a:hover {
  background-color: #8a7358;
}

/* Blog Preview */
.blog-preview {
  padding: 80px 20px;
  background: #fff;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.blog-card img {
  width: 380px;
  height: 300px;
  /*object-fit: cover;*/
  /* border-radius: 10px; */
}

.blog-card h3 {
  font-size: 1.1em;
  margin-top: 10px;
}

.blog-card small {
  color: #888;
  display: block;
  margin: 8px 0;
}

.blog-card p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 15px;
}

/* Team Section */
.team {
  padding: 80px 20px;
  background: #fafafa;
}

.team-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.team-card img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-card h4 {
  margin: 10px 0 5px;
}

.team-card p {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 8px;
}

.team-card small {
  color: #555;
  font-size: 0.85em;
}

/* Newsletter */
.newsletter {
  padding: 60px 20px;
  background: #fff;
}

.newsletter .container-text {
  text-align: center;
}

.container-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.newsletter form {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 20px auto;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  font-size: 1em;
  /* border-radius: 5px; */
  border: 1px solid #484848;
}

.newsletter button {
  padding: 12px 30px;
  background: #a78b6e;
  color: #fff;
  border: none;
  /* border-radius: 5px; */
  font-weight: bold;
}

/* Gallery Strip */
.gallery-strip {
  padding: 20px 0;
}

.gallery {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 15px;
}

.gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  /* border-radius: 6px; */
}

/* benefits */
.benefits-section {
  padding: 80px 20px;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.benefit-item p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

.benefits-image img {
  max-width: 460px;
  width: 100%;
  display: block;
  background-color: #f8f6f2;
  padding: 20px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-image {
    order: -1;
    margin-bottom: 40px;
  }
}

/* Footer */
.full-footer {
  background-color: rgba(162, 139, 104, 0.4);
  color: var(--text-dark-color);
  padding: 50px 10px 20px;
  position: relative;
}

/*.overlay {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  mix-blend-mode: multiply;*/
/*}*/

/*.full-footer .overlay {*/
/*  background-color: rgba(162, 139, 104, 0.4);*/
  /* dark tint */
/*}*/

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.footer-grid h4, .footer-grid h3 {
  margin-bottom: 10px;
}

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

.footer-grid ul li {
  margin: 5px 0;
  font-size: 0.95em;
}

.footer-grid p {
  font-size: 0.95em;
  color: #484848;
}

.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #a78b6e;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.social-icons li a:hover {
  background-color: #8a7358;
  cursor: pointer;
}

.copyright {
  font-size: 1.0em;
  color: var(--text-dark-color);
  font-weight: 700;
}

/* Navigation */
.main-header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Cursive', sans-serif;
  font-size: 2em;
  color: #2c2c2c;
  margin: 0;
}

.main-nav {
  flex: 1;
  margin-left: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
}

.contact-btn {
  background: #8a7358;
  padding: 10px 18px;
  /* border-radius: 5px; */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #A28B68;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu a {
  color: #2c2c2c;
  text-decoration: none;
}

.nav-links .mobile-contact a {
  display: none;
}

.testimonials {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
}

.testimonial-card img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  margin-bottom: 5px;
}

.testimonial-card p {
  font-size: 0.9em;
  color: #777;
}

.testimonial-card small {
  font-size: 0.95em;
  color: #444;
  display: block;
  margin-top: 10px;
  font-style: italic;
}

.telegram-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  /*background-color: #484848;*/
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.telegram-float:hover {
  transform: scale(1.1);
}

.telegram-float img {
  width: 80%;
  height: 80%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  left: 20px;
  /*background-color: #484848;  */
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}



/* Responsive Navigation */
@media (max-width: 768px) {
  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* Fullscreen Mobile Navigation */
/* Mobile Nav */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    gap: 20px;
  }

  .nav-links .mobile-contact a {
    background-color: #a78b6e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
  }

  .hamburger {
    display: block;
  }
}

/* Other responsiveness */
@media (max-width: 662px) {
    .logo-strip img {
        max-height: 60px;
    }
    .about-us h2 {
      font-size: 2.5em;
    }
    .product-image img {
      max-width: 200px;
      height: 200px;
    }
    .gallery img {
      width: 200px;
      height: 200px;
    }
}