/* Main Tags
***********************************/
html, body {
  height: 100%;
}

body {
  background-color: #f7f7f7;
  color: #333;
  font-family: sans-serif;
}

h1 {
  font-size: 2rem;
  color: #0079c0;
}

#homepage-h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  color: #0079c0;
}

h3 {
  color: #333333;
  font-size: 1.25rem;
  font-weight: bold;
}

h4 {
   font-size: 1.1rem;
   font-weight: bold;
   text-decoration: underline;
}


/* Main Menu Tags
***********************************/
.nav-link {
    color: #0069d9;
}

.nav-link:hover {
    color: #004494;
}

.dropdown-item:hover {
  background-color: #136EFD;
  color: gold !important;
} 

#shopDropdown.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #004494;
}

.dropdown-divider {
  border-top: 1px solid #ececec6e; /* your desired color */
  /* or for thicker line: border-top: 2px solid #d35400; */
}

.dropdown-menu a:hover {
  text-decoration: underline;
}

.dropdown-menu .dropdown-item:hover i {
  color: gold !important; /* or any color you like */
}

.container-fluid {
    background-color: #004494 !important;
}


/* Breadcrumb Tags
***********************************
.breadcrumb {
  --bs-breadcrumb-divider: '>';
}/


/* Homepage Cards
***********************************/
.category-card {
  transition: transform 0.3s ease;
  cursor: pointer;
  background-color: rgba(173, 216, 230, 0.3);
}

.category-card:hover {
  transform: scale(1.04);
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 0 5px rgba(21, 57, 108, 0.6) !important;
  background-color: #FEE76B;
  border: 1px solid lightgray;
}


/* Item Cards
***********************************/
.item-card {
  background: white;
  padding: 0;
  border-radius: 8px;
  border: 1px solid lightgray;
  transition: box-shadow 0.3s ease;
  /*background-color: #ececec6e; */
  border: 1px solid #ced4da; /* Light gray border */ 
}

.item-card:hover {
  transform: scale(1.04);
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 0 5px rgba(21, 57, 108, 0.6);
  background-color: #FEE76B;
  border: 1px solid lightgray;
}

.item-card:hover .border-top {
  border-color: darkgray !important; /* Change to the desired border color on hover */
}

#modalThumbnails img.img-thumbnail {
  transition: transform 0.2s ease;
  cursor: pointer;
}

#modalThumbnails img.img-thumbnail:hover {
  transform: scale(1.1);
  border-color: #0a58ca !important; /* Bootstrap primary dark */
}

.checkmark {
  font-size: 4rem;
  color: #28a745;
  animation: pop 0.5s ease-out;
}

@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}


/* Contact US Form Tags
***********************************/
label {
  font-weight: 600;
}

label::after {
  content: ':';
  font-weight: 100 !important;
}

#remove-photo-label::after {
  content: none;
}

input, textarea, select {
  /* border: 1px solid #ced4da; Light gray border */
  /* background-color: #ececec6e !important; */
  box-shadow: 0 0 3px rgba(0,0,0,0.05); /* Optional subtle shadow */
}

input::placeholder, textarea::placeholder {
    font-style: italic;     /* makes it italic */
    font-size: 0.9em;       /* makes it slightly smaller */
    color: #666;            /* optional: softer gray color */
}

.required {
  color: red;
}


/* Footer Tags
***********************************/
footer h5 {
  color: gold;
  font-size: 1rem;
}

footer a {
  color: #fff;
  font-size: 0.85rem;
}

footer a:hover {
  color: gold;
  text-decoration: underline !important;
}

/* Item Upload Form Tags
***********************************/
.notice {
  padding: 8px;
  margin: 0 0 25px 0;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
}

.notice.success {
  background-color: #4CAF50; /* green */
}

.notice.deleted {
  background-color: #f44336; /* red */
}

.notice.warning {
  background-color: #ff9800; /* orange */
}

.notice.updated {
  background-color: #2196F3; /* blue */
}

.noItemsMessage {
  font-style: italic;
  color: #666;
  margin-top: .5em;
}