:root {
    --bs-primary: #803619;     /* caffee */
    --bs-secondary: #adb5bd;
    --bs-success: #83A601; 
    --bs-danger: #dc3545;
    --bs-warning: #ffc107;
    --bs-info: #0dcaf0;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
}

.btn-success {
    --bs-btn-bg: var(--bs-success);
    --bs-btn-border-color: var(--bs-success);
}


footer {
  background-color: #210804;
  color: #fff;
  padding: 3rem 0;
  bottom: 0;
  width: 100%;
  background: red !important;
  overflow-x: hidden;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.social-icons a {
  font-size: 1.25rem;
}

body {
  background-color: #f8f4e5;
}

/* HEADINGS */

/* HEADINGS */
h1 {
  font-size: 3rem;
  padding: 20px 0px;
}

h2 {
  font-size: 2rem;
  padding: 20px 0px;
}

h3 {
  font-size: 1.5rem;
  padding: 5px 0px;
}
h4 {
  font-size: 1rem;
  padding: 2px 0px;
}

/* WHY CHOSE US SECTION */
.why-section {
  padding: 60px 20px;
  background: #ffffff;
  /* text-align: center; */
}

/* .why-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
} */

.why-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: center;
  text-align: center;
  margin-top: 50px;
}

.why-item {
  max-width: 260px;
  padding: 10px;
  transition: 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-icon i {
  font-size: 48px;
  color: var(--bs-primary); 
  margin-bottom: 15px;
}

/* .why-item h3 {
  font-size: 1.25rem;
  margin: 15px 0 10px;
  color: #111;
} */

.why-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 70vh; /* HEIGHT OF HERO CAN BE CHANGED HERE */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
  background-color: #c60f0f;
  background: radial-gradient(circle, #c60f0f 0%, #9a0c0c 70%, #660808 90%);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.bestseller h2 {
  font-size: 2rem;
  /* margin: 40px 0px; */
}

/* ABOUT SECTION index.php */
.coffee-origin {
  position: relative;
  width: 100%;
  height: 60vh; /* EDIT SECTION HEIGHT HERE */
  background: url("https://cdn.pixabay.com/photo/2024/10/27/07/12/women-9152740_960_720.jpg")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark Transparent Overlay */
.coffee-origin-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* EDIT TRANSPARENCY HERE */
}

.coffee-origin-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.coffee-origin-content h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.coffee-origin-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* ORIGIN PART ENDS */

/* ABOUT-PAGE Images */
.coffee-left {
  margin-right: 1.5rem;
}
.coffee-right {
  margin-left: 1.5rem;
}
/* ABOUT-PAGE Images ENDS*/

/* DASHBOARD "NAV2" */
#management {
  justify-content: start;
}
/* DASHBOARD "NAV2" ENDS */
