/* Import fontů */
/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Qwigley */
@import url('https://fonts.googleapis.com/css2?family=Qwigley&display=swap');
/* DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* Globální proměnné */
:root {
  /* Fonty */
  --heading-font: 'Poppins', sans-serif;
  --regular-font: 'DM Sans', sans-serif;

  /* Barvy */
  --main-color: #158203;
  --main-hover-color: #106302;
  --box-color: #d3d3d3d7;
  --footer-color: #292929;

  /* Tloušťka textu */
  --light-text: 200;
  --regular-text: 400;
  --semibold-text: 500;
  --bold-text: 600;
  --ultrabold-text: 700;

  /* Velikost textu */
  --heading1-size: 4.5rem;
  --heading2-size: 2.7rem;
  --heading3-size: 1.9rem;
  --heading4-size: 1.5rem;
  --heading5-size: 1.2rem;
}

/* Reset výchozích nastavení CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--regular-font);
}

p {
  margin: 0;
}

/* Nastavení responsivity */
html {
  font-size: 16px;
}

/* Všechy paragrafy */
p {
  font-size: 0.95rem;
}

/* Nadpisy */
.heading-1 {
  font-size: 6rem;
  font-weight: var(--bold-text);
  font-family: 'Qwigley', sans-serif;
  letter-spacing: 8px;
}

.subheading {
  color: var(--main-color);
  font-weight: var(--bold-text);
  font-size: var(--heading1-size);
  font-family: var(--heading-font);
  margin-top: -2rem;
  -webkit-text-stroke: 0.5px #fff;
}

.heading-2 {
  font-size: var(--heading2-size);
  font-weight: var(--bold-text);
  font-family: var(--heading-font);
  text-transform: uppercase;
  word-spacing: 7px;
}

.heading-3 {
  font-size: var(--heading3-size);
  font-weight: var(--bold-text);
  font-family: var(--heading-font);
}

.heading-4 {
  font-size: var(--heading4-size);
  font-weight: var(--semibold-text);
  font-family: var(--regular-font);
}

.heading-5 {
  font-size: var(--heading5-size);
  font-weight: var(--semibold-text);
  font-family: var(--regular-font);
}

/* Tlačítka */
.button {
  border: 4px solid var(--main-color);
  border-radius: 20px;
  padding: 0.5rem 4rem;
  color: #000;
  text-decoration: none;
  font-weight: var(--bold-text);
  background-color: #fff;
}

.button:hover {
  border: 4px solid var(--main-hover-color);
}

/* Utility classes */
.colored-text {
  color: var(--main-color);
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  width: 100vw;
  padding: 0.5em 10vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 100;
}

.nav-link {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-color);
  font-weight: var(--semibold-text);
  transition: color ease 0.2s;
  margin: 0 0.8rem;
}

.nav-link:hover {
  color: var(--main-hover-color);
}

.navbar-toggler {
  border: none;
}

.navbar-brand {
  width: 10rem;
}

.navbar .nav-socials {
  border-left: 1px solid var(--box-color);
}

.navbar .nav-socials a {
  font-size: 1.3rem;
}

/* Sekce Hero */
#hero {
  min-height: 100vh;
  background: url('../media/imgs/hero-background.png') center center/cover
    no-repeat;
}

#hero .container {
  min-height: 70vh;
}

#hero-description {
  font-weight: var(--regular-text);
  font-size: 1.1rem;
}

/* Sekce O nás */
#about .about-description {
  font-size: 1.05rem;
}

/* Sekce služby */
.service-icon p {
  font-size: 1.1rem;
  font-weight: var(--semibold-text);
}

.service-icon-img {
  max-width: 5rem;
}

/* Sekce Otevírací doby */
#opening-hours {
  background: url('../media/imgs/opening-hours-background.png') center
    center/cover no-repeat;
}

.dates-row {
  border-bottom: 1px solid #fff;
}

.dates-row p {
  color: #fff;
}

.date-day,
.date-time {
  font-size: 1.3rem;
}

.date-time {
  font-weight: var(--bold-text);
}

.date-time-k {
  font-size: 0.9rem;
}

.date-day {
  font-weight: var(--bold-text);
}

/* Sekce Galerie */
#gallery .col-4 {
  text-decoration: none;
  overflow: hidden;
}

#gallery .gallery-prev-con {
  position: relative;
  margin: 0;
}

#gallery .gallery-prev-con img {
  border-radius: 10px;
}

#gallery .gallery-prev-title {
  font-size: 1.2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.568);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
  margin: 0;
}

#gallery-page {
  min-height: 90vh;
}

/* Sekce Možnosti platby */
#payment-methods {
  background: url('../media/imgs/contact-background.png') center center/cover
    no-repeat;
}

/* sekce mapy */
#map_nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

/* Sekce Kontakt */
#contact .fa-solid {
  font-size: 1.5rem;
}

#contact p {
  font-size: 1.1rem;
}

/* Sekce Menu */
#menu {
  min-height: 90vh;
}

#menu .food {
  border-bottom: 1px solid var(--box-color);
}

#menu .food p {
  font-size: 1.15rem;
}

#menu .menu-title {
  width: 80%;
}

#menu .menu-day-title {
  color: #7a7a7a;
}

/* Footer */
#footer {
  background-color: var(--footer-color);
}

#footer .heading-5 {
  font-size: 1.6rem;
}

#footer #main-footer {
  font-size: 1.1rem;
}

#footer #lower-footer {
  border-top: 1px solid var(--box-color);
}

#footer .footer-socials a {
  font-size: 1.7rem;
}

/* Sekce Provozovatel */
#provozovatel {
  min-height: 95vh;
}

/* Sekce Údaje */
#udaje {
  min-height: 95vh;
}

/* Sekce login */
#login .container {
  width: 100vw;
  height: 100vh;
}

#login form .form-input {
  outline: none;
  border: 2px solid #bdbdbd;
}

/* Sekce admin */
#admin #admin-header {
  background-color: var(--main-color);
  border-radius: 20px;
}

#admin #admin-header-user {
  margin-top: -0.3rem;
}

#admin #admin-container .admin-row {
  background-color: var(--box-color);
  border-radius: 15px;
}

#admin #admin-container .admin-subheading {
  font-size: 0.9rem;
  font-weight: var(--bold-text);
  color: #646464;
}

#admin #admin-container .admin-data {
  font-size: 1.1rem;
  font-weight: var(--bold-text);
  color: #000;
}

#admin #admin-container i {
  font-size: 1.25rem;
}

#admin .admin-img {
  position: relative;
  overflow: hidden;
  max-height: 12rem;
}

#admin .admin-img img {
  height: 12rem;
  object-fit: cover;
}

#admin .admin-img-options {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #00000085;
}

/* Responsivní Media Queries */
@media only screen and (max-width: 1610px) {
  .nav-link {
    font-size: 0.8rem;
    margin: 0 0.5rem;
  }
}

@media only screen and (max-width: 1152px) {
  .navbar-brand {
    width: 8rem;
  }

  .nav-link {
    font-size: 0.7rem;
    margin: 0 0.3rem;
  }

  .navbar .nav-socials a {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  html {
    font-size: 12px;
  }

  .navbar .nav-socials {
    border-left: none;
  }

  .service-icon {
    width: 100%;
  }

  .navbar-brand {
    width: 8rem;
  }

  .nav-link {
    font-size: 1rem;
    margin: 0 0.8rem;
  }

  .navbar .nav-socials a {
    font-size: 1.3rem;
  }

  .fa-brands {
    margin: 0 0.5rem;
  }
}
