body {
  font-family: Arial, sans-serif;
  background: #fffafc;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
  background: #ffdde7;
}

h1 {
  color: #b3005e;
}

.filter-buttons {
  text-align: center;
  margin: 20px 0;
}

.filter-buttons button {
  padding: 8px 15px;
  margin: 0 5px;
  border: none;
  border-radius: 20px;
  background: #b3005e;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.filter-buttons button:hover, .filter-buttons button.active {
  background: #ff66a3;
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.flower-card {
background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  display: none; 
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flower-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.flower-card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.price {
  color: #b3005e;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.whatsapp-button {
  display: inline-block;
  padding: 8px 15px;
  background: #25D366;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.whatsapp-button:hover {
  background: #1ebe5c;
}
.flower-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  display: none; 
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Responsive for mobile devices */
@media (max-width: 600px) {
  .flower-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding: 10px;
  }

  .flower-card img {
    height: 140px;
  }
}
.flower-card img {
  width: 100%;             /* Take full width of card */
  height: 200px;           /* Fixed height for all images */
  object-fit: cover;       /* Crops & zooms nicely */
  border-radius: 8px;      /* Rounded corners */
  transition: transform 0.3s ease; /* For hover effect */
}

/* Hover effect – zoom slightly */
.flower-card:hover img {
  transform: scale(1.05);
}
.flower-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flower-card:hover {
  transform: translateY(-5px); /* lift the card */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/* Hero Section */
.hero {
  height: 90vh;
  background: url("images/Back\ G\ &\ ic/background.jpeg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background: #ff69b4;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ff1493;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* Contact Section */
.contact-section {
  padding: 50px 20px;
  background: #fdf1f8;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #ff69b4;
}

.contact-card a {
  text-decoration: none;
  color: #333;
}

.map iframe {
  border-radius: 12px;
}
/* Footer */
.footer {
  background: #ff69b4;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffe4ec;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer-socials a:hover {
  text-decoration: underline;
}
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.btn, .whatsapp-button {
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover, .whatsapp-button:hover {
  transform: translateY(-3px);
}




@media screen and (max-width: 768px) {
  .product-list {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%; /* almost full width */
  }
}



@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}


@media screen and (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .map iframe {
    height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

.footer-socials img {
  width: 30px;
  height: 30px;
  margin: 0 8px;
  transition: transform 0.2s ease;
}

.footer-socials img:hover {
  transform: scale(1.2);
}

.footer-socials {
  display: flex;           /* make icons horizontal */
  justify-content: center; /* center them in footer */
  gap: 10px;               /* space between icons */
  flex-wrap: nowrap;       /* prevent wrapping to next line */
  margin-top: 10px;
}
.footer-socials a img {
  width: 20px;
  height: 20px;
}










/* Mobile Navbar */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
