/* chivo-300 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 300;
    src: url('../font/chivo-v18-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* chivo-700 - latin_latin-ext */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Chivo';
    font-style: normal;
    font-weight: 700;
    src: url('../font/chivo-v18-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
/* climate-crisis-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Climate Crisis';
  font-style: normal;
  font-weight: 400;
  src: url('../font/climate-crisis-v13-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.container {
    width: 1100px;
    margin: auto;
}

body {
    background: #FFF0DB;
    font-weight: 300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    transition: all 0.3s ease-in-out;
}

p {
    font-size: 18px;
}

h1 {
    font-family: "Climate Crisis", san-serif;
    font-size: 64px;
    color: #803B07;
    letter-spacing: 1.5px;
}

h2 {
    font-family: 'Chivo', sans-serif;
    font-weight: 300;
    font-size: 40px;
    text-transform: uppercase;
    color: #FFF9F0;
    padding-top: 20px;
}



@media (max-width: 520px) {
  .responsive-break .break-mobile {
    display: inline;
  }
}




h3 {
    font-family: 'Chivo', sans-serif;
    font-weight: 300;
    font-size: 28px;
    text-transform: uppercase;
    color: #803B07;
    padding-top: 20px;

}

h4 {
    font-family: 'Chivo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    
    color: #803B07;
    padding-bottom: 20px;

}

html, body {
  overflow-x: hidden;
}

body, input {
    font-family: 'Chivo', sans-serif;
}

a {
    color: #FFF9F0;
    text-decoration: none;
}
b, strong {
    font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

.btn-center {
  text-align: center;
}

a.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #803B07;
  color: #FFF9F0;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-bottom: 60px;
}

a.btn:hover {
  background-color: #AE5E30;
  color: #FFF9F0;
}

@media screen and (min-width:1200px) {
    .container {
        width: 1100px;
    }    
}
@media screen and (max-width:1199px) {
    .container {
        width: 95%;
    }    
}

.headermenu .container,
.headermenu .menu ul{
    display: flex;
    justify-content: space-between;
}
.headermenu .menu ul{
    list-style: none;
    gap: 20px;
    padding-top: 19px;

}
.headermenu .menu ul li a{
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    
}
.headermenu .menu ul li a:hover,
.headermenu .menu ul li a:active{
    color: #803B07;   
}
.headermenu a,
.headermenu{
    color: #FFF9F0;
}
.headermenu{
    padding: 30px 0 259px;
    position: relative;
}

.headerInfo {
    text-align: right;
    padding-top: 11px;
}
.headerInfo p {
    font-size: 12px;
}
.headerInfo .headerInfoTel {
    font-size: 20px;
    font-weight: 700;
}


.headerInfo a:hover,
.headerInfo a:active {
    color: #803B07;
}
.headermenu .logo {
    flex: 0 0 5%;
} 

.headermenu .logo img {
  width: 100%;
  height: auto;
  display: block;
}


header {
    background-image: url("../img/header.webp");
    background-size: cover;
    background-position: center;
    height: 700px; /* výška podle obrázku */
    position: relative;
    background-size: cover;
   
   max-width: 2560px;
}

@media (max-width: 520px) {
    header {
    background-image: url("../img/mobile_header.webp"); 
    background-position: center;
    position: relative;
    background-size: cover;
    height: 600px; 
    width: auto;
    }

    .slogan h1 {
    text-align: left;
    padding-left: 20px;
    margin-top: 60px !important; 
    }

    .slogan h2 {
    font-size: 8vw !important;
    text-align: left;
    padding-left: 20px;
    margin-top: 0;
    }

   .slogan h1 span {
  display: block; /* každý span na vlastní řádek */
  }
  .slogan h1 .first {
    font-size: 10vw;
    color: #AE5E30;
  }
  .slogan h1 .second {
    margin-top: -20px;
    font-size: 24vw;
  }
 

  
}

