/* styles.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffef9;
  color: #333;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e7d32;
  color: white;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2em;
}

.navbar nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-size: 1em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.3s;
}

.navbar nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  background-color: #ffd54f;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin: 0;
  color: #2e7d32;
}

.hero p {
  font-size: 1.2em;
  margin: 10px 0 20px;
}

.cta-button {
  background: #2e7d32;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #256228;
}

/* Product Section */
.products {
  padding: 40px 20px;
  text-align: center;
}

.products h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #2e7d32;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 1.2em;
}

.order-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  transition: background 0.3s;
}

.order-button:hover {
  background: #256228;
}

/* About Section */
.about {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #2e7d32;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05em;
  color: #555;
}

/* Footer */
footer {
  background: #eee;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #666;
}
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIn 0.4s ease-in-out;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Optional animation */
@keyframes floatIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fffef5;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.contact-info a {
  color: #0b7b50;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.blinking-banner {
  background: linear-gradient(to right, #efc107, #fad103); /* Kerala Krunch warm yellow */
  padding: 12px;
  text-align: center;
  border-top: 2px solid #e6bd2f;
  border-bottom: 2px solid #e6bd2f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blinking-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #c62828; /* red highlight */
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; }
  100% { opacity: 1; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px; /* or adjust to fit */
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}


/* Modern Contact Page Layout */
.contact-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 60px 20px;
  background-color: #fffef6;
}

.contact-logo {
  flex: 1;
  text-align: center;
}

.contact-logo img {
  max-width: 100%;
  height: auto;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1;
  background-color: #fdfdf6;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info a {
  color: #007e33;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 15px;
  background-color: #f1f1f1;
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .navbar nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar nav a {
    margin: 5px 0;
    padding: 10px 0;
    font-size: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }

  .about p {
    padding: 0 10px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info {
    padding: 20px;
    width: 100%;
  }

  .contact-logo img {
    width: 80%;
  }
}
.contact-logo-large {
  width: 380px;
  max-width: 100%;
  height: auto;
}
.address-card {
  background: #fffef9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.address-card h3 {
  font-size: 1.2em;
  color: #2e7d32;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.address-card address {
  font-style: normal;
  color: #444;
  font-size: 1.05em;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  margin: 0 8px;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.follow-us-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fffef5;
}

.follow-us-section h2 {
  font-size: 1.8em;
  color: #2e7d32;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.follow-icons a {
  margin: 0 20px;
  display: inline-block;
  transition: transform 0.3s;
}

.follow-icons img {
  width: 80px;
  height: 80px;
}

.follow-icons a:hover img {
  transform: scale(1.15);
}
