/* Custom Styles for Suraj Seed Corporation */

/* Color Variables */
:root {
  --dark-green: #1b5e20;
  --leaf-green: #4caf50;
  --earth-brown: #6d4c41;
  --light-beige: #f9fbe7;
  --gold: #c9a227;
  --gradient-green: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
  --gradient-earth: linear-gradient(135deg, #6d4c41 0%, #8d6e63 100%);
}

/* Fonts */
body {
  font-family: "Roboto", sans-serif;
  background: var(--light-beige);
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--leaf-green) !important;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--leaf-green) !important;
}

/* Hero Section */
.hero {
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.25rem;
  color: #f2f2f2;
}

.hero-badges .badge {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
  margin: 0 0.25rem;
}

.bg-gold {
  background: var(--gold);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons .btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline-light {
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-gradient {
  background: var(--gradient-green);
  border: none;
  color: #fff;
}

.btn-gradient:hover {
  background: var(--dark-green);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 2rem;
}

.bg-light-beige {
  background-color: var(--light-beige);
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.product-card h4 {
  color: var(--dark-green);
  font-weight: 700;
  margin-top: 1rem;
}

.product-card ul {
  margin-top: 0.75rem;
  color: var(--earth-brown);
}

/* Why Choose Us Cards */
.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.why-card i {
  font-size: 2rem;
  color: var(--leaf-green);
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--earth-brown);
  font-weight: 600;
}

/* Contact Cards */
.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.text-dark-green {
  color: var(--dark-green);
}

/* Contact Form */
.form-control {
  border-radius: 0.75rem;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--leaf-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* Footer */
footer {
  background-color: var(--dark-green);
  color: #fff;
  padding: 2rem 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-buttons .btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }

  .product-card img {
    height: 180px;
  }
}
