body {
    font-family: 'Arial', sans-serif;
    background-color: rgb(108, 99, 85);
    margin: 0;
    padding: 0;
}

.navbar {
    margin-bottom: 0px;
    background: #F0C27B;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, rgb(108, 99, 85), #F0C27B);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, rgb(108, 99, 85), #201b12); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: white;
}

.navbar:hover{
    color: #532000;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: -1; /* Pushes the video behind the content */
}

.hero .container {
    z-index: 2; /* Ensure the content is on top of the video */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay to enhance text readability */
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Cursive', sans-serif;
}

.hero p {
    font-size: 1.1rem;
    margin: 20px 0;
}

.welcome-section {
    background: #F0C27B;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, rgb(108, 99, 85), #F0C27B);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, rgb(108, 99, 85), #201b12); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: #fff;
}

.welcome-section h2 {
    font-family: 'Cursive', sans-serif;
    font-size: 3rem;
    text-align: center;
    padding-top: 28px;
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 20px 0;
}

.welcome-section .btn {
    background-color: #fff;
    color: #532000;
    border: none;
    padding: 10px 20px;
}

.welcome-section .btn:hover {
    background-color: #c8a89e;
    color: #fff;
}

.welcome-section img {
    border-radius: 10px;
    max-width: 100%;
}

/* .products .card {
    margin-bottom: 20px;
} */

.on-sale {
    background-image: url('imgs/5.jpg');
    background-size: cover;
    
    background-color: #eae7dc;
}

.footer {
    background: #F0C27B;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, rgb(108, 99, 85), #F0C27B);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, rgb(108, 99, 85), #201b12); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        color: #fff;
    text-align: left;
}

.footer h5 {
    font-size: 1.5rem;
    font-family: 'Cursive', sans-serif;
    margin-bottom: 20px;
}

.footer p {
    margin: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #d7b9a7; /* Hover color for links */
}

.footer .list-inline-item {
    margin-right: 20px;
}

.footer .list-inline-item a {
    color: #fff;
    font-size: 1.2rem;
}

.footer .list-inline-item a:hover {
    color: #d7b9a7; /* Hover color for social icons */
}

.footer i {
    margin-right: 8px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  section {
    /* height: 100vh; */
    width: 100%;
    display: grid;
    place-items: center;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    padding-top:10px;
  }
  .column {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
  }
  .card {
    width: 100%;
    height: 100%;
    padding: -1em 1.5em;
    background: linear-gradient(#201b12 50%, rgb(66, 61, 52) 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
  }
  h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 2em 0;
  }
  h5 {
    font-size:17px;
    }
  p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .icon-wrapper {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }
  .card:hover {
    background-position: 0 100%;
  }
  .card:hover .icon-wrapper {
    background-color: #ffffff;
    color: #8CA6DB;
  }
  .card:hover h3 {
    color: #ffffff;
  }
  .card:hover p {
    color: #f0f0f0;
  }
  @media screen and (min-width: 768px) {
    section {
      padding: 0 2em;
    }
    .column {
      flex: 0 50%;
      max-width: 50%;
    }
  }
  @media screen and (min-width: 992px) {
    section {
      padding: 1em 3em;
    }
    .column {
      flex: 0 0 33.33%;
      max-width: 33.33%;
      padding-top: 15px;

    }
  }


  .title{
    color: white;
    text-align: center;
    padding-top: 10px;
  }

  .show{
border: none;
background-color: #201b12;
background: #201b12;
  }