/* General */

.container {
  width: 300px;
  max-width: 1200px;
  margin: 0 auto;
}

header,
footer {

  padding: 1rem 0;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

/* Header */
.btn-login {
  background-color: #007bff;
  color: #fff;
  transition: background-color 0.3s;
}

.btn-login:hover {
  background-color: #0056b3;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem 0;
  background-color: #e9ecef;
}

.hero h1 {
  margin-bottom: 1rem;
  animation: fadeIn 2s ease-in-out;
}

.hero p {
  margin-bottom: 1.5rem;
  animation: fadeIn 2s ease-in-out;
}

.btn-primary {
  background-color: #3e3e3e;
  color: #fff;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #000;
}

/* Features Section */
.features {
  padding: 2rem 0;
}

.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: white;
  background-color: #ffd1dc; /* Pastel Pink */
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: inline-block;
}

.feature-item:nth-child(2) i {
  background-color: #c3f0ca; /* Pastel Green */
}

.feature-item:nth-child(3) i {
  background-color: #a3d8f4; /* Pastel Blue */
}

.feature-item h3,
.feature-item p {
  animation: fadeIn 2s ease-in-out;
}

/* Marketplace Section */
.marketplace {
  padding: 2rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.card {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #484848;
  color: white;
}

.card i {
  font-size: 2.5rem;
  color: white;
  background-color: #ffe4b2; /* Pastel Orange */
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: inline-block;
}

.card:nth-child(2) i {
  background-color: #d4a4ff; /* Pastel Purple */
}

.card:nth-child(3) i {
  background-color: #fdfd96; /* Pastel Yellow */
}

.card button {
  background-color: #ffc107;
  color: #333;
  transition: background-color 0.3s;
}

.card button:hover {
  background-color: #e0a800;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
