@tailwind base;
@tailwind components;
@tailwind utilities;

 /* Custom Fonts */
body {
  font-family: 'Inter', sans-serif;
  background-color: #fffbeb; /* Amber background */
}

html {
  scroll-behavior: smooth;
}
nav{
  box-shadow: 0 -5px 15px #086ad84a;
  background-color: #365314;
}
.main-bg-color{
  background-color: #fff;
}
/* Custom Utility Classes */
.bg-olive {
  background-color: #365314;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 24 24'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/%3E%3C/svg%3E");
    cursor: pointer;
    opacity: 1;
    filter: none;
}

input[type="date"]::-moz-calendar-picker-indicator {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 24 24'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z'/%3E%3C/svg%3E");
    cursor: pointer;
}

input[type="date"] {
    text-transform: uppercase;
    color-scheme: dark;
    background-color: #fff; 
    border-color: #fff;
    color: black;
}
.text-heading{
  color: #323232;
}
.text-btn-item{
  color: #4f555a;
}
.text-btn-item:hover{
  color: #b45309;
}
.text-nav-item{
  color: #f8fafc;
}
.text-nav-item-link{
  color: #fde68a;
}
.text-nav-item:hover{
  color: #fde68a;
}
.text-white{
  color: #fff;
}
.text-gold {
  color: #b45309;
}
.hover\:text-brown:hover {
  color: #78350f;
}
.border-gold {
  border-color: #b45309;
}

.text-brown {
  color: #78350f;
}

.bg-golden-brown {
  background-color: #92400e;
}

.hover\:bg-golden-brown-dark:hover {
  background-color: #78350f;
}


.bg-apricot {
  background-color: #fff5ed;
}

.hover\:bg-amber-200:hover {
  background-color: #fef3c7;
}