@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");

/* Elements */

:root {
  --primary: #c41414;
  --primary-dark: #b00000;
  --secondary: #eeeeee;
  --secondary-dark: #dadada;
  --light: #e6e6e6;
  --dark: #150a00;
  --primaryFont: "Roboto", sans-serif;
  --headingFont: "Roboto", sans-serif;
}

@media (max-width: 576px) {
  ::-webkit-scrollbar {
    height: 8px;
    background-color: #f5f5f5;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(207, 207, 207);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primaryFont, sans-serif);
  font-weight: 400;
  background-image: url("../images/fresh-snow.jpg");
  min-height: 100vh;
}
body.prevent-scroll {
  overflow: hidden;
  height: 100vh;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--headingFont, sans-serif);
  font-weight: 700;
}
h2 {
  position: relative;
  display: inline-block;
}
h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -5rem;
  width: 4rem;
  height: 3px;
  background: var(--primary);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
h2::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -5rem;
  width: 4rem;
  height: 3px;
  background: var(--primary);
  transform: translateY(-50%);
}
h2.no-lines::after,
h2.no-lines::before {
  content: none;
}
@media (max-width: 992px) {
  h2::before {
    left: -4rem;
    width: 3rem;
  }
  h2::after {
    right: -4rem;
    width: 3rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
  }
  h2::before {
    left: -3rem;
    width: 2rem;
  }
  h2::after {
    right: -3rem;
    width: 2rem;
  }
}

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

section {
  padding: 6rem 0;
}

@media (max-width: 576px) {
  section {
    padding: 4rem 0;
  }
  h2 {
    font-size: 2rem;
  }
}

span.red {
  color: var(--primary);
}

/* POPUP */

.popup-overlay {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display: none;
  position: fixed;
  z-index: 1500;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
}
.popup__body {
  height: auto;
  max-height: 80vh;
  width: 100%;
  max-width: 700px;
  margin: 100px auto;
  background-color: white;
  color: #000;
  position: relative;
  z-index: 103;
  padding: 35px 35px;
  border-radius: 5px;
  box-shadow: 0 2px 5px #000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.popup__body img {
  display: block;

  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
}

.popup__body p {
  color: #333;
}

.popup__body a {
  text-decoration: none;
}

.popup__body .heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
}

.popup__body .second-heading {
  text-align: center;
}

.popup__body .close-btn {
  color: #000;
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .popup__body .heading {
    font-size: 20px;
  }
  /* .popup__body img {
		  width: 100%;
		  max-width: 190px;
		  margin-bottom: 10px;
	  } */
}

/* HEADER */
header {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  background-image: url("../images/header01.jpg");
  -webkit-background-size: contain;
  background-attachment: scroll;
  background-size: cover;
  background-position: top center;
  z-index: 0;
  text-align: center;
}

header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

header > div {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.heading {
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 7rem;
  font-family: var(--headingFont);
  color: white;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

header p.desc {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.7rem;
  font-weight: 300;
}

header p.desc span {
  position: relative;
  top: 2px;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  margin-right: 0.2rem;
  margin-left: 0.6rem;
}

.header-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--headingFont);
}

.order-btn,
.call-btn {
  padding: 12px 33px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
  font-family: var(--primaryFont);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 20px 20px;
}

.order-btn {
  background: var(--primary);
  color: #fff;
}

.order-btn:hover,
.order-btn:focus {
  background-color: var(--primary-dark);
  color: #fff;
}

.call-btn {
  background: var(--secondary);
  color: black;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.call-btn:hover,
.call-btn:focus {
  background-color: var(--secondary-dark);
  color: black;
}

.order-btn:hover,
.call-btn:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

header .social {
  position: absolute;
  right: 20px;
  bottom: 0;
}
header .social a {
  font-size: 2.3rem;
  margin: 0 3px;
  color: #fff;
}
header .social a:hover {
  opacity: 0.8;
}

@media (max-width: 992px) {
  header p.desc {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .heading {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 5rem;
    font-family: var(--headingFont);
  }
  header {
    height: 95vh;
  }
  .header-btns {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .order-btn,
  .call-btn {
    width: 210px;
    font-size: 1rem;
  }
  header .social {
    display: none;
  }
}
/* APP */
#app {
  background-color: var(--primary-dark);
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 20%,
    rgba(0, 0, 0, 0.15) 100%
  );
  color: white;
}

#app p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

#app h2 {
  margin-bottom: 25px;
  font-size: 3rem;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

#app .app-btns {
  display: flex;
  flex-direction: row;
}