.headermenu {
    position: relative;
    z-index: 2;
    padding: 40px 0; 
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

@media screen and (max-width: 1100px) {
    .headermenu .container {
        flex-direction: row;         /* logo a menu vedle sebe */
        align-items: center;         /* svislé zarovnání na střed */
        justify-content: space-between; 
        gap: 50px;
    }

    .headerInfo {
        text-align: center;
        padding-top: 0;
    }

    .headermenu .menu ul {
        padding-top: 0;
    }

    .headerInfo p {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    }

    .headermenu {
        padding: 30px 0 40px;
    }

    .logo {
        width: 25%;                  /* větší logo na mobilu */
    }

    .logo img {
        display: block;
        margin-left: 0;
        margin-right: auto;          /* logo zarovnání vlevo */
    }
}

@media screen and (max-width: 1030px) {
    .headermenu {
        padding: 30px 0 60px;
    }

    .headerInfoTel {
        display: none;
    }
}
/*@media screen and (max-width: 600px) {
    .headermenu .menu ul {
        flex-direction: column;
        align-items: center;
    }    
}*/
@media screen and (max-width: 960px) {  
  .headermenu .logo {
        flex: 0 1 auto; 
        width: 50px;
        padding-top: 10px;   

    }
   
  }

@media screen and (max-width: 600px) {
    .headerInfoTel {
        display: none;
    }

}

/*Hamburger*/
.mmenu-icon-wrapper {
  position: absolute;
  top: 2.9em;
  right: 1.5em;
  height: 26px;
  width: 26px;
  cursor: pointer;
  z-index: 2;
}

@media screen and (min-width: 480px) {
	.mmenu-icon-wrapper {
	  top: 4.3em;
	}
}

@media screen and (min-width: 768px) {
	.mmenu-icon-wrapper {
	  top: 3.9em;
	}
}

.mmenu-icon,
.mmenu-icon:before,
.mmenu-icon:after {
  content: '';
  position: absolute;
  border-radius: 1em;
  height: 2px;
  width: 26px;
  background: white;
  transition: all 0.2s ease
}

.mmenu-icon {
  top: 0.75em
}

.mmenu-icon:before {
  top: -0.50em
}

.mmenu-icon:after {
  top: 0.50em
}

.mmenu-active .mmenu-icon {
  background: transparent;
  transform: rotate(-135deg)
}

.mmenu-active .mmenu-icon:before,
.mmenu-active .mmenu-icon:after {
  top: 0
}

.mmenu-active .mmenu-icon:before {
  transform: rotate(90deg)
}

.mmenu-active .mmenu-icon,
.mmenu-active .mmenu-icon:before,
.mmenu-active .mmenu-icon:after {
  background: #FFF0DB
}

.mmenu-menu {
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFCDAB !important;
  color: #FFF0DB;
  text-transform: uppercase;
  text-align: right;
  z-index: 2;
  height: 95vh;
}

.mmenu-active .mmenu-menu {
  opacity: 1;
  pointer-events: initial;
}

.mmenu-menu ul {
  display: block;
  transition: all 0.4s ease;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 40%;
  left: 75%;
  transform: translateY(-50%) scale(1.2);
  font-size: 20px;
  line-height: 200%;
  text-align: right;
}

.mmenu-menu ul li a {
	color: #fff;
	text-decoration: none;
}

.mmenu-menu ul li a:hover {
	color: #803B07;
}

.mmenu-active .mmenu-menu ul {
  transform: translate(-50%, -50%) scale(1)
}

@media screen and (max-width: 960px) {
	.menu {
		display: none;
	}
}

@media screen and (min-width: 960px) {
	.mmenu-menu, .mmenu-icon-wrapper {
		display: none !important;
	}
}
/*konec hamburgeru*/



.slogan {
    padding-top: 100px;
    text-align: center;
}

.slogan h2

@media screen and (max-width: 1100px) {
    
    .slogan h1 {
        
        margin-top: -60px;
    }
    .slogan h2 {
        font-size: 6vw;
        margin-top: 0;
    }


    
}

/*section*/

.info .container {
    position: relative;
}
.info {
    padding: 100px 0;
}

.info h3 {
    line-height: 1.1;
    padding: 80px 0 40px;
    
    text-align: center;
    
}

.infoColumn img {
    object-fit: cover;
    border-radius: 8px;
}



.texty {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}
.infoColumn {
    color: #000;
}
.infoColumn h3 {
    line-height: 1.1;
    padding: 40px 0 20px;
    
}
.infoColumn p {
    padding-bottom: 17px;
    line-height: 1.6;

}


.infoColumnText {
    text-align: justify;
}

.oNas .container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px 0;
    flex-wrap: wrap; /* pro mobilní zobrazení */
}

.oNasText {
    flex: 1 1 50%;
}

.oNas h3 {
    
    text-align: center;
    padding: 80px 0 20px;
}

.oNasText p {
    text-align: left;
    line-height: 1.6;
}

.oNasImg {
    flex: 1 1 40%;
    text-align: center;
    object-fit: cover;
}

.oNasImg img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.novinky {
  padding-bottom: 80px;
  background-color: #FFF9F0;
}

.novinky h3 {
  text-align: center;
  
  margin-bottom: 20px;
}

.novinky-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.novinka {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 320px;
  text-align: center;
}

.novinka img {
  width: 280px;             
  height: 280px;             
  object-fit: cover;        
  border-radius: 6px;
  margin-bottom: 20px;
  
}

.novinka h3 {
  font-size: 20px;
  padding: 20px 0 10px;
 
}

