
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 15px 20px;
  position: relative;
}

.logo {
  color: white;
  font-weight: bold;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: orange;
}

#searchInput {
  padding: 5px;
  border-radius: 5px;
  border: none;
}
.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 600px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: black;

    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.active {
    max-height: 400px; 
  }

  .nav-links li {
    padding: 12px 0;
  }

  #searchInput {
    width: 80%;
    padding: 8px;
    margin-bottom: 10px;
  }
}


.card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 20px;
  gap: 20px;
}

.card {
  width: 300px;
  display: grid;
  grid-template-rows: auto 1fr; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1001;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.card-image {
  position: relative;
}

.card img {
  width: 100%;
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: orange;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.card-content {
  padding: 15px;
  display: grid;
  gap: 10px;
}

.card button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.card button:hover {
  background-color: orange;
}


.form-section {
  border: 3px solid orange; 
  display: flex;
  justify-content: center;
  margin: 40px 20px;
  padding: 20px;
}

form {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select, textarea {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid orange;
}

form button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: orange;
}