body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #3B2F2F;
  padding-top: 80px; /* offset for fixed navbar */
}

/* Navbar */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  z-index: 1000;
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #8B3A1A; /* Mercada brown */
  text-decoration: none;
  font-weight: bold;
}

.nav-links a.active,
.nav-links a:hover {
  color: #C65D2C; /* terracotta */
}

.btn {
  background: #C65D2C;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
}

.btn:hover {
  background: #D4AF37;
  color: #3B2F2F;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #8B3A1A;
}

/* Hero Section */
.hero {
  background: #FDF9F6;
  color: #5A2E1B;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #8B3A1A;
}

.hero p {
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 60px 20px;
}

.about .content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.about .text {
  flex: 1;
  min-width: 300px;
}

.about .image {
  flex: 1;
  min-width: 300px;
  
}

.about .image img {
  width: 80%;
  height: 60%;
  border-radius: 8px;
}

/* Values Section */
.values {
  background: #FDF9F6;
  padding: 60px 20px;
  text-align: center;
}

.values h2 {
  color: #8B3A1A;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  width: 250px;
  border-radius: 8px;
  text-align: center;
}

.value-card h3 {
  margin: 15px 0 10px;
  color: #C65D2C;
}

/* Footer */
footer {
  background: #5A2E1B;
  color: white;
  text-align: center;
  padding: 20px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #D4AF37;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #8B3A1A;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    color: white;
  }

  .hamburger {
    display: block;
  }

  .about .content {
    flex-direction: column;
  }
}
