/* --------------------
   Global Styles
-------------------- */
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

/* --------------------
   Navbar
-------------------- */
.navbar {
  background: linear-gradient(90deg, #0d6efd, #198754);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-left: 15px;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #ffe082 !important;
}

/* --------------------
   Hero Section
-------------------- */
.bg-light {
  background: linear-gradient(180deg, #f8f9fa, #e9f5ee);
}
.display-4 {
  font-size: 3rem;
  color: #198754;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* --------------------
   Cards
-------------------- */
.card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
}
.card h5 {
  color: #198754;
}

/* --------------------
   Buttons
-------------------- */
.btn-success {
  background: #198754;
  border: none;
  transition: all 0.3s ease;
}
.btn-success:hover {
  background: #146c43;
  transform: scale(1.05);
}
.btn-outline-success {
  border: 2px solid #198754;
  color: #198754;
  transition: all 0.3s ease;
}
.btn-outline-success:hover {
  background: #198754;
  color: #fff;
}

/* --------------------
   Footer (Updated)
-------------------- */
footer {
  background: #212529;   /* Dark modern footer */
  color: #f8f9fa;
  padding: 40px 0 20px;
}
footer h5 {
  font-weight: 700;
  margin-bottom: 15px;
}
footer a {
  color: #ffc107; /* gold accent */
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #fff;
}
footer hr {
  border-color: rgba(255,255,255,0.2);
}
footer p {
  margin: 0;
  font-size: 14px;
}

/* --------------------
   Utility Classes
-------------------- */
.text-gradient {
  background: linear-gradient(90deg, #198754, #0d6efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Meet Our Team */
.team-card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}
.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #198754;
  padding: 2px;
  transition: all 0.3s ease;
}
.team-card:hover .team-img {
  border-color: #0d6efd;
  transform: scale(1.05);
}
/* Product Cards */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}
/* Logo Switching */
.logo-white { display: none; }
.navbar-dark .logo-color { display: none; }
.navbar-dark .logo-white { display: inline-block; }
.navbar-light .logo-white { display: none; }
.navbar-light .logo-color { display: inline-block; }
/* Logo Auto Switch */
.logo-white { display: none; }
.navbar-dark .logo-color { display: none; }
.navbar-dark .logo-white { display: inline-block; }
.navbar-light .logo-white { display: none; }
.navbar-light .logo-color { display: inline-block; }
/* Default Navbar Size */
.shrink-navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
}
.shrink-navbar .navbar-brand img {
  transition: all 0.3s ease;
  height: 40px;
}

/* Shrunk Navbar */
.shrink-navbar.shrunk {
  padding: 5px 0;
  background-color: rgba(25, 135, 84, 0.95); /* Green with slight transparency */
}
.shrink-navbar.shrunk .navbar-brand img {
  height: 30px;
}
.navbar-wood {
  background: linear-gradient(90deg, #5D4037, #3E2723); /* Rich dark brown */
}
.navbar-wood .nav-link:hover {
  color: #FFC107 !important; /* Amber highlight */
}
.navbar-wood .btn-warning {
  background: #FFC107;
  color: #000;
}
.navbar-wood {
  background: linear-gradient(90deg, #5D4037, #3E2723); /* Rich dark brown */
}
.navbar-wood .nav-link:hover {
  color: #FFC107 !important; /* Amber highlight */
}
.navbar-wood .btn-warning {
  background: #FFC107;
  color: #000;
}
.navbar-wood {
  background: linear-gradient(90deg, #2E7D32, #1B5E20); /* Deep forest green */
}
.navbar-wood .nav-link:hover {
  color: #FFEB3B !important; /* Soft yellow highlight */
}
.navbar-wood .btn-warning {
  background: #FFEB3B;
  color: #000;
}