.novinka p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.novinka a {
  color: #803B07;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}


.kontakt {
    text-align: center;

}

.kontakt h3 {
    padding: 20px 0 20px;
    text-align: right;
}
.kontakt p {
    text-align: right;
    line-height: 1.6;
}

.kontakt a {
    color: #000;
}
.kontakt a:hover {
    color: #803B07;
}
.kontakt .container  {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 0;
}
.kontaktniInfo {
    
    text-align: center;
}

.wpcf7 {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start; 
}

.form-grid p {
    text-align: left;
}

.form-group {
  flex: 1 1 48%;
  max-width: 340px; /* zúží jednotlivá políčka */
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
  max-width: 100%;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #f8fafc;
  border: none;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 40px;
  max-height: 80px;
  resize: none;
}

.form-submit {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}


.form-submit input[type="submit"] {
  background-color: #803B07;
  border: none;
  color: #FFF9F0; 
  font-weight: bold;
  border-radius: 4px;
  text-align: left;
  padding: 10px 30px;
  font-size: 14px;
  cursor: pointer;
}

.form-submit input[type="submit"]:hover {
  background-color: #AE5E30; 
  color: #FFF9F0; 
  transition: background-color 0.3s ease, color 0.3s ease;
}


.formular p {
    text-align: left;
    padding-top: 20px;
}




footer {
    background: #FFCDAB;
    color: #000;
    padding: 40px 0;
    text-align: center;
    line-height: 1.6;
}

.kontaktfooter {
    text-align: center;
}

footer a {
    color: #000;
}
footer a:hover {
    color: #803B07;
}

.copy {
    padding-top: 20px;
}

.copy a {
    color: #803B07;
}
.copy a:hover {
    color: #fff;
}

.email-link {
  display: none;
}

@media (max-width: 768px) {
  .email-text {
    display: none;
  }
  .email-link {
    display: block;
  }
  .email-link a {
    color: inherit;
    text-decoration: none;
  }
}


/* --------- RESPONSIVE ---------- */

/* Tablety a menší desktop */

@media screen and (max-width: 1024px) {
    .container {
        width: 90%;
    }
    .slogan {
        padding: 100px 20px;
    }
    .info .texty {
        flex-direction: column;
        gap: 30px;
    }

    .infoColumnText {
        text-align: justify;
    }

    .infoColumn h3 {
        text-align: center;
    }
    .oNas .container {
        
        padding: 40px 0;
        gap: 40px;
        
    }

    .oNas {
        padding: 0 !important;
        margin: 0 !important;
    }

    .oNasText p {
        padding: 0 !important;
        margin: 0 !important;
        text-align: justify;
    }
    .oNasText {
        padding: 0;
        flex: 1 1 100%;
    }
    .oNas h3 {
        text-align: center;
    }
    
    .oNasImg {
        flex: 1 1 100%;
        display: flex;          /* udělá z tohoto kontejner s flexboxem */
    justify-content: center; /* vycentruje obsah horizontálně */
    align-items: center;
    }

    .novinky-wrapper {
        justify-content: center;
        gap: 20px;
    }
    .novinka {
        width: 100%;
        max-width: 400px;
    }
    .kontakt .container {
        gap: 40px;
        padding: 40px 10px;
    }
    .kontakt .container div {
        max-width: 100%;
    }
    .infoColumn img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobilní telefony - větší */

@media screen and (max-width: 768px) {
    .slogan {
        padding: 80px 15px;
    }
    h1 {
        font-size: 40px;
    }
    h2, h3 {
        font-size: 28px;
    }
    .info {
        padding: 60px 15px;
    }
    .info h3 {
        font-size: 24px;
        padding: 30px 0 20px;
    }
    .texty {
        gap: 20px;
    }

    .oNas .container {
        padding: 0;
        padding: 0 !important;
        margin: 0 !important;
        gap: 40px;
        flex-direction: column;
        width: 100%;
    }

    .oNasText p {
        text-align: justify;
        padding: 0 !important;
        margin: 0 !important;
    }

    .kontakt .container {
        flex-direction: column;
        padding: 20px 10px;
    }
    .kontakt .container div {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Malé mobily a velmi úzké obrazovky */

@media screen and (max-width: 480px) {
    h1 {
        font-size: 32px;
    }
    h2, h3 {
        font-size: 22px;
    }
    p {
        font-size: 16px;
    }
    .slogan {
        padding: 50px 10px;
    }
    .info {
        padding: 40px 10px;
    }
    .novinka {
        width: 100%;
    }
    .novinka img {
    max-width: 180px; /* nebo jiná menší hodnota podle potřeby */
  }
    
}

.galerie h3 {
    padding-top: 40px;
}


.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 0 80px;
}

.galerie-item {
  text-align: center;
}

.galerie-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.2s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.galerie-item img:hover {
  transform: scale(1.03);
}

.popisek {
  margin-top: 8px;
  font-size: 0.9em;
  color: #555;
}

@media (max-width: 1024px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galerie-grid h3 {
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  .galerie-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kontaktniInfo,
  .formular {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1175px) {
    .kontakt p {
        text-align: center;
    }

    .kontakt h3 {
        text-align: center;
    }

    .form-submit {
    display: flex;
    justify-content: center;
    }
    
    .formular p {
        text-align: center;
    }

    .form-grid {
    display: flex;
    justify-content: center; 
    }