body {
  font-family: 'Merriweather', serif;
  background: #222 url('images/street-4472321 (1).png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 40px;
  padding-top: 170px;
}

.header_nav {
  position: absolute;
  top: 60px;
  left: 70%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}

.header_nav_link {
  white-space: nowrap;
  color: rgb(207, 72, 25);
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 14px;
  background-color: rgb(255, 233, 187);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.header_nav_link:hover {
  color: rgb(255, 233, 187);
  background-color: rgb(207, 72, 25);
}

.logo {
  position: absolute;
  top: 15px;
  left: 20px;
  height: 150px;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #fff0d9, #ffe6b3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  background: linear-gradient(145deg, #ffe6b3, #fff0d9);
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-bottom: 3px solid rgba(207, 72, 25, 0.8);
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #cf4819;
}

.card-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

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

.card-price {
  background: linear-gradient(45deg, #d84315, #ff9800);
  color: white;
  font-weight: bold;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.card-price:hover {
  transform: scale(1.05);
}

.card-button {
  padding: 14px 26px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  background: linear-gradient(45deg, #ff5722, #ffb74d);
  transition: all 0.3s ease;
}

.card-button:hover {
  background: linear-gradient(45deg, #d84315, #ff9800);
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card img {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .header_nav {
    flex-direction: column;
    gap: 15px;
    top: 100px;
  }

  .card img {
    height: 220px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 14px;
  }

  .card-price, .card-button {
    font-size: 16px;
    padding: 10px 18px;
  }
}
