/* Import modern Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e0eafc);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  color: #333;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #2c3e50;
}

.container {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.container:hover {
  transform: scale(1.01);
}

.item img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.item h2 {
  font-size: 1.5rem;
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: left;
}

#linkButton {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
  font-size: 0.95rem;
}

#linkButton:hover {
  background-color: #cf711f;
}

#btn {
  margin-top: 2rem;
  padding: 0.6rem 1.4rem;
  background-color: #3498db;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

#btn:hover {
  background-color: #2980b9;
}

.horiLine {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border: none;
  border-top: 1px solid #ddd;
}

/* -----------------------
   Media Queries for Mobile
------------------------ */

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  .item h2 {
    font-size: 1.25rem;
  }

  .item p {
    font-size: 0.9rem;
  }

  #linkButton {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  #btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}