#app .app-btns a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

#app .app-btns img {
  max-width: 200px;
  margin-right: 30px;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

#app .mobil-img {
  max-width: 400px;
  border: none;
  animation: float 8s ease-in-out infinite;
}

@media (max-width: 576px) {
  #app {
    padding-bottom: 40px;
    text-align: center;
  }
  #app h2 {
    font-size: 2rem;
  }

  #app .app-btns {
    flex-direction: column;
    align-items: center;
  }
  #app .app-btns img {
    max-width: 150px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* ABOUT */
#about {
  position: relative;
  padding: 40px 0 150px;
}
#about > div {
  position: relative;
}
#about h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}
#about h3 {
  font-size: 2rem;
}

#about p {
  font-size: 1.1rem;
  color: var(--dark);
}
#about strong {
  font-weight: 600;
}
#about a {
  font-weight: 600;
  color: var(--primary);
}
#about a:hover {
  color: var(--primary-dark);
}
@media (max-width: 992px) {
  #about {
    padding: 40px 0 0px;
  }
}
@media (max-width: 768px) {
  #about h2::after,
  #about h2::before {
    content: none;
  }
}
@media (max-width: 576px) {
  #about {
    padding: 40px 0;
  }
  #about h2 {
    font-size: 2.3rem;
  }
  #about h3 {
    font-size: 1.9rem;
  }
  #about p {
    font-size: 1.05rem;
  }
}

/* AKCE */
#akce {
  position: relative;
  background-color: var(--primary-dark);
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 20%,
    rgba(0, 0, 0, 0.15) 100%
  );
  color: white;
  padding: 40px 0;
}
#akce h2 {
  text-transform: uppercase;
  font-size: 3rem;
}
#akce p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
#akce p:last-of-type {
  margin-bottom: 25px;
}
#akce p.desc {
  font-size: 2rem;
  font-weight: 600;
}
#akce p.desc span {
  font-size: 1.2rem;
}
#akce .call-btn {
  margin: 0 auto;
}

/* Galerie */
#galerie {
  color: var(--dark);
}

#galerie img.logo {
  position: absolute;
  content: "";
  max-width: 500px;
  opacity: 0.1;
  transform: rotate(-30deg);
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
}
#galerie h2 {
  font-size: 3.5rem;
  margin-bottom: 35px;
}
#galerie h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

#galerie a[href$="burgery"] img {
  filter: brightness(0.95);
  -webkit-filter: brightness(0.95);
}

@media (max-width: 576px) {
  #galerie {
    padding: 40px 0;
  }
  #galerie h2 {
    font-size: 3rem;
  }
}

/* Gallery page */

.gallery-page #pizzy {
  position: relative;
  /* margin-top: 0px; */
}
img.waffle {
  position: absolute;
  top: -110px;
  right: -25px;
  max-width: 450px;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.2));
}
@media (max-width: 992px) {
  img.waffle {
    position: static;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  img.waffle {
    max-width: 80%;
  }
}
.gallery-page img.waffle {
  position: absolute;
  top: -110px;
  right: -25px;
  max-width: 800px;
  opacity: 0.6;
}
.gallery-page {
  background-image: url("../images/fresh-snow.jpg");
  color: var(--dark);
}
.gallery-page section {
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
  min-height: 100vh;
}
.gallery-page h1 {
  color: var(--dark);
  text-shadow: none;
  text-align: center;
  font-size: 5rem;
}

.gallery-page section .container {
  margin-bottom: 50px;
}
.gallery-page section .container:last-of-type {
  margin-bottom: 20px;
}

.gallery-page h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}
.btn-back {
  padding: 11px 31px;
  display: inline-block;
  border-radius: 5px;
  background: var(--primary);
  font-family: var(--primaryFont);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.btn-back:hover,
.btn-back:focus {
  background-color: var(--primary-dark);
  color: #fff;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
#galerie a img,
.gallery-page section a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 30px;
  border-radius: 3px;
  transition: all 0.3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
#galerie a img:hover,
.gallery-page section a img:hover {
  transform: scale(1.015);
  -webkit-transform: scale(1.015);
  -moz-transform: scale(1.015);
  -ms-transform: scale(1.015);
  -o-transform: scale(1.015);
}

#galerie a img {
  height: calc(100% - 50px);
}

@media (max-width: 992px) {
  .gallery-page section {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .gallery-page h1 {
    font-size: 4rem;
  }
  .gallery-page h2 {
    font-size: 2.3rem;
  }
  .gallery-page section .container {
    margin-bottom: 35px;
  }
}

/* KARIERA */
.kariera header {
  height: 80vh;
}
.kariera header h2 {
  display: block;
  color: white;
}
.kariera header img.logo {
  margin-bottom: 15px;
  height: 40vh;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}
.kariera section {
  padding: 40px 0;
}
.kariera p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.kariera img {
  margin-bottom: 20px;
}

#kariera ul {
  list-style-type: none;
  margin-bottom: 25px;
}
#kariera ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 25px;
  font-size: 1.1rem;
}
#kariera ul li::before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--primary);
}

