@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

@font-face {
  font-family: 'Typo-Grotesk';
  src:url('Typo-Grotesk.ttf.woff') format('woff'),
      url('Typo-Grotesk.ttf.svg#Typo-Grotesk') format('svg'),
      url('Typo-Grotesk.ttf.eot'),
      url('Typo-Grotesk.ttf.eot?#iefix') format('embedded-opentype'); 
  font-weight: normal;
  font-style: normal;
}

:root {
  --brown : #33130a;
  --red : #fe7e6d;
}

html {
  scrollbar-width: none;
}

body {
  width: 100vw;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: hidden;
}

body::-webkit-scrollbar{
  width: 0;
}

* {
  font-family: 'Typo-Grotesk', sans-serif;
}

.special-background{
  background-color: var(--brown);
  background-image: url('../imgs/coffee-beans.png');
  background-size: 35em;
}

section {
  min-height: 100vh;
}

/* Start Nav Style */

nav.navbar {
  background-color: #00000080;
}

.navbar-brand {
  font-family: 'Abril Fatface', cursive;
}

/* End Nav Style */

/* Start landing */

#landing {
  height: 100vh;
}

.landing-img {
  width: 60%;
}

.landing-button {
  text-decoration: none;
  background-color: var(--red);
  color: var(--brown);
  letter-spacing: .1em;
  padding: .5em 1em;
  border-radius: 2em;
  border: 1px solid var(--red);
  outline: none;
  transition: .3s;
}

.landing-button:hover {
  background-color: var(--brown);
  color: var(--red);
}

/* End landing */

/* Start About section */

.about-img {
  width: 70%;
}

/* End About section */

/* Start Menu Section */

.pagination {
  margin: auto;
  width: 40%;
}

.pagination-button {
  border: none;
  outline: none;
  padding: .5rem 1rem;
  border-radius: 5em;
  color: var(--brown);
  transition: .3s;
}

.pagination-button.active,
.pagination-button:hover {
  background-color: var(--red);
  color: white;
}

.card-menu {
  width: 12rem;
  color: white;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(9px);
}

.hidden {
  display: none !important;
}

.menu-img {
  width: 60%;
}

.card-title {
  font-weight: bold;
}

/* End Menu Section */

/* Start Testimonial Section */

#testimonial .card {
  background-color: #eee;
}

#testimonial .card img {
  width: 5em;
  border-radius: 15em;
}

ion-icon[name = "star"],
ion-icon[name = "star-outline"] {
  color: yellow;
}

.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}

/* End Testimonial Section */

/* Start Location */

.mymap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

#map {
  width: 90%;
  height: 75vh;
  border-radius: 30px;
}

/* End Location */

/* Start Footer */

#footer {
  color: white;
  font-size: 1.3em;
}

.footer-icon {
  font-size: 1.2em;
  background-color: var(--red);
  color: var(--brown);
  padding: .7em;
  border-radius: 10em;
}

/* End Footer */