@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@100;300;400;900&family=Playfair+Display:wght@400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500&display=swap');
/* custom properties */

:root {
  --mainFont: "Open Sans Condensed", sans-serif;
  --mainFont1: 'Dosis', sans-serif;
  --mainFontLogo: "Londrina Solid", cursive;
  --white: #ffffff;
  --primary:#9c161f;
  --red-brown:#893f1c;
  --secondary: #3a5539;
  --rust: #a57e4e;
 --mainLtOrange: #fcaa40;
  --cream: #c5ae89;
  --cream-light: #c7bc94;
  --cream-b: #d6cdbf;
  --gray: #cbc3c0;
  --light-gray1: #faf9f9;
  --light-gray2: #f4f4f4;
  --light-gray3: #7a757e;
  --dark-gray: #272727;
  --translusentGray: rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-med: 0 2rem 4rem rgba(0, 0, 0, 0.4);
  --line: 1px solid #f4f4f4;
  --text-shadow: 2px 2px #161616;
  --text-shadow-light: 2px 1px #ffffff;
  --text-shadow1: 1px 1px #4e5051;
  --box-shadow: 2px 2px 2px #4a4744;
  --box-shadow-light: 0 1px 2px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  overflow: hidden !important;
  width: 100%;
  height: 100%;
  font-family: var(--mainFont);
}

#banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url("../img/fries\ &\ sauce.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.banner-heading {
  color: #fff;
  font-family: var(--mainFontLogo);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
}
.text-ittalic {
  font-style: italic;
  color: var(--white);
  font-weight: bold;
  text-shadow: var(--text-shadow);
  font-size:1.6rem;
}
.text-accent {
  font-family: var(--mainFontLogo);
}
.sub-heading {
  font-size: 3rem;
  text-shadow: var(--text-shadow1);
  font-family: var(--mainFont);
  text-align: center;
  color: var(--white);
  font-weight: 200;
  text-transform: capitalize;
}


@media (max-width: 900px) {
.image-wrapper{
display:flex;
flex-direction:column;
}

}
@media (max-width: 768px) {
  .banner-heading {
    font-size: 2.7rem;
  }
  .sub-heading {
    font-size: 2.2rem;
  }
}


@media (max-width: 576px) {
  .banner-heading {
    font-size: 2.2rem;
  }
  .sub-heading {
    font-size: 1.9rem;
  }

}


.banner-paragraph {
  color: #eee;
  font-family: var(--mainFont);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-align: justify;
  text-transform: capitalize;
}

.modal-title {
  color: var(--white);
  font-size: 3rem;
  font-family: var(--mainFont1);
}
.modal-dialog {
  max-width: 1000px !important;
}
.modal-header {
  border-bottom: none;
  padding: 1rem;
}
.modal-content {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/fries\ &\ sauce.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.button-close {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--mainFont1);
}
h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2.6rem;
}
h3 {
  font-size: 2.4rem;
}
h4 {
  font-size: 2.2rem;
}
h5 {
  font-size: 2rem;
}
h6 {
  font-size: 1.8rem;
}
p {
  font-size: 1.5rem;
  font-weight:200;
  font-family:var(--mainFont) ;
}
.card-title {
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
}
.card-text {
  color: var(--white);
  font-weight: 200;
  font-size: 1.3rem;
}
.product-price {
  margin-bottom: 0;
}
.product-price {
  color: var(--white);
  font-family: var(--mainFont1);
  font-size: 2rem;
}

.modal-footer {
  border-top: none;
}
/*== VIEWPORT CLASSES==*/
.max-viewport {
  min-height: 100vh;
}

.btn {
  width: 170px;
  padding: 10px 15px;
  margin-right: 20px;
  border-radius: 0px;
  font-family: "Josefin sans", Sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  cursor: pointer;
  color: #fff;
  background-color: var(--secondary);
  border: 2px solid var(--rust);
  transition: transform 0.3s;
}
.btn:focus,.btn:active {
   outline: none !important;
   box-shadow: none;
}

.btn-small {
  width: 130px;
}
.product-card-btn:hover {
  background-color: var(--cream-light);
}
.product-card-btn {
  width: 170px;
  padding: 10px 15px;
  margin-right: 20px;
  border-radius: 50px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "Josefin sans", Sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  outline: none;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  border: 2px solid var(--white);
  transition: color transform 0.3s;
  text-align: center;
}

a {
  color: #ffffff;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

li {
  list-style: none;
  font-weight: 200;
  font-size: 1.2rem;
}

.title {
  font-family: var(--mainFont1);
  font-weight: 300;
  margin-top: 1rem;
  font-size: 1.5rem;
  text-transform: capitalize;
}
.table-wraper {
  background-color: var(--primary);
  padding: 1rem;
  color: var(--white);
  text-align: center;
  max-width:100%;
}

.img-fluid{
  width:100%;
}
.soap-line {
  text-align: center;
  color: var(--white);
  line-height: 1.9rem;
}

.copy-text {
  font-size: 1rem;
}
