
/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f8eb; /* light cream */
  color: #05004e; /* dark navy */
  line-height: 1.6;
  transition: background-color 0.3s ease-in-out;
}

/* Header */
header {
  background: linear-gradient(135deg, #76b39d 0%, #fd5f00 100%);
  color: #f9f8eb;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 1s ease-out;
}
h1 {
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color:#f9f8eb;
}

/* Navigation Bar */
nav {
  text-align: center;
  background: linear-gradient(135deg, #76b39d 0%, #fd5f00 100%);
  padding: 10px 0;
}
nav a {
  color: #f9f8eb;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  font-size: 1.2rem;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}
nav a:hover {
  background-color: #f9f8eb;
  color: #fd5f00;
}

/* Section Styles */
section {
  padding: 30px;
  margin: 20px;
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  animation: slideInUp 1s ease-out;
}
section:hover {
  transform: translateY(-10px);
}

/* Titles and Subtitles */
h2 {
  font-size: 2rem;
  margin-top: 40px;
  color: #76b39d;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.8rem;
  color: #76b39d;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Products Section */
.products {
  position: relative;
  text-align: center;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.products .section-title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.product {
  width: 18%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
.product img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
}
.product-name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
.product-description {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}
.product-post {
  margin-top: 10px;
}
.product-post img {
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
}

/* Responsive Products */
@media (max-width: 768px) {
  .product { width: 45%; }
  .product img { width: 120px; height: 120px; }
}
@media (max-width: 480px) {
  .product { width: 100%; }
  .product img { width: 100px; height: 100px; }
}

/* Social Media Posts Section */
.social-media-posts {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f8eb;
  border-top: 3px solid #fd5f00;
}
.social-media-posts h2 {
  font-size: 2rem;
  color: #76b39d;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.posts-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.post {
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  transition: transform 0.3s ease-in-out;
}
.post:hover {
  transform: translateY(-5px);
}
.post img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}

/* Responsive Posts */
@media (max-width: 768px) {
  .posts-container {
    flex-direction: column;
    align-items: center;
  }
  .post { max-width: 90%; }
}

/* Lists and Items */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  font-size: 1rem;
  margin: 15px 0;
  transition: color 0.3s ease;
}
ul li:hover {
  color: #fd5f00;
  font-weight: bold;
}

/* Link Styling */
a {
  color: #76b39d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
a:hover {
  color: #fd5f00;
  text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  text-align: center;
  background: transparent;
  padding: 0;
}
.whatsapp-button img {
  width: 50px;
  height: 50px;
}

/* Button-like Elements */
button, .cta {
  background-color: #76b39d;
  color: #f9f8eb;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1rem;
}
button:hover, .cta:hover {
  background-color: #fd5f00;
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #76b39d 0%, #fd5f00 100%);
  color: #f9f8eb;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 1rem;
  border-top: 3px solid #f9f8eb;
}
footer a {
  color: #f9f8eb;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #05004e;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  section { margin: 10px; padding: 15px; }
  ul li { font-size: 0.9rem; }
  .cta { font-size: 1rem; padding: 8px 16px; }
  footer { font-size: 0.9rem; padding: 15px; }
}

