@charset "UTF-8";
.jost-font {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.crimson-text {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

.button {
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.button-color {
  background-color: #927b4f;
  color: #fff;
}
.button-color:hover {
  background-color: #6c5b3a;
}

.button-white {
  color: #fff;
  padding: 1rem 2rem;
  border: 3px solid #6c5b3a;
  color: #6c5b3a;
  margin-top: 1rem;
  font-size: 1.3rem;
}
.button-white:hover {
  background-color: #6c5b3a;
  color: #fff;
}

.navigation-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #252525;
  z-index: 100;
  position: fixed;
  width: 100vw;
  top: 0;
}
.navigation-bar img {
  padding-left: 6rem;
  height: 4rem;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: end;
  padding-right: 0rem;
  flex: 1;
}
nav a:hover {
  background-color: #927b4f;
}

.nav-link {
  font-family: "Inter";
  text-transform: uppercase;
  font-weight: 200;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  padding: 25px 25px;
  transition: all 0.2s;
}

.nav-socials {
  display: flex;
  justify-content: end;
  justify-self: end;
  align-self: center;
  padding: 0.5rem 0;
  padding-right: 3rem;
}
.nav-socials a {
  margin-left: 0.9rem;
}
.nav-socials a:hover svg path {
  fill: #927b4f !important;
  transition: all 0.2s;
}
.nav-socials svg {
  width: 1.5rem;
  height: 1.5rem;
}
.nav-socials svg path {
  fill: #c6c6c6 !important;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: all 0.3s ease;
}

h1 {
  font-family: "Inter";
  font-size: 2.75rem;
  font-weight: bold;
  color: #252525;
}

h2,
h3 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1rem;
  font-size: 2.6rem;
  color: #252525;
}

h2 {
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.9rem;
}

p {
  font-family: "Inter";
}

.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100vw;
  max-width: 1920px;
}

body {
  background-color: #fff;
}

header {
  display: flex;
  flex-direction: column;
  height: 800px;
  background-image: url("img/ks-hero.webp");
  background-position: right center;
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
}
header h1 {
  margin-top: 300px;
  font-weight: 400;
  width: 600px;
}
header h1 span {
  font-size: 2.3rem;
}
header h1,
header a {
  z-index: 50;
  color: #fff;
  margin-left: 20vw;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Černá s 50% průhledností */
  z-index: 1; /* Zajišťuje, že overlay bude nad obrázkem, ale pod textem */
  height: 800px;
}
header strong {
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  background-color: #fff;
}

.section-text {
  text-align: left;
}
.section-text p {
  margin: 25px 0;
  line-height: 1.7rem;
}

#main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact {
  background: linear-gradient(#927b4f, #6c5b3a);
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.contact h2 {
  color: #fff;
  padding-bottom: 0.7rem;
}
.contact .contact-undertext {
  font-family: "Jost";
  padding-bottom: 1.7rem;
  font-size: 1.3rem;
}
.contact form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 700px;
}
.contact form input,
.contact form textarea {
  padding: 0.5rem;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
}
.contact form button {
  background-color: #c1b49b;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  border: 3px solid #c1b49b;
  border-radius: 0;
  color: #252525;
}
.contact form button:hover {
  background-color: #252525;
  color: #c1b49b;
  cursor: pointer;
}
.contact #name {
  grid-area: 1/1/2/2;
}
.contact #email {
  grid-area: 2/1/3/2;
}
.contact #phone {
  grid-area: 3/1/4/2;
}
.contact #message {
  grid-area: 1/2/4/3;
}
.contact button {
  grid-area: 4/1/4/3;
  width: 200px;
  margin: auto;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
  margin-bottom: -1rem;
}

footer {
  background-color: #252525;
  color: #fff;
  width: 100%;
  padding: 4rem 0;
}
footer .footer-content {
  width: 80%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
}
footer .footer-left {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
}
footer .footer-left img {
  width: 7rem;
}
footer .footer-text {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
footer .footer-name {
  font-size: 2rem;
}
footer .footer-right {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
}
footer .footer-right ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 1rem 0 0 0;
  margin: 0;
}
footer .footer-right ul li a {
  padding: 0 15px;
}
footer .footer-right ul li a:hover {
  color: #927b4f;
}

.socials svg {
  margin: 0 0.5rem;
  float: right;
}
.socials a:hover svg {
  fill: #927b4f;
}

@media only screen and (max-width: 1280px) {
  .footer-content {
    flex-wrap: wrap;
  }
  .footer-right {
    width: 100%;
  }
  .footer-right ul {
    justify-content: right;
  }
  .footer-right .socials {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation-bar img {
    padding-left: 1rem;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons a {
    margin-top: 1rem;
  }
  .section-heading {
    margin: auto;
  }
  .section-heading {
    width: 90%;
    text-align: center;
  }
  .contact form {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 2fr 1fr;
    width: 90%;
  }
  .contact form input,
  .contact form textarea,
  .contact form button {
    grid-area: auto !important;
  }
  footer .footer-left {
    flex-wrap: wrap;
  }
  footer .footer-left img {
    display: block;
    width: 5rem;
    justify-self: center;
    margin: auto;
    padding-bottom: 2rem;
  }
  footer .footer-text {
    font-size: 1.3rem;
  }
  footer .footer-name {
    font-size: 1.5rem;
  }
  footer .footer-right ul {
    padding: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
  }
  footer .footer-right .socials {
    margin: auto;
  }
}
@media (max-width: 915px) {
  .navigation-bar .logo-link {
    flex: 1;
    padding: 0;
  }
  .nav-socials {
    flex: 1;
    padding: 0;
    justify-content: center;
    -moz-column-gap: 0.6rem;
         column-gap: 0.6rem;
  }
  .nav-socials a {
    margin: 0;
  }
  .hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    flex: 1;
  }
  nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    background-color: #333;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden; /* Skrytí navigace, pokud není aktivní */
    width: 100%;
    z-index: -5;
    text-align: center;
  }
  nav a {
    margin: 5px 0;
    color: #fff;
  }
  nav.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible; /* Zobrazí navigaci při aktivaci */
  }
}/*# sourceMappingURL=main.css.map */