/* Site COLORS */
/* Soft earth-tone beige */
/* #f0f7f4; /* light olive tint block*/
/* Text-primary-color value=  #4e4532; /* dark brown */
/* 
  background-color: #f5f0e1;
  color: #3e604c;
  color: #2e4a39;  
*/


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;
}
/* Base Styles */
.site-header {
  background-color: #f5f0e1;
  width: 100%;
  padding: 0;
  margin: 0;
}

.top-nav {
  width: 100%;
}

.top-nav-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-nav {
  background-color: #f5f0e1;
  padding: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.desktop-nav.active {
  max-height: 500px; /* adjust if needed to fit the menu */
}

/* 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(1rem, 1.5vw, 1.3rem);
  margin-top: 0.75rem;
  color: #333;
  font-weight: 600;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  display: inline-block;
  max-width: 90%;
  text-align: center;
}

.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;
}

.shop-image {
  max-width: 100%;
  height: auto;
  display:block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.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 grid and sectio categoruy-block -- 
for the Index Page */

/*  Styles for tHE CATEGORY BLOCKS
  the index.html file images */
.category {
  width: 100%;
  max-width: 100%;
  padding: 0 0 1rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* default desktop */
  gap: 2rem;
  margin-bottom: 2rem;
}

.category-block:nth-of-type(even) {
  background-color: #E9E6E2; /* light beige */
}

.category-block:nth-of-type(odd) {
  background-color: #E3E8E9; /* soft sage or mint */
}

.category-content {
  max-width: 1800px;
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.category-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  background-color: #4b8063;
  color: white;
  padding: 1rem 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;
}


.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;
}

/* === Contact Page Styles === */
.contact-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
  color: #333;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #222;
}

.contact-page p {
  line-height: 1.6;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.contact-info i {
  margin-right: 0.5rem;
  color: #444;
}

.contact-social {
  margin: 2rem 0;
  text-align: center;
}

.contact-social h2 {
  margin-bottom: 1rem;
}

.contact-social a {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: #d67b00; /* accent color */
}

.contact-form {
  margin-top: 2rem;
}

.contact-form h2 {
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 0.7rem 1rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #555;
}
/* === Customer Info Page === */
.customer-info {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.customer-info h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.customer-info section {
  margin-bottom: 2rem;
}
.customer-info h2 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.customer-info a {
  color: #d67b00;
  text-decoration: none;
}
.customer-info a:hover {
  text-decoration: underline;
}
.sizing-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.about-image {
  text-align: center;
  margin: 1.5rem 0;
}
.about-image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: inline-block;
  border-radius: 4px; /* optional */
}
/* Responsive Styles */


@media (max-width: 400px) {

  .top-nav-container {
    flex-direction: column;
    align-items: center;
  } 

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4b8063;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .intro-subtitle {
    font-size: 1rem;
  }

  .category-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 columns on ipad screens*/
    } 
  
  .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;
  }

}


@media (min-width: 401px) and (max-width: 768px) {

/*Sytling of the TOP NAV  container*/
  .top-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4b8063;
  }
  
/* Taking out the Destop Navigation*/
  .desktop-nav {
    display: none;
  }

  .desktop-nav.active {
    display: block;
    max-height: none;
    overflow: visible;
    padding: 1rem 0;
  }

  .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;
  }

  .category-grid {
    grid-template-columns: repeat(1, 1fr); /* 2 columns on ipad screens*/
  } 

  .customer-info {
    padding: 1rem;
  }
  .customer-info h1 {
    font-size: 1.6rem;
  }
  .customer-info h2 {
    font-size: 1.2rem;
  }


/* Responsive adjustments for contact page */
  .contact-page {
    padding: 1rem;
  }
  .contact-page h1 {
    font-size: 1.5rem;
  }
  .contact-form button {
    width: 100%;
    font-size: 1rem;
  }
  .contact-social a {
    font-size: 1.3rem;
    margin-right: 0.5rem;
  }
  
}

@media (min-width: 769px) and (max-width: 900px) {

  .top-nav-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .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;
  }

  .desktop-nav.active {
    display: block;
  }

  .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;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on ipad screens*/
  }
 
}


@media (min-width: 901px) {

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .top-nav-container {
    flex-direction: row;
  }

  .info-links ul {
    flex-direction: row;
    gap: 1rem;
    margin-left: auto;
    margin-right: 1rem;
  }
  
  .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;
  }

  .category-block.location {
   display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      align-items: flex-start;
  }

  .category-block.location .category-content {
    flex: 1 1 60%;
  }

  .category-block.location .location-thumbs {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .location-thumbs img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
  }
  
}

