/* Base Styles */
body {
  background-color: #d4edda; /* Light green background */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('flower-background1.png'), url('flower-background2.png');
  background-size: cover;
  background-position: center;
}

.container {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #2c3e50;
}

header {
  margin-bottom: 20px;
}

h1 {
  color: #1a252f;
}

/* Hero Banner */
.hero-banner {
  background: rgba(42, 107, 42, 0.85);
  color: #d4edda;
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  animation: fadeIn 3s ease-in-out;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Section Boxes */
.services, .about, .connect, .footer, .watch-plants {
  margin: 20px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: #2c3e50;
  max-width: 1000px;
  text-align: center;
}

/* Lists */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  color: #2c3e50;
}

ul li {
  margin: 10px 0;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s;
}

ul li:hover {
  text-decoration: underline;
  color: #14532d;
}

/* Social Media Links */
.instagram-text, .facebook-text {
  font-weight: bold;
  margin: 0 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.instagram-text {
  color: #E1306C;
}

.instagram-text:hover {
  text-decoration: underline;
}

.facebook-text {
  color: #1877F2;
}

.facebook-text:hover {
  text-decoration: underline;
}

/* Video and Card Section */
.video-links {
  margin: 30px 0;
  color: #2c3e50;
}

.cards-container,
.flower-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.flower-card {
  width: 180px;
  background: #e8f5e9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #2c3e50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flower-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.flower-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.card-text {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
  color: white;
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  padding: 25px;
  color: #2c3e50;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #2c3e50;
}

