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 */
.hero {
  background: #FDF9F6;
  text-align: center;
  padding: 100px 20px;
  color: #5A2E1B;
}

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

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Services Section */
.services {
  padding: 60px 20px;
}

.service {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.service.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  min-width: 280px;
  color: #3B2F2F;
}

.service-text h2 {
  color: #C65D2C;
}

.service-img {
  flex: 1;
  min-width: 280px;
}

.service-img img {
  width: 90%;
  border-radius: 8px;
  object-fit: cover;
}

/* 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;
  }

  .service {
    flex-direction: column;
  }
}
