/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f7f1;
  color: #3e3e3e;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #5a3e1b; /* rustic brown */
  transition: color 0.3s ease;
}
a:hover {
  color: #8b5e2c;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #d6cbb8; /* light beige */
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a3610; /* dark brown */
  font-family: 'Georgia', serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  font-weight: 600;
  padding: 8px 10px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-actions a {
  background-color: #5a3e1b;
  color: #fff;
  padding: 7px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-actions a:hover {
  background-color: #8b5e2c;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-form input[type="text"] {
  padding: 6px 8px;
  border: 1px solid #a69e8f;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
  outline: none;
}

.search-form button {
  padding: 7px 10px;
  border: none;
  background-color: #5a3e1b;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-form button:hover {
  background-color: #8b5e2c;
}

/* Hero section */

.btn-primary {
  background-color: green;
  padding: 12px 30px;
  font-weight: 700;
  color: white;
  border-radius: 5px;
  font-size: 1.1rem;
  box-shadow: 0 5px 10px rgba(90, 62, 27, 0.5);
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: green
  box-shadow: 0 6px 15px rgba(139, 94, 44, 0.7);
}

/* Layout for sidebar + main content */
.content-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.sidebar-categories {
  flex: 1;
  background-color: #e6dfce;
  padding: 20px;
  border-radius: 8px;
  font-family: 'Georgia', serif;
}

.sidebar-categories h3 {
  margin-bottom: 15px;
  color: #4a3610;
  font-weight: 700;
  font-size: 1.5rem;
  border-bottom: 2px solid #5a3e1b;
  padding-bottom: 5px;
}

.sidebar-categories ul {
  list-style: none;
}

.sidebar-categories ul li {
  margin: 12px 0;
}

.sidebar-categories ul li a {
  color: #5a3e1b;
  font-weight: 600;
  font-size: 1.1rem;
}

.sidebar-categories ul li a:hover {
  color: #8b5e2c;
  text-decoration: underline;
}

.main-content {
  flex: 3;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-card {
  border: 1px solid #ccc;
  padding: 15px;
  max-width: 250px;
  text-align: center;
  background: #fff;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}



/* About ranch section */
.about-ranch {
  margin-bottom: 60px;
  padding: 30px 15px;
  background-color: #e6dfce;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  color: #4a3610;
}

.about-ranch h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #5a3e1b;
  padding-bottom: 6px;
}

.about-ranch p {
  font-size: 1.1rem;
  max-width: 800px;
  margin-bottom: 20px;
}

.about-ranch img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(90, 62, 27, 0.3);
}

/* Newsletter signup */
.newsletter {
  background-color: #5a3e1b;
  color: #f9f7f1;
  padding: 25px 15px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 80px;
}

.newsletter h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.newsletter input[type="email"] {
  padding: 12px 15px;
  width: 280px;
  max-width: 90%;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
  outline: none;
}

.newsletter button {
  padding: 12px 20px;
  background-color: #e6dfce;
  border: none;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #c5b896;
  color: #4a3610;
}

/* Footer */
footer {
  background-color: #4a3610;
  color: #f9f7f1;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 0.9rem;
  font-family: 'Georgia', serif;
}

.footer-section {
  max-width: 280px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.3rem;
  border-bottom: 2px solid #e6dfce;
  padding-bottom: 5px;
}

.footer-section p,
.footer-section ul {
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #e6dfce;
}

.footer-section ul li a:hover {
  color: #f9f7f1;
  text-decoration: underline;
}


  .navbar {
    flex-wrap: wrap;
  }
  .nav-links {
    margin-top: 10px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .nav-actions {
    margin-top: 10px;
    gap: 10px;
  }

.btn-primary {
  padding: 12px 24px;


  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}


.remove-btn {

  background-color: #e74c3c;
  padding: 6px 12px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.remove-btn:hover {
  background-color: #c0392b;
}

/* Basic Layout */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-form input {
  padding: 5px;
}

.search-form button {
  padding: 5px 10px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* Mobile Styles */
/*@media screen and (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f9f9f9;
    padding: 15px 0;
  }*/

  .nav-links.active,
  .nav-actions.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-form {
    width: 100%;
    padding-top: 10px;
  }
}
.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #4B4B4B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

  
  .slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Or whatever width fits your layout */
  margin: auto;
  overflow: hidden;
  aspect-ratio: 16/9; /* Optional but useful for responsive image sliders */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill container without stretching */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
.slider-container {
  height: 500px; /* fallback height */
}
.logo-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #4B4B4B; /* optional */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img {
  width: 100%;
  height: auto;
  object-fit: cover; /* or "contain" if you want the full logo inside */
}
.contact-us {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.contact-us h2 {
  text-align: center;
  font-size: 2rem;
  color: #4B4B4B;
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #666;
}

.contact-item .icon {
  font-size: 1.6rem;
  margin-right: 15px;
  color: #2C7A7B;  /* Icon color */
}

.contact-item a {
  color: #2C7A7B;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .contact-us {
    padding: 20px;
  }

  .contact-us h2 {
    font-size: 1.5rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }
}
.icon-small {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.payment-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #fff;
}


.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex-direction: row;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.search-form input {
  padding: 5px;
  font-size: 1rem;
}

.search-form button {
  padding: 6px 12px;
  font-size: 1rem;
}


