@import url(mainstyle.css);

*{
    scroll-behavior: smooth;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;  
}
.btn-close {
    background-image: unset;
}
a{
    color: inherit;
    text-decoration: none;
}

[data-caffilo-theme="dark"] [data-logo="dark"],
[data-caffilo-theme="light"] [data-logo="light"] {
    display: block;
}

[data-caffilo-theme="dark"] [data-logo="light"],
[data-caffilo-theme="light"] [data-logo="dark"] {
    display: none;
}

.nav-link{
    color: var(--nav-text);
    font-weight: 600;
    font-size: 18px;
}
.nav-link:focus{
    color: var(--nav-text) !important;
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
    color: #ceb796;    
}
::placeholder{
    color: var(--input-text) !important;
    opacity: 0.5 !important;
}

.head-content{
    width: 920px;
    margin: auto;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.theme-btn{
    min-width: 50px;
    min-height: 50px;
}

.icons-bg{
    min-width: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}

.banner-img {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.554) 0%, rgba(0, 0, 0, 0.554) 100%), url('../../assets/images/about.jpg') no-repeat; 
    background-size: cover;
    background-position: center;
    min-height: 600px;
}
.banner-content{
    max-width: 720px;
    width: 100%;
}
/* banner title after & before css */
.banner-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #ceb796;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 20px; /* spacing between text and lines */
  background: #fff; /* set your page bg color to hide line behind text */
}

.banner-title::before,
.banner-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9999px; /* huge width to fill entire row */
  height: 3px;
  background-color: #ceb796;
}

.banner-title::before {
  right: 100%;   /* line extends to left edge */
  transform: translateY(-50%);
}

.banner-title::after {
  left: 100%;    /* line extends to right edge */
  transform: translateY(-50%);
}


.coffee-img{
    height: 100%;
    width: 100%;
    max-height: 500px;
    border: 5px solid var(--prime-border);
}

.menu-tabs .nav-links {
    background: #f8f2e6;
    margin-bottom: 18px;
    padding: 18px;
    font-weight: 700;
    text-align: center;
    color: #000;
    font-size: 20px;
}
.menu-tabs .nav-links.active ,.nav-links:hover {
    background: #f5e7d0;
    color: #c9a46a;
}

.menu-content-box {
    background: #fffaf0;
    border: 4px solid #c9a46a;
    padding: 30px;
    max-height: 350px;
    height: 100%;
}
.menu-item h4{
    display: flex;
    justify-content: space-between;
}

.item-title{
    border-bottom: 1px solid #c9a46a;
}

.coffee-img2{
    height: 100%;
    width: 100%;
    max-height: 500px;
    border: 5px solid var(--prime-border);
    padding: 15px !important;
}
.gallery-img{
    height: 100%;
    width: 100%;
    max-height: 500px;
}


/* top deal */
 .deal-card{
    width: 300px;
    background:var(--card-bg);
    padding: 0px;
    position: absolute;
    top: -15%;
    left: -10%;
    outline: 4px solid var(--prime-border);
    outline-offset: 15px;
}
@media (max-width) {
    
}
@media(max-width:600px){
.deal-card{
    width: 100%;
    padding: 10px;
    position: relative;
    top: unset;
    left: unset;
    outline: none;
}
.deal-card-wrapper img{
    max-width: 300px;
}
}

.contact-img{
    height: 100%;
    max-height: 600px;
    width: 100%;
    overflow: hidden;
}

.error{
    color: red;
    text-transform: capitalize;
}
#newsletter div.error{
    position: absolute;
    bottom: -25px;
}