@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Anek+Telugu:wght@200&family=Baskervville&family=Cormorant+Garamond:ital,wght@1,500&family=Dosis:wght@500&family=Inconsolata&family=Karla:wght@200&family=Quicksand:wght@500&family=Spectral:wght@300&family=Square+Peg&display=swap');

*{
  margin:0;
  padding:0;
  }

/************************************ Normal Nav **************************************/

  ul,li{
    list-style: none;
    text-decoration: none;
  }
  
  .topnav a{
    text-decoration: none;
    color: black;
    font-family: 'Karla', sans-serif;
    font-size: 2.5vmin;
    text-transform: uppercase;
  }
  
  .topnav a:hover{
  color: rgb(218, 211, 203);
  }
  
  .topnav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: hidden;
  }
  
  
  /* Change applies to li but not to the logo */
  .topnav li:not(.centered-logo){ 
    flex-grow: 1;
    text-align: center;
  }
  
  /* Change the size of the img */
  .logo img{
    width:200px ;
  }
  
  .centered-logo{
    margin-left: auto;
  }

 /************************************ Dropdown Menu **************************************/

  .icon-container {  /*Contain the menu icon */
    position: absolute;
    right: 0px;
    top: -60px;
    z-index: 100;
    width: 100px;
    height: 200px;
    background: transparent;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    display: none;
  }
  
  label .hamburger { /* Second line of the icon */
    position: absolute;
    top: 135px;
    left: 40px;
    width: 30px;
    height: 2px;
    background: black;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  /* First and Third line of the icon */
  label .hamburger:after, label .hamburger:before { 
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: black;
  }
  
  label .hamburger:before { top: -10px; }
  
  label .hamburger:after { bottom: -10px; }
  
  label input { display: none; } /* the toggle box, when it is clicked, menu will be displayed */
  
  label input:checked + .icon-container { /*Spread out the white background */
    box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF; /* Bring out the full-size white background when the icon is clicked  */
    border-radius: 0;
    background: white !important;
  }

  /* Animation of the icon */
  label input:checked + .icon-container .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: black;
  }
  
  label input:checked + .icon-container .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;
    background: black;
  }
  
  label input:checked + .icon-container .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;  
    background: black;
  }

 /* Display the menu when click */ 
 label input:checked + .icon-container + ul { 
  opacity: 1; 
}
  
   label ul { 
    z-index: 100;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
    list-style: none;
    line-height: 3.5rem;

  }
  
  label a {
    margin-bottom: 1em;
    display: block;
    color: black;
    text-decoration: none;
    font-family: 'Karla', sans-serif;
    font-size: 4vmin;
    text-transform: uppercase;
    text-align: center;

  }

 label a:hover{
   color: rgb(218, 211, 203); 
 }

 /************************************ Carousel **************************************/

  .carousel-control-next-icon,
  .carousel-control-prev-icon, .carousel-indicators {
    filter: invert(1); /* prev,next icon to black color */
  }

  .carousel-inner .carousel-caption .caption-1{
    color: black;
    font-family: 'Spectral', serif;
    text-transform: uppercase;
    font-size: 40px;
    width: 30%;
    margin-left: -5%;
    margin-bottom: 29%;
  
  }

  .carousel-inner .carousel-caption .caption-2 {
    color: black;
    font-family: 'Spectral', serif;
    text-transform: uppercase;
    font-size: 34px;
    width: 30%;
    margin-left: 80%;
    margin-bottom: 34%;

  }

  .carousel-inner .carousel-caption .caption-3 {
    color: black;
    font-family: 'Spectral', serif;
    text-transform: uppercase;
    font-size: 40px;
    width: 30%;
    margin-left: 76%;
    margin-bottom: 34%;
  }

/************************************ About Us Section **************************************/
.about-container{
  background-color: #f5ecea;
  width: 100%;
  display: flex;
  
}

.about-content-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  font-family: 'Karla', sans-serif;
}

.about-header{
  padding-top: 1rem;
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  font-family: 'Baskervville', serif;
  text-transform: uppercase;
}

.about-text{
  padding: 3rem;
  text-align: center;
  width: 85%;
  font-size: 25px;
}

.about-button{
  margin-top: 1rem;
  margin-bottom: 3rem;
  border-style: solid;
  border-color: rgb(168, 155, 155);
  background-color: transparent;
  border-radius: 30px;
  width: 140px;
  padding: 10px 20px;
  display: inline-block;
  font-size: 20px;
  }
  
.about-button:hover{
  opacity: 0.5;
  }

  .about-pic {
    width: 30%;
   height: auto;
    display: flex;
    margin-left: 15%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

/************************************ Recipe Card Section **************************************/
.recipe-section-title {
  font-family: 'Baskervville', serif;
  text-transform: uppercase;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.component{
  margin: 1rem;
}

.btn-outline-dark:hover{
  opacity: 0.5;
  background-color: rgb(168, 155, 155);
}

.card-text{
  text-align:center;
  font-family: 'Karla', sans-serif;
}

.img-3{
  height: 310px;
}
/************************************ Subscribe Section **************************************/

.subscribe-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 400px;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background-color: #f5ecea;
}

.subscribe-header,.subscribe-text,.subscribe-button {
  font-family: 'Karla', sans-serif;
}

.subscribe-header{
font-weight: 800;
text-transform: uppercase;
font-size: 40px;
font-family: 'Baskervville', serif;
}

.subscribe-text{
padding-top: 1rem;
text-align: center;
font-size: 20px;
}

.subscribe-button{
    margin-top: 1rem;
    border-style: solid;
    border-color: rgb(168, 155, 155);
    background-color: transparent;
    border-radius: 30px;
    width: 130px;
    padding: 10px 20px;
    display: inline-block;
    font-size: 18px;
    }

.subscribe-button:hover{
  opacity: 0.5;
}

/************************************ Footer **************************************/

.container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  overflow: hidden;
}


.ml3 {
  font-weight: 900;
  font-size: 3.5em;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: black;
}

.site-footer
{
  background-color:#26272b;
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#e9edee
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}

/************************************ Responsive Setting **************************************/

@media screen and (max-width: 768px) {

  .topnav .nav-link {
  display: none;
  }
  
  .logo img{
    width: 180px;
    margin-top: 15px;
  }
  
  .centered-logo{
  margin-left: -80%;
  margin-top: -30px;
  }
  
  .icon-container{
  display: block;
  }

  .about-header{
font-size: 30px;
margin-top: 3rem;
width: 85%;
  }

  .about-text{
    width: 100%;
    font-size: 23px;
  }

  .about-button{
   font-size: 17px;
   width: 125px;
  }

  .about-pic{
    display: none !important;
  }

.recipe-section-title{
padding-top: 1rem;
}

.subscribe-header{
  font-size: 30px;
}

  .subscribe-text{
width:320px;
  }

  }
