/* Convenience Store Vibe Styling */
body {
  background-color: #380505;
  background-image: radial-gradient(#5c2a046f 1px, transparent 1px);
  background-size: 18px 18px;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #f5f5f5;

}
/* Navbar */
.navbar {
  background: linear-gradient(180deg, #2c0000 20%, #340101 100%);
  border-bottom: 2px solid #dfc879; /* polished gold tone */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* stronger shadow for depth */
  position: sticky;
  top: 0;
  z-index: 1030;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 0.60rem !important;
  letter-spacing: 0.9px;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px !important;
    width: 0%;
    height: 7px !important;
    background: #efdb8a;
    transition: width 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 400 !important;
  color: #f3dd84 !important;
  text-transform: uppercase;
  letter-spacing: 3px !important;
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  color: #e2c675cc !important;
  font-weight: 400 !important;
  text-shadow: none;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 0%;
  height: 3px;
  background: #ebd57f;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Remove underline effect on the ::after pseudo-element */
.nav-tabs .nav-link::after {
  display: none !important;
  content: none !important;
}

/* Remove uppercase and letter spacing on the actual tab links */
.nav-tabs .nav-link {
  text-transform: none !important;
  letter-spacing: normal !important;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-link.active::after {
  width: 100%;
}

.navbar-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-left: auto;
}

/* Navbar toggler (hamburger) */
.navbar-toggler {
  border-color: #cfb975;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23f9d976' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Footer */
footer {
  background-color: #2c0303 !important; /* dark red */
  color: #f9d976 !important; /* gold text */
  border-top: 3px solid #f9d976;
  box-shadow: 0 -4px 12px rgba(249, 217, 118, 0.5);
  padding: 3rem 2rem;
}


footer,
footer * {
  color: #e2cd8c !important;
}

footer h5 {
  color: #cbb870 !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

footer a {
  color: #af9c61cc !important;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

footer a:hover,
footer a:focus {
  color: #b8a86c !important;
}

/* Section Container */
section.container {
  background: #210000d2; 
  background-image: repeating-linear-gradient(
    90deg,
    rgba(196, 179, 90, 0.03),
    rgba(62, 8, 5, 0.03) 5px,
    transparent 5px,
    transparent 10px
  );
  border: 2px solid #c1ad73 !important; /* bright yellow border */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(201, 178, 109, 0.6); /* glowing yellow shadow */
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 2rem auto 3rem auto !important;
  font-family: 'Quicksand', sans-serif;
  color: #c6af6b; /* warm yellow text */
}

/* Hero Title */
section.container h1 {
  font-weight: 800;
  font-size: 3rem;
  color: #bea763 !important; /* bright yellow */
  text-shadow: 1px 1px 6px #4a0703; /* subtle dark red shadow */
  margin-bottom: 1rem;
}

section.container h3 {
  color: #bea763 !important; /* bright yellow */
  text-shadow: 1px 1px 6px #4a0703; /* subtle dark red shadow */
  margin-bottom: 1rem;
}

/* Hero Paragraph */
section.container p {
  font-size: 1.125rem;
  color: #ccb76d; /* softer yellow */
  font-weight: 500;
  line-height: 1.5;
}

/* Primary Button */
section.container .text-center a[href="/products"] {
  border: 2px solid #b9a566;
  background-color: transparent;
  color: #ac985e;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 217, 118, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

section.container .text-center a[href="/products"]:hover {
  background-color: #ac9b67;
  color: #000;
  box-shadow: 0 6px 16px rgba(172, 154, 100, 0.8);
}


/* Info Cards Grid */
section.container .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

/* Info Cards */
section.container article {
  background-color: #380202; /* dark red background */
  border: 1.5px solid #a6945c !important;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 10px rgba(146, 112, 10, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: #f9d976;
  min-height: 250px;
}

section.container article:hover {
  box-shadow: 0 8px 18px rgba(230, 198, 123, 0.772);
  transform: translateY(-5px);
}

/* Info Card Titles */
section.container article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #95875b;
}

/* Info Card Text */
section.container article p {
  font-size: 1rem;
  line-height: 1.4;
  color: #a4925acc; /* slightly transparent yellow */
}

/* Secondary Button */
section.container .text-center a[href="/about"] {
  border: 2px solid #f9d976;
  background-color: transparent;
  color: #f9d976;
  padding: 0.7rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 217, 118, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

section.container .text-center a[href="/about"]:hover {
  background-color: #cfba7a;
  color: #000;
  box-shadow: 0 6px 16px rgba(223, 197, 120, 0.8);
}

/* Product */
.card {
  background-color: black !important;
  color: white !important;
  border: 1px solid #a5975b; /* Tailwind yellow-400 */
}

/* Tabs*/
/* Base style for all nav-tabs */
.nav-tabs .nav-link {
  border: 2px solid rgb(151, 137, 78) !important; /* yellow border */
  color: rgba(168, 145, 87, 0.7); /* soft gold text */
  background-color: black;
  transition: all 0.3s ease;
  font-size: 0.80rem;
  margin-right: 8px; /* Adds horizontal space between tabs */
}


/* On hover (not active) */
.nav-tabs .nav-link:hover {
  background-color: #1a0101;
  color: rgb(167, 142, 81);
  box-shadow: 0 0 4px #ae9959;
}

/* Active tab styling */
.nav-tabs .nav-link.active {
  background-color: #1a0101;
  color: rgb(174, 149, 85);
  box-shadow: 0 0 7px #d4bc73;
}


/* Puzzle Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px; /* small gap between cards */
  padding: 1rem 0;
}

/* Product Card - Puzzle Tile Style */
.product-grid .card {
  background-color: black !important;
  color: white !important;
  border: 1.5px solid #9f925b;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 5px rgba(250, 204, 21, 0.1);
  transition: transform 0.2s ease;
}

/* Hover effect */
.product-grid .card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

/* Images fit the card tightly */
.product-grid .card-img-top {
  object-fit: cover;
  width: 100%;
  height: 180px;
  border-bottom: 1px solid #a79757;
}

/* Body of the card */
.product-grid .card-body {
  flex: 1;
  padding: 1rem;
  background-color: #1a0101;
}

/* Title styling */
.product-grid .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #91834d;
  margin: 0;
}

.custom-btn {
    background-color: #facc15; /* gold/yellow */
    color: #665403 !important; /* dark text forced */
    border: 2px solid #facc15;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.custom-btn:hover {
    background-color: #d4ac0d; /* darker gold on hover */
    color: #000;
    border-color: #d4ac0d;
}

/* Review Encouragement Box */
.review-box {
  background-color: #340404; /* light yellow */
  border: 2px solid #c1ac5b; /* gold border */
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(181, 163, 89, 0.4);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Review Heading */
.review-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #943f3f; /* deep yellow-brown */
  margin-bottom: 1rem;
}

/* Review Text */
.review-box p {
  font-size: 1.125rem;
  color: #a97c49; /* dark amber */
  margin-bottom: 1.5rem;
}

/* Review Button */
.review-btn {
  display: inline-block;
  background-color: #c3a765; /* golden yellow */
  color: #1c1917; /* almost black */
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.review-btn:hover {
  background-color: #dbbe69;
  transform: translateY(-2px);
}

.schedule-box {
  background-color: #380704; 
  border: 1px solid #fcd34d; 
  border-radius: 1rem; 
  padding: 2rem; 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
    margin-top: 4rem; 

}

.schedule-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.buttons-container {
  margin-bottom: 3rem; /* space between buttons and cards */
}





