:root {
  --kbe-blue: #1a4563;
  --kbe-gold: #d4af37;
}
 

body {
     background: url("bg gold.jpg");
    background-size: cover;
  font-family: "Arial", sans-serif;
}

/* Header Styles */
.kbe-header {
  background-color: #111110;
  border-bottom: 4px solid var(--kbe-gold);
}

.wheat-icon {
  opacity: 0.6;
}
.logo-img {
    max-width: 80px;      /* Adjust size */
    height: auto;
}

@media (min-width: 768px) {
    .logo-img {
        max-width: 110px; /* Larger on desktop */
    }
}

.logo-circle {
  background: var(--kbe-gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: var(--kbe-blue);
}

.logo-title {
  color: var(--kbe-gold);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 2px;
margin-left: 0.5em;
}

.logo-subtitle {
  color: white;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 3px;
  margin-left: 1em;
}

/* Main Content Styles */
.main-bg {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(0, 0, 0, 0.02) 100px,
    rgba(0, 0, 0, 0.02) 200px
  );
  overflow: hidden;
}

.watermark-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  font-size: 100px;
  font-weight: bold;
  color: #000;
  line-height: 200px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

.section-title {
  color: black;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

/* Form Styles */
.search-input {
  border-radius: 50px;
  padding: 15px 30px;
  border: 2px solid #e0e0e0;
text-transform: uppercase;  
}

.search-btn {
  background: #d4af37;
  color: white;
  border-radius: 50px;
  padding: 12px 60px;
  font-weight: bold;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s;
}

.search-btn:hover {
  background-color: #14354d;
  color: white;
}

/* Product Card Styles */
.product-card {
  border-radius: 15px;
  border: 3px solid var(--kbe-blue);
  overflow: hidden;
  transition: transform 0.3s;
}

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

.weight-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--kbe-blue);
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 50px;
  z-index: 10;
}

.product-img {
  height: 250px;
  object-fit: fill;
}

/* Carousel Controls */
.nav-icon {
  background-color: var(--kbe-blue);
  border-radius: 50%;
  padding: 20px;
  background-size: 50%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}

/* Footer */
.kbe-footer {
  background-color: black;
}
