/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #fefefe;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2a2a2a;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
}

.nav-link:hover,
.nav-link.active {
  color: #b8860b;
}

.mobile-menu {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: #2a2a2a;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 8rem 1rem 5rem;
  text-align: center;
  margin-top: 4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #8b4513;
  color: white;
}

.btn-primary:hover {
  background-color: #7a3e11;
}

.btn-secondary {
  background-color: transparent;
  color: #2a2a2a;
  border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.btn-full {
  width: 100%;
}

/* Features Section */
.features {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: #b8860b;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #666;
}

/* Products Section */
.products {
  padding: 5rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #666;
  max-width: 32rem;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.product-description {
  color: #666;
  margin-bottom: 1rem;
}

.product-link {
  background: none;
  border: none;
  color: #b8860b;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: #8b4513;
}

/* Contact Section */
.contact {
  padding: 5rem 1rem;
  background-color: #f9f9f9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: #b8860b;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-label {
  font-weight: 500;
  color: #2a2a2a;
}

.contact-value {
  color: #666;
}

.business-hours {
  margin-top: 2rem;
}

.business-hours-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.business-hours-list {
  color: #666;
}

.business-hours-list p {
  margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #fefefe;
  color: #2a2a2a;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1);
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid #e5e5e5;
  padding: 3rem 1rem;
}

.footer-content {
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.footer-description {
  color: #666;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-link {
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #b8860b;
}

.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 2rem;
}

.footer-copyright {
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid #e5e5e5;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 1rem;
  }
}
