@import url("../fonts/mikhak/font.css");
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: mikhak;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #e3ccae;
  max-width: 2560px;
  margin: 0 auto;
  background: linear-gradient(
      rgba(227, 204, 174, 0.95),
      rgba(227, 204, 174, 0.95)
    ),
    url("../images/iced-coffee-pattern-c.webp");
  background-repeat: repeat;
  background-size: contain;
}
body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768.99px) {
  html {
    background-size: 30%;
  }
}
img {
  max-width: 100%;
  max-height: 100%;
}
h1,
h2,
h3,
h4,
h5 {
  font-size: 1.3rem;
}
.btn {
  color: #fff;
  background-color: #b8621b;
  border: 0;
  outline: 0;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  transition: 0.3s ease;
}
.btn:hover {
  padding: 0.5rem 0.8rem;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
}
.btn-purple {
  background-color: #262a56;
}
.main-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    20% 70% / cover no-repeat url("../images/coffee-c.webp");
  color: #fff;
  height: 50vh;
  height: 50svh;
}
/* these break points are from bootstrap 5 container */
.container {
  width: 100%;
  margin: 0 auto;
}
/* @media (min-width: 576px) {
  .container {
    width: 540px;
  }
} */
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}
.main-header {
  height: 100vh;
  height: 100svh;
}

/* For mobile size */
.navbar {
  padding: 0.7rem 1rem;
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-logo {
  text-align: left;
  text-transform: capitalize;
  font-size: 1.3rem;
}
.navbar * {
  color: #fff;
}
.navbar .burger-btn {
  font-size: 1.5rem;
  cursor: pointer;
}
.navbar #burger-btn-inp:checked ~ .nav-links {
  transform: translate(0);
  box-shadow: -20px 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.navbar .nav-links {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  position: fixed;
  height: 100%;
  min-width: 50%;
  padding: 0.5rem;
  top: 0;
  right: 0;
  transition: 0.5s ease;
  transform: translate(100%);
  background: #e3ccae;

  background: rgba(227, 204, 174, 0.8);
  backdrop-filter: blur(12.8px);
  -webkit-backdrop-filter: blur(9px);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (orientation: portrait) {
  .navbar .nav-links {
    min-width: 60%;
  }
}
@media screen and (orientation: landscape) {
  .navbar .nav-links {
    min-width: 30%;
  }
}
.navbar .nav-links * {
  color: #000;
}
.navbar .nav-links .link {
  text-decoration: none;
  font-weight: bold;
}
.navbar .nav-links .link {
  text-decoration: none;
  font-weight: bold;
  display: flex;
}
.navbar .nav-links .link.panel {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 0.9rem;
}
.navbar .nav-links .link .icon {
  padding: 0 0.4rem;
  font-size: 1.2rem;
}
.navbar.dark * {
  color: #000;
}
/* Header content and description */
.main-header .header-content {
  height: 100%;
  font-size: 1rem;
  font-weight: lighter;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem 5rem 1rem;
}
.main-header .header-content .title {
  font-size: 2rem;
}
@media (min-width: 768.99px) {
  .navbar .nav-logo {
    text-align: left;
    text-transform: capitalize;
    font-size: 1.5rem;
  }
  .navbar:not(.dark) * {
    color: #fff;
  }
  .navbar .burger-btn {
    display: none;
  }
  .navbar .nav-links {
    flex-direction: row;
    position: static;
    height: auto;
    min-width: 50%;
    gap: 1.5rem;
    transform: translate(0);
    background: transparent;
    box-shadow: none !important;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .navbar .nav-links .link {
    transition: 0.3s ease;
  }
  .navbar .nav-links .link:hover {
    color: #f4dfc8;
  }
  .navbar.dark .nav-links .link:hover {
    color: #b8621b;
  }
  .navbar .nav-links .link.panel{
    border: 0;
    padding: 0;
  }
  .navbar .nav-links .link .icon {
    display: none;
  }
  .main-header .header-content {
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 768.99px) and (orientation: landscape) {
  .main-header .header-content {
    text-align: right;
    width: 50%;
    margin: unset;
  }
  .main-header .header-content .title {
    font-size: 2rem;
  }
}
.section {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 0.5rem;
}
.section .content {
  margin-bottom: 1rem;
}
.section .content .description {
  margin-bottom: 1rem;
}
.reservation .image {
  border-radius: 54% 46% 41% 59% / 49% 47% 53% 51%;
  width: 40%;
  margin-bottom: 1rem;
}
.address .location,
.address .location iframe {
  width: 100%;
}
.address .location iframe {
  height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 575.98px) {
  .section {
    grid-template-columns: repeat(2, 1fr);
  }
  .section .description {
    font-size: 1.2rem;
  }
  .reservation .image {
    width: 60%;
  }
  .address .content {
    align-self: start;
  }
}
/* Menu */
.menu {
  width: 100%;
  height: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  box-shadow: 0px 0px 29px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: #fff;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.menu .menu-header {
  border-bottom: 1px solid #fff;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu .menu-header .title {
  font-size: 1.5rem;
}
.menu .menu-header .back-btn {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}
.menu .list {
  display: grid;
}
.menu .list .link {
  color: #fff;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
}
.menu .list .link:hover {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.6);
}
.menu .list .link::before {
  content: "\F2E1";
  font-family: "bootstrap-icons";
  text-align: center;
  translate: 100vh;
  opacity: 0;
  transition: 0.35s ease;
}
.menu .list .link:hover::before {
  opacity: 100;
  padding-right: 1rem;
  padding-left: 0.3rem;
  translate: 0;
}
.menu .list .food {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0.5rem 0.6rem;
}
.menu .list .food .price,
.menu .list .food .name {
  font-weight: bold;
}
.menu .list .name {
  position: relative;
  display: flex;
  flex: 1;
}
.menu .list .name::after {
  flex: 1;
  content: "";
  margin: 0 0.2rem;
  border-bottom: dashed #fff 1px;
  transform: translateY(-40%);
}
.menu .list .food .price {
  text-align: left;
}
.menu .list .food .description {
  padding: 0.5rem 0;
  grid-column: 1 / span 2;
  white-space: 10rem;
  font-size: 0.9rem;
}
.main-footer {
  margin-top: auto;
}
.main-footer .social-media {
  text-align: center;
}
.main-footer .social-media .title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.main-footer .social-media .social-links {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.main-footer .social-media .social-links .link {
  height: 2rem;
  width: 2rem;
  transition: 0.2s;
}
.main-footer .social-media .social-links .link img {
  width: 100%;
  height: 100%;
}
.main-footer .social-media .social-links .link:hover {
  translate: 0 -30%;
  scale: 1.2;
}
@media (min-width: 768.99px) {
  .main-footer .social-media {
    display: flex;
    justify-content: center;
  }
  .main-footer .social-media .title {
    margin-left: 1rem;
    font-size: 1.3rem;
  }
  .main-footer .social-media .title::after {
    padding-right: 0.4rem;
    content: ":";
  }
}