#kariera a {
  color: var(--primary);
}

@media (max-width: 992px) {
  .kariera header img.logo {
    height: auto;
    max-height: 300px;
  }
  .kariera header h2 {
    font-size: 1.8rem;
  }
}

/* Rozvoz */
#rozvoz {
  background-color: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: whitesmoke;
}
#rozvoz > img {
  position: absolute;
  content: "";
  right: 40px;
  max-width: 500px;
  bottom: 20px;
  opacity: 0.08;
}
#rozvoz h2 {
  margin: 0 auto;
  font-size: 3rem;
  margin-bottom: 35px;
  text-align: center;
}
#rozvoz p.zona {
  font-size: 1.5rem;
}
#rozvoz p {
  font-size: 1.3rem;
  font-weight: 400;
}

#rozvoz .map {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
#rozvoz .map::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "Klikni pro zvětšení";
  color: white;
  padding-top: 45%;
  font-size: 1.3rem;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
#rozvoz .map:hover::before {
  opacity: 1;
}
#rozvoz .map p {
  color: whitesmoke;
}

@media (max-width: 992px) {
  #rozvoz {
    padding-top: 40px;
  }
  #rozvoz p {
    font-size: 1.2rem;
  }
  #rozvoz .map::before {
    content: none;
  }
  #rozvoz .map:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  #rozvoz .zona p:first-of-type {
    font-size: 1.4rem;
  }
  #rozvoz .zona p {
    font-size: 1.1rem;
  }
  #rozvoz p {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  #rozvoz {
    padding-bottom: 40px;
  }
  #rozvoz h2 {
    font-size: 2.5rem;
  }
  #rozvoz h2::after,
  #rozvoz h2::before {
    content: none;
  }
  #rozvoz .zona {
    display: block;
    margin-bottom: 15px;
  }
  #rozvoz .order-btn {
    margin: 20px 0 0;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 1rem;
  }
}

/* KONTAKT */
#kontakt {
  padding: 80px 0;
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

@media (max-width: 576px) {
  #kontakt {
    padding: 70px 0 30px;
  }
}

img.pizza {
  max-width: 800px;
  position: absolute;
  bottom: -150px;
  right: -100px;
  z-index: 0;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
  img.pizza {
    left: 0;
    bottom: 0;
  }
}

.card {
  padding: 25px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.card h2 {
  font-size: 2.2rem;
  color: var(--tertiary);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .card h2 {
    font-size: 2rem;
  }
}

.contact {
  color: #2d2d2d;
}

@media (max-width: 576px) {
  .contact ul li {
    font-size: 16px;
    line-height: 2em;
  }
}

.contact a {
  color: var(--dark);
}

.contact a:hover {
  color: var(--primary-dark);
}

.contact ul {
  list-style: none;
}

.contact ul li {
  margin-bottom: 1rem;
}

.contact ul li i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-right: 4px;
  width: 30px;
}
.contact .fa-facebook-square,
.contact .fa-instagram {
  font-size: 1.4rem;
}

.business-hours ul {
  margin-bottom: 0;
}

.business-hours li {
  color: #4f4f4f;
  line-height: 30px;
  padding: 0 5px;
}

