/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #3B2F2F; /* dark brown text */
  background: #fff;
}

header {
  background: transparent;
  position: fixed;
  width: 90%;
  padding: 1rem 2rem;
  z-index: 1000;
}

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

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.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; /* terracotta */
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
}

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

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

/* Hero */
#hero {
  background: url("../images/hero2.jpg") center/cover no-repeat;
  color: #3B2F2F;
  text-align: center;
  padding: 120px 20px;
  min-height: 400px;
}

#hero h1 {
  color: #8B3A1A;
}

#hero p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Services */
#services-preview {
  background: #FDF9F6; /* light beige */
  padding: 50px 20px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.card h3 {
  color: #8B3A1A;
}

.card:hover {
  border-color: #C65D2C;
}

/* About Preview */
#about-preview {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

#about-preview h2 {
  color: #8B3A1A;
}

/* Footer */
footer {
  background: #5A2E1B; /* darker brown */
  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; /* gold */
}

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