/* ===== SaleBuddy Theme Styles ===== */

/* Theme Colors */
:root {
  --primary-dark: #30424d;
  --accent-orange: #ed7313;
  --deep-brown: #3b1c0d;
  --light-bg: #fcfaf8;
  --text-white: #ffffff;
}

/* Body and Background */
body {
  background-color: var(--light-bg);
  color: #333;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Navbar */
.navbar {
  background-color: var(--primary-dark) !important;
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar-toggler {
  color: var(--text-white) !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--accent-orange) !important;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header */
header {
  background-color: var(--accent-orange);
  color: var(--text-white);
  text-align: center;
  padding: 3rem 1rem;
}
header h1 {
  font-weight: bold;
}
header .btn {
  font-weight: bold;
}

/* Logo Box */
.logo-box {
  display: inline-block;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}
.logo-box img {
  max-width: 100%;
  height: auto;
  width: 300px;
}
@media (min-width: 768px) {
  .logo-box img {
    width: 450px;
  }
}
@media (min-width: 992px) {
  .logo-box img {
    width: 300px;
  }
}

/* Feature Box */
.feature-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-left: 5px solid var(--deep-brown);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  text-align: center;
  padding: 1.5rem 0;
}

/* Buttons */
.btn-orange {
  background-color: var(--accent-orange);
  color: #fff;
}
.btn-orange:hover {
  background-color: #d46410;
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.floating-whatsapp img {
  width: 50px;
  height: 50px;
}
