* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

header {
  background: #e91e63;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #ffe5ec;
}

.hero h1 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 0.3rem;
}

.fruit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  background: #fff;
}

.fruit-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 250px;
  margin: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fruit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.fruit-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #f1f1f1;
  padding: 5px;
  cursor: pointer;
}

.fruit-card h3 {
  margin: 0.5rem 0;
  color: #d81b60;
}

.fruit-card p {
  font-size: 0.95rem;
  color: #555;
}

.fruit-card button {
  background: #25d366;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.3s ease;
}

.fruit-card button:hover {
  background: #128c7e;
}

.about {
  background: #fce4ec;
  padding: 2rem;
  text-align: center;
}

.about h2 {
  color: #c2185b;
  margin-bottom: 1rem;
}

footer {
  background: #212121;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

#contact p {
  margin: 0.5rem 0;
}

#contact i {
  margin-right: 8px;
  color: #25d366;
}

#contact a {
  color: white;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.popup-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.closeBtn {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 600px) {
  .fruit-list {
    flex-direction: column;
    align-items: center;
  }
}
