/* Core CSS for Journey Choice */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

header {
  background-color: #004d40;
  color: white;
  padding: 15px 0;
  text-align: center;
}

header h1 a {
  color: white;
  text-decoration: none;
}

.tagline {
  font-size: 1rem;
  color: #a7ffeb;
}

main h2 {
  margin-bottom: 20px;
  color: #004d40;
}

.product-listing {
  padding-bottom: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.product-card h3 {
  font-size: 1.25rem;
  margin: 10px 0;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00796b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #004d40;
}

footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .product-card {
    padding: 12px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* WhatsApp Button Style */
.whatsapp-order {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 999;
}

.whatsapp-order:hover {
  background: #128c7e;
}
