body {
  font-family: 'Arial', sans-serif;
  /*background-color: #f5f0e1; /* soft earth-tone beige */
  color: #4c4637; /* dark brown */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Intro Section */

.intro-section {
  text-align: center;
  margin: 2rem auto 1.5rem;
  padding: 0 1rem;
}

.intro-title {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #4e4532;
  margin-bottom: 1rem;
}

.intro-subtitle {
  font-size: clamp(1rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #6a5e48;
  line-height: 1.4;
}


h1, h2, h3 {
  color: #4c4637;
  font-weight: 700;
  margin: 0.5rem 0;
  text-align: center;
 }

p {
  font-size: clamp(1rem, 2vw, 1.8rem);
  line-height: 1.6;
  margin: 0.5rem auto;
}
/*  Styles for the index.html file images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns on wide screens */
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 1rem 0;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

/* Base Styles */
.site-header {
  background-color: #f5f0e1;
  width: 100%;
  padding: 0;
  margin: 0;
}

.utility-nav {
  width: 100%;
}

.utility-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.clearfloat {
  clear: both;
  height: 0;
  margin: 0;
  padding: 0;
}

/* Info Links */
.small-logo img {
  height: 50px;
  padding-left: 10px;
  width: auto;
}

.info-links {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.info-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-links a {
  text-decoration: none;
  color: #4c4637;
  font-size: clamp(1.2rem, 2.5vw, 1.25rem);
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-links a:hover {
  color: #6b8e23;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

/* Desktop Navigation */
/*.desktop-nav {
  background-color: #f5f0e1;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.desktop-nav li {
  font-size: clamp(1rem, 2vw, 1.8rem);
}

.desktop-nav a {
  text-decoration: none;
  color: #3e604c;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #2e4a39;
  border-bottom: 2px solid #4b8063;
}

*/
.desktop-nav {
  background-color: #f5f0e1;
  padding: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.desktop-nav.active {
  max-height: 500px; /* adjust if needed */
}

/* Inside the menu */
.desktop-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column; /* <-- make it vertical on small screens */
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: 1rem 0;
}

.desktop-nav li {
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.desktop-nav a {
  text-decoration: none;
  color: #3e604c;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #2e4a39;
  border-bottom: 2px solid #4b8063;
}
.desktop-nav a i {
  margin-right: .5rem;
}

/* Main Content */
.main-content p {
  padding: 2rem 1rem;
}

/* -- Product grid -- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 2000px;
  margin: 0 auto;
}

.product-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-caption {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  margin-top: 0.5rem;
  color: #4c4637;
  font-weight: 500;
  background-color: #f5f0e1;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: inline-block;
}
.product-tile img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-tile img:hover {
  transform: scale(1.05);
}

/* -- Info block -- */
.info-block,
.featured-block {
  max-width: 2000px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-size: clamp(.9rem, 2vw, 1.6rem);
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-block {
  background-color: #faf6f0; /* soft earth-tone beige */
  color: #4c4637;
}

.featured-block {
  background-color: #f0f7f4; /* light olive tint */
  color: #3b3b2e;
}

.featured-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  text-align: center;
  color: #4e4532;
}

.featured-block p a {
  color: #4b8063; /* soft green or olive for links */
  text-decoration: underline;
}

.featured-block p a:hover {
  color: #365949;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-highlight a {
  font-weight: 500;
  color: #3e604c;
  text-decoration: none;
}

.contact-highlight a:hover {
  text-decoration: underline;
  color: #2e4a39;
}

.contact-highlight p {
  margin-top: 1rem;
}

/* -- Category block -- for the Index Page */
.category-block {
  padding: 3rem 1rem;
  text-align: center;
}

.category-block:nth-of-type(odd) {
  background-color: #f9f5f0; /* light beige */
}

.category-block:nth-of-type(even) {
  background-color: #f1f7f5; /* soft sage or mint */
}

.category-content {
  max-width: 1200px;
  margin: auto;
}

.category-content img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.category-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #3b3b2e;
}

.category-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #4b8063;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #3b644e;
}

.map-wrapper {
  margin-top: 1rem;
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-thumbs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.location-thumbs img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #f5f0e1;
  padding: 0 1rem;
  position: relative;
  z-index: 1000;
}
.mobile-nav.active {
  max-height: 500px;
}

.bags-page {
  padding: 2rem;
  background: #fdfbf6;
}

.category-section {
  margin-bottom: 4rem;
}

.category-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: #3e604c;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f5f0e1;
  color: #4c4637;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  border-top: 1px solid #ddd0b4;
}


/* Responsive Styles */
@media (min-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .utility-container {
    flex-direction: row;
    align-items: center;
  }
  .info-links ul {
    flex-direction: row;
    gap: 1rem;
  }
  .location-thumbs {
    display: flex;
  }  
  
  .desktop-nav {
      max-height: none;
      overflow: visible;
      padding: 1rem 0;
    }
  
    .desktop-nav ul {
      flex-direction: row; /* Go back to horizontal on big screens */
      justify-content: center;
    }
  /* Hide icons on desktop screens */
  .desktop-nav a i {
    display: none;
  }
}

@media (max-width: 768px) {
  .utility-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on ipad screens*/
    }
 
  .info-links {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    }
    
  .info-links ul {
    display: flex;
    gap: .1rem;
    list-style: none;
    margin: auto;
    padding: 0;
  }

  .location-thumbs {
    display: none;
  }

  .desktop-nav.active {
  display: none;
  }

  .info-links a {
    font-size: clamp(.8rem, 2.5vw, 1.25rem);
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4b8063;
  }
  .location-thumbs {
    display: none;
  }
}

@media (max-width: 600px) {

/*Sytling the utility container*/
  .utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  
  }
  
  .small-logo {
    flex-shrink: 0;
  }
 
  .info-links {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
  }
    
  .info-links ul {
    display: flex;
    gap: .1rem;
    list-style: none;
    margin: auto;
    padding: 0;
  }

  .location-thumbs {
    display: none;
  }
/* Taking out the Destop Navigation*/
  .desktop-nav {
    display: none;
  }
  .desktop-nav.active {
    display: block;
  }

  @media (min-width: 601px) {
    .mobile-nav {
      display: none !important;
    }
  }
}

@media (max-width: 400px) {
  .intro-title {
    font-size: 1.5rem;
  }
  .intro-subtitle {
    font-size: 1rem;
  }
  .product-caption {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  }
  .product-tile img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* Always 1 columns on small screens */
  }
}
