* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
  background-color: #f5f0e6;
  color: #1a1a1a;
}

.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 60px; background: #1a1a1a; color: #f5f0e6;
  position: sticky; top: 0; z-index: 1000;
}

.logo { font-weight: 600; font-size: 1.2rem; }

nav a {
  color: #f5f0e6; text-decoration: none; margin-left: 25px;
  transition: color 0.3s ease;
}

nav a:hover, nav a.active { color: #d1b58c; }

.hero {
  height: 90vh;
  background: linear-gradient(to right, #1a1a1a, #3b3b3b);
  color: #f5f0e6; display: flex; justify-content: center; align-items: center; text-align: center;
}

.hero-content h1 { font-size: 2.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; }
.btn {
  padding: 10px 25px; border: none; cursor: pointer;
  background-color: #d1b58c; color: #1a1a1a; font-weight: 600;
  transition: 0.3s;
}
.btn:hover { background-color: #f5f0e6; color: #000; }

.section {
  padding: 60px 80px; text-align: center;
}

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

.card {
  background: #fff; border-radius: 10px; padding: 25px; width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }

.contact-form {
  display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  padding: 12px; border: 1px solid #ccc; border-radius: 6px;
  font-size: 1rem;
}

/* footer {
  background: #1a1a1a; color: #f5f0e6; text-align: center;
  padding: 20px; margin-top: 40px;
} */
 footer {
  background: #1a1a1a;
  color: #f5f0e6;
  text-align: center;
  padding: 20px;
  margin-top: 28%;
}

footer a { color: #d1b58c; text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media(max-width:768px) {
  .navbar { flex-direction: column; text-align: center; }
  nav a { margin: 10px; display: inline-block; }
  .cards { flex-direction: column; align-items: center; }
}
