@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

:root {
    --cyan: #00878b;
    --gold: #dcb14a;
    --goldshadedark: #b68b23;
    --herobg: #e1e8f8;
    --mutedgrey:#6d6d6d;
  }

*
{
    padding: 0;
    margin: 0;
}

body{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: #f8f9fa!important;
}


section{
    margin-top: 4rem;
    margin-bottom: 4rem;
}

@media only screen and (max-width: 767px) {
    section{
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
}


a:hover, a:focus {
    color:var(--goldshadedark);
    text-decoration: none;
}

.ls-2{
    letter-spacing: 1.2px;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reset-anchor{
    color: inherit;
    text-decoration: none;
}

small, .small {
    font-size: 80%;
    font-weight: 400;
}

.text-small {
    font-size: 0.85rem !important;
    line-height: 2;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.text-gray {
    color: #aaa !important;
}


.btn {
    font-weight: 400;
    border: 1px solid transparent;
    font-family: inherit;
    padding: 0.375rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-dark{
    font-size: 0.75em;
    margin-top: 8px;
    letter-spacing: 1.25px;
}


/* navbar */
.navbar-light .navbar-toggler {
    border: none;
    color: transparent;
}

.navbar-brand{
    text-transform: uppercase;
    letter-spacing: 1.35px;
}

@media only screen and (max-width: 375px) {
    .navbar-brand{
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

.navbar-light .navbar-nav .nav-link {
    font-size: 0.85em;
    font-weight: 700;
    padding: 10px 15px 10px 15px;
    transition: all ease-in-out 0.20s;
    color: #000000;
}

.dropdown-item {
    font-size: 0.85em;
    font-weight: 400;
    padding: 10px 15px 10px 15px;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: var(--cyan);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--cyan);
}

/* Hero Section */
.hero-area{
    background-color: var(--herobg);
    background-image: url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 1441px) {
    .hero-area{
        min-height: 80vh;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1920px) {
    .hero-area{
        min-height: 50vh;
    }
}

.mini-text{
    font-size: 0.75em;
    color: #cacaca;
    letter-spacing: 1.25px;
}

.hero-title{
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 1.45px;
    margin-top: 5px;
    color: #fff;
}

/* Categories */
.category-item {
    display: block;
    position: relative;
    color: #343a40;
    transition: all 0.3s;
    margin-bottom: 25px;
}

.category-item img {
    transition: all 0.3s;
}

.category-item:hover img {
    opacity: 0.7;
}

.category-item-title {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgb(0 0 0 / 7%);
    font-size: 0.8rem;
}

/* product */
.product{
    margin-bottom: 25px;
}

.product img {
    filter: grayscale(40%);
    transition: all 0.3s;
}

.product:hover img {
    opacity: 0.4;
}

.product-overlay {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0;
    opacity: 0;
    transition: all 0.3s;
}

.product:hover .product-overlay {
    opacity: 1;
}

.product-name{
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 900;
    line-height: 1.2;
    color: inherit;
    transition: all 0.3s;
    text-decoration: none;
}

/* product description */
.nav-tabs{
    border-bottom: 1px solid #cacaca!important;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover, .nav-tabs .nav-item.show .nav-link {
    background: #111111;
    background-color: #111111;
    color: #fff;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
}


/* catalog page */
.breadcrumb-item {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 900;
    color: #111111;
}

/* pagination */
.page-link {
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #111111;
    background-color: none;
    border: 1px solid #eee;
    margin: 0.2rem;
    transition: all 0.3s;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #111111;
    border-color: #111111;
}

/* product detail page */
.quantity {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-family: inherit;
}

.quantity button {
    background: none;
    border: none;
    width: 1rem;
    outline: none;
}

.quantity input {
    width: 2rem;
    text-align: center;
}


.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.shadow-0 {
    box-shadow: none !important;
}


/* footer */

.bg-dark {
    background-color: #111111 !important;
}

.footer-link {
    font-size: 0.85rem;
    position: relative;
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link:hover, .footer-link:focus {
    padding-left: 0.6rem;
    color: #fff;
    text-decoration: none;
}

.footer-link:hover::before, .footer-link:focus::before {
    opacity: 1;
}

.footer-link::before {
    content: '\f0da';
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #fff;
    transition: all 0.3s;
    opacity: 0;
}

/* Contact Page Styling */
.contact h1 {
    font-family: "playfair";
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #858585;
}

.contact h1 span {
    color: #111111;
    position: relative;
    left: 13px;
    top: -35px;
}

  .contact-container {
    font-family: "Playfair", serif;
    font-size: 1.4rem;
    font-weight: 500;
      background: #fff;
      box-shadow: 0 5px 25px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }
    .right-panel {
      background: url('/themes/saffron/assets/images/bg.jpg');
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      padding: 2rem;
    }
    .contact-box {
      background: #414141;
      color: #fff;
      padding: 0.75rem 1rem;
      font-size: 1.3rem;
      position: relative;
      right: 12px;

    }

    @media only screen and (max-width: 768px) {
        .contact-box{
            right: 0px;
        }
    }

    .input, .textarea {
      border: none !important;
      border-bottom: 1px solid #bbb !important;
      border-radius: 0 !important;
      background: transparent !important;
      font-size: 1.2rem;
      padding: .5rem 0;
      box-shadow: none !important;
    }

.send-button {
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 2rem;
  margin-top: 1rem;

  position: relative;
  padding-right: 2rem; /* space for icon */
  cursor: pointer;
}

.send-button::after {
  content: "\f1d8";
  font-family: "Font Awesome 5 Pro"; /* or "Font Awesome 6 Pro" if that’s what you use */
  font-weight: 900; /* solid style — adjust if you want regular/light */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}