@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
/* Normalize and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables */
:root {
  --color-background: #f9f6f0;
  --color-text: #333333;
  --color-accent: #5c8d76; /* Eucalyptus green */
  --color-light: #ffffff;
  --border-radius: 8px;
  --container-width: 1200px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-accent);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #486e5c;
  color: var(--color-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Header */
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 20px 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: 1px;
}
header nav ul {
  display: flex;
  list-style: none;
}
header nav ul li {
  margin-left: 30px;
}
header nav ul li a {
  color: var(--color-light);
  font-weight: 500;
}
header nav ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/images/hero-1-shoes-maple.jpeg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-light);
  position: relative;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 30px;
}
.hero .search-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.hero .search-bar input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.9);
}
.hero .search-bar input:focus {
  outline: none;
}
.hero .search-bar button {
  padding: 15px 30px;
  background-color: #e9e2cb;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .search-bar button:hover {
  background-color: #dacea7;
}
.hero .hero-attribution {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 4px;
}
.hero .hero-attribution a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.hero .hero-attribution a:hover {
  color: white;
}

/* City Filters */
.city-filters {
  background-color: var(--color-light);
  padding: 30px 0;
}
.city-filters .city-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.city-filters .city-icons .city-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.city-filters .city-icons .city-icon .icon {
  width: 80px;
  height: 80px;
  background-color: #d3dccc;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
.city-filters .city-icons .city-icon .indigenous-name {
  font-size: 14px;
}
.city-filters .city-icons .city-icon .colonial-name {
  font-size: 12px;
  color: #666;
  display: block;
  margin-top: 0px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.city-filters .city-icons .city-icon:hover .colonial-name {
  opacity: 1;
}

/* Request Listing */
.request-listing {
  background-color: #eae4d1;
  padding: 20px 0;
}
.request-listing .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.request-listing .container p {
  font-size: 18px;
}

/* Categories */
.categories {
  padding: 50px 0;
}
.categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.categories .category-grid .category-card {
  background-color: var(--color-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.categories .category-grid .category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.categories .category-grid .category-card .category-img {
  height: 200px;
  background-color: #e0e0e0;
}
.categories .category-grid .category-card h3 {
  padding: 15px;
  text-align: center;
}

/* Featured Brands */
.featured-brands {
  padding: 50px 0;
}
.featured-brands h2 {
  margin-bottom: 30px;
}
.featured-brands .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.featured-brands .product-grid .product-card {
  background-color: var(--color-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-brands .product-grid .product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.featured-brands .product-grid .product-card .product-img {
  height: 200px;
  background-color: #e0e0e0;
  margin-bottom: 15px;
}
.featured-brands .product-grid .product-card h3 {
  padding: 0 15px;
  margin-bottom: 5px;
  font-size: 18px;
}
.featured-brands .product-grid .product-card .price {
  padding: 0 15px;
  font-weight: 600;
  color: var(--color-accent);
}

/* How It Works */
.how-it-works {
  padding: 50px 0;
  text-align: center;
  background-color: var(--color-light);
}
.how-it-works h2 {
  margin-bottom: 40px;
}
.how-it-works .steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.how-it-works .steps .step {
  max-width: 250px;
}
.how-it-works .steps .step .step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.how-it-works .steps .step h3 {
  margin-bottom: 10px;
}

/* Impact */
.impact {
  padding: 50px 0;
  text-align: center;
}
.impact h2 {
  margin-bottom: 40px;
}
.impact .metrics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.impact .metrics .metric .metric-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.impact .metrics .metric p {
  font-size: 18px;
}

/* Newsletter */
.newsletter {
  padding: 50px 0;
  background-color: var(--color-light);
  text-align: center;
}
.newsletter h2 {
  margin-bottom: 30px;
}
.newsletter .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter .newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.newsletter .newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.newsletter .newsletter-form button {
  padding: 12px 25px;
  background-color: var(--color-accent);
  color: var(--color-light);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
}
.newsletter .newsletter-form button:hover {
  background-color: #486e5c;
}

/* Footer */
footer {
  background-color: var(--color-text);
  color: var(--color-light);
  padding: 50px 0;
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
footer .footer-logo h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
footer .footer-links h4 {
  margin-bottom: 20px;
}
footer .footer-links ul {
  list-style: none;
}
footer .footer-links ul li {
  margin-bottom: 10px;
}
footer .footer-links ul li a {
  color: var(--color-light);
  opacity: 0.8;
}
footer .footer-links ul li a:hover {
  opacity: 1;
}
footer .footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
footer .footer-social .social-icons .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
footer .footer-social .social-icons .social-icon:hover {
  background-color: var(--color-accent);
}
footer .footer-social .acknowledgement {
  margin-top: 30px;
}
footer .footer-social .acknowledgement h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--color-light);
}
footer .footer-social .acknowledgement p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 500px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero .search-bar {
    flex-direction: column;
  }
  .hero .search-bar input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  .hero .search-bar button {
    border-radius: var(--border-radius);
  }
  .city-icons .city-icon .icon {
    width: 60px;
    height: 60px;
  }
  .request-listing .container {
    flex-direction: column;
    text-align: center;
  }
  .how-it-works .steps, .how-it-works .metrics, .impact .steps, .impact .metrics {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer .footer-social .social-icons {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */