/* Basic CSS styles */

:root {
  --bg-color: #f7f7f7;
  --text-color: #333;
  --primary-color: #2a7ae2;
  --secondary-color: #555;
  --border-color: #ddd;
  --radius: 8px;
  /*--tmava-barva: #607200;*/
  --tmava-barva: #60941c;
  /*--svetla-barva: #f8ffd1;*/
  --svetla-barva: #ecffcd;
  --font1: 'Cabin';
  --font2: 'Crimson Text';
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: var(--font2);
  background-color: var(--bg-color);
  color: var(--text-color);
}

body {
  line-height: 1.6;
}



h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--tmava-barva);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}


h1 {
  font-size: 1.8rem;
  color: var(--tmava-barva);
  font-family: var(--font1);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.2;

}

h2 {
  font-size: 1.5rem;
  color: var(--tmava-barva);
  font-family: var(--font1);
}


p {
   font-family: var(--font2);
  font-size: 1.1rem;   
}


img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
  padding: 1.5rem 0;
}

.hlavni-obsah {
  max-width: 70%;
  margin-left: 130px;
  margin-right: auto;
}


.domecek {
    display: block;
  }




footer {
  background: var(--svetla-barva);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
}

header .container,
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}



.paticka {
  font-family: var(--font1);
  font-size: 1rem;     
 
}

.navbar {
  background: var(--svetla-barva);
  border-bottom: 1px solid var(--tmava-barva);
}

.navbar a {
  color: var(--tmava-barva);
  font-weight: semi-bold;
  font-size: 1.1rem;
  font-family: var(--font1);
}

.nav-link  {
padding-left: 1rem;
padding-right: 1rem;
padding-top: 0.3rem;
padding-bottom: 0.3rem;
}

.nav-item a:hover {
  background-color: #7b9200;
  text-decoration: none;
  color: #fff;
  
  
}


.navbar-nav  {
  bottom: 11px !important;
}



.pozadi {
  background: var(--svetla-barva); 

}



.foto-galerie-volba {
font-family: var(--font1);
font-size: 1rem;
  font-weight: 500;
}


.nazev-firmy {
  font-family: var(--font1);
  font-size: 1.2rem;
  color: var(--tmava-barva);
  font-weight: 500;
}



.nahled {
  width: 200px;
  height: 100px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}



@media (max-width: 768px) {
  .domecek {
    display: none;
  }

}


@media (max-width: 575px) {
  .header .container,
  .footer .container,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hlavni-obsah {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  }
  .domecek {
    display: none;
  }

.navbar-nav  {
  bottom: auto !important;
  background: var(--svetla-barva);
}


}