.business-hours li:last-child {
  border-bottom: none;
}

.business-hours .opening-hours li.today {
  font-weight: 700;
  background: var(--secondary);
}

iframe {
  height: 200px;
}

footer {
  background-color: var(--dark);
  font-size: 1.2rem;
  padding: 30px 0;
  text-align: center;
  color: #fff;
}

footer a {
  color: var(--primary);
}
footer a:hover {
  color: var(--primary-dark);
}

footer p {
  margin: 0;
}

@media (max-width: 576px) {
  footer {
    font-size: 1.05rem;
  }
}

/* ===================
		  arrow to Top
		  ================
   */

.arrowToTop {
  cursor: pointer;
  position: fixed;
  text-align: center;
  z-index: 9999;
  transition: all 0.2s ease-in-out;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.prevent-scroll .arrowToTop {
  display: none;
}
.arrowToTop a {
  text-decoration: none;
  padding: 9px 15px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  font-size: 19px;
  display: inline-block;
}

.arrowToTop a:hover {
  background: var(--primary);
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.4);
}

.arrowToTop svg {
  width: 20px;
  height: 20px;
}

.arrowToTop.show {
  opacity: 1 !important;
  pointer-events: all;
}

@media (max-width: 576px) {
  .arrowToTop {
    right: 0;
  }

  .arrowToTop a {
    padding: 8px 13px;
    font-size: 18px;
  }
  .arrowToTop a:hover {
    box-shadow: none;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

/* Nav bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark);
  box-shadow: 1px 1px 13px -1px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: fixed;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 80px;
  top: 0;
  z-index: 100;

  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.navbar .container {
  position: relative;
}

@media (max-width: 992px) {
  .navbar {
    padding: 5px 20px;
    height: auto;
  }
}

.navbar.sticky {
  height: 80px;
  box-shadow: 1px 1px 13px -1px rgba(0, 0, 0, 0.4);
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  outline: none !important;
  border: none;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
  margin: 0 8px;
}

.navbar-links li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  margin: 10px 10px;
  font-family: var(--font-primary);
  font-weight: 500;
}
.navbar-links li a:hover {
  opacity: 0.8;
}

.navbar-links li.social {
  font-size: 2rem;
}
.navbar-links li.social a {
  margin: 10px 15px;
}

@media (max-width: 992px) {
  .navbar.sticky {
    height: auto;
  }

  .navbar-links li a::before {
    height: 2px;
  }

  .navbar-links {
    margin-right: 0;
  }

  .navbar-links ul {
    display: table;
    width: 100%;
    text-align: center;
  }

  .navbar-links li a {
    margin: 13px 15px;
    display: inline-block;
  }
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4) !important;
  margin-left: auto;
}

.navbar-toggler {
  border: none;
  padding: 12px 20px;
}

.toggle-button {
  position: absolute;
  top: 24px;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.toggle-button {
  display: flex;
}

.brand-logo {
  position: relative;
  top: 54px;
  max-width: 230px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
  -webkit-filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}
.sticky .brand-logo,
.gallery-page .brand-logo {
  top: 10px;
  max-width: 130px;
}
@media (max-width: 1200px) {
  .brand-logo {
    top: 10px;
    max-width: 130px;
  }
}
@media (max-width: 992px) {
  .brand-logo,
  .sticky .brand-logo,
  .gallery-page .brand-logo {
    position: relative;
    top: 0;
    max-width: 80px;
  }
}

@media (max-width: 576px) {
  .brand-logo,
  .sticky .brand-logo,
  .gallery-page .brand-logo {
    max-width: 60px;
  }
}

/* End of Navbar */

/* ERROR PAGE */

#error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: url("../images/header01.jpg");
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-size: cover;
}
#error-page img.logo {
  width: 80%;
  max-width: 400px;
  margin-bottom: 20px;
}
#error-page h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #fff;
}
@media (max-width: 576px) {
  #error-page h1 {
    font-size: 2rem;
  }
}
#error-page .primary-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
#error-page .primary-btn i {
  position: relative;
  left: -5px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#error-page .primary-btn:hover {
  background: var(--primary-dark);
}
#error-page .primary-btn:hover i {
  left: -10px;
}
