* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
div { outline: 1px solid red !important; }
*/

body {
  font-family: "Outfit", sans-serif;
  background: #fff;
}

header {
  background-color: #fff;
  padding: 0px;
  width: 100%;
}


.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

header a img {
  display: block;
  width: 200px;
  height: auto;
}


main {
  max-width: 1400px;
  margin: auto;
}

.boxes-wrapper {
  display: flex;
  align-items: center;
  border-radius: 16px;
  background:
    url("kruhy1.png") no-repeat left bottom,
    url("kruhy2.png") no-repeat right top,
    #f5f5f5;
  background-size: auto, auto, cover;
}

.box-1-bear,
.box-2-buttons {
  flex: 1;
  width: 100%;
}

.box-1-bear {
  perspective: 800px; /* hloubka 3D efektu */
}

.box-1-bear img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin: 0 auto;
  padding: 20px 0;
  transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
  transform-origin: center;
}

.box-1-bear img:hover {
  transform: scale(1.1) translateZ(20px); /* jemné přiblížení */
}

.heading h1 {
  font-weight: 500;
}

.box-2-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  margin-left: -50px; /*zarovnani tlacitek vlevo bliz k medvedovi*/
  margin-top: -30px;
}

.buttons-column-1,
.buttons-column-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;


}

.button-columns-container {
  display: flex;
  gap: 10px;
}

.country-button {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  border-radius: 70px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  width: 300px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border: 1px solid #e7e7e7;
  box-shadow: 0 2px 6px rgba(231, 231, 231, 0.8);

}

.country-button:hover {
  background-color: #fff;
  border: 1px solid #E94B24;
  color: #e94b24;
  box-shadow: 0 6px 10px 0 rgba(233, 75, 36, 0.20);
}

.country-button img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  box-sizing: border-box;

}

.country-button.disabled {
  opacity: 0.4;
  pointer-events: none; /* kliknutí deaktivováno */
  cursor: default; /* kurzor bez “ruky” */
  background-color: #ccc;
  color: #666;
}

.country-button.disabled img {
  opacity: 0.4;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
}

.gallery img {
  flex: 1 1 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}

.grizly-text-video {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin: 50px 0px;
  border-radius: 16px;
  background:
    url("kruhy1.png") no-repeat left bottom,
    url("kruhy2.png") no-repeat right top,
    #f5f5f5;;
  background-size: auto, auto, cover;
  padding: 60px;
}

.grizly-text-container {
  display: flex;
  flex-direction: column;
}

.grizly-text-video-header ul {
  list-style: none;
  padding-left: 0;
  margin: 20px auto;

}

.grizly-text-video-header ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.grizly-text-video-header ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none'%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='22' height='22'%3E%3Cpath fill='%23D9D9D9' d='M0 0h22v22H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath d='m9.717 15.217 6.462-6.463-1.283-1.283-5.18 5.18-2.612-2.613-1.283 1.283 3.896 3.896ZM11 20.167c-1.268 0-2.46-.24-3.575-.722a9.258 9.258 0 0 1-2.91-1.96 9.258 9.258 0 0 1-1.96-2.91A8.926 8.926 0 0 1 1.833 11c0-1.268.241-2.46.722-3.575a9.257 9.257 0 0 1 1.96-2.91 9.257 9.257 0 0 1 2.91-1.96A8.926 8.926 0 0 1 11 1.833c1.268 0 2.46.241 3.575.722a9.257 9.257 0 0 1 2.91 1.96 9.256 9.256 0 0 1 1.96 2.91A8.925 8.925 0 0 1 20.167 11c0 1.268-.24 2.46-.722 3.575a9.257 9.257 0 0 1-1.96 2.91 9.258 9.258 0 0 1-2.91 1.96 8.926 8.926 0 0 1-3.575.722Z' fill='%23E94B24'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.grizly-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px auto;
}

.grizly-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.grizly-text-video iframe {
  border-radius: 10px;

}

.owner-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 calc(25% - 25px);
  min-width: 220px;
}

.owner-text {
  display: flex;
  flex-direction: column;
}

.promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 50px 0;
}

.promo-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 calc(25% - 25px);
  min-width: 220px;
}

.promo-box img {
  width: 46px;
  height: auto;
  flex-shrink: 0;
}

.promo-text {
  display: flex;
  flex-direction: column;
}

.claim-heading {
  margin: 0;
  font-weight: bold;
}

.claim-text {
  margin: 0;
  color: #000;
}

footer {
  width: 100%;
  min-height: 80px;
  background-color: #F3F3F3;

}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 50px auto;
  padding: 20px;

}

footer p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;

}

.social-links a {
  text-decoration-line: none;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* TABLET: max 1300px – 2 sloupce */
@media (max-width: 1300px) {
  .grizly-text-video {
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    width: 100vw;
  }
}

@media (max-width: 1236px) {
  .heading h1 {
    font-size: 1.8em;
  }
}

/* TABLET: max 1024px – 2 sloupce */
@media (max-width: 1024px) {
  .promo-box {
    flex: 1 1 calc(50% - 25px);
    min-width: auto;
  }

  .grizly-text-video {
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    width: 100vw;
  }

  .gallery img {
    flex: 1 1 calc((100% - 20px) / 2); /* 2 fotky vedle sebe */
    max-width: calc((100% - 20px) / 2);
  }

  
}

@media (max-width: 970px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  header img {
    max-width: 150px;
  }

  .heading h1{
    font-size: 1.5em;
  }

  .boxes-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .box-1-bear {
    display: none;
  }

  .box-2-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
  }

  .buttons-column-1,
  .buttons-column-2 {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .promo-box {
    flex: 0 1 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* mezera mezi obrázky */
    justify-content: center; /* vycentruje obrázky */
    padding: 0 5px; /* mezera od okrajů stránky */
  }

  .gallery img {
    flex: 1 1 calc(50% - 10px); /* 2 obrázky vedle sebe s gapem */
    max-width: calc(50% - 10px);
    height: auto;
  }

  .gallery img:hover {
    transform: none;
  }

  .grizly-text-video {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    width: 100vw;
  }



  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

}
  

/* MOBILE: max 768px*/
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  header img {
    max-width: 150px;
  }

  .heading h1 {
    font-size: 1.5em;
  }

  .boxes-wrapper {
    flex-direction: column;
    align-items: center;
   
  }

  .box-1-bear {
    display: none;
  }

  .box-2-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
   
  }

  .buttons-column-1,
  .buttons-column-2 {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .promo-box {
    flex: 0 1 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .gallery {
    gap: 5px;
  }

  .gallery img {
    flex: 1 1 calc((100% - 20px) / 2); /* 2 fotky vedle sebe */
    max-width: calc((100% - 20px) / 2);
    transition: none;
  }

  .gallery img:hover {
    transform: none;
  }

  .grizly-text-video {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    width: 100vw;
    
  }

  .grizly-text-video iframe {
    border-radius: 10px;
    width: 100vw;


  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }


}

/* MOBILE: max 624px*/
@media (max-width: 624px) {
 .promo-box {
    flex: 0 1 100%;
    max-width: 300px;
    margin-left: 20px;
  }

   .promo {
    justify-content: flex-start; /* zarovná doleva */
  }
  }



/* MOBILE: max 610px*/
@media (max-width: 610px) {
  .heading h1 {
    font-size: 1.5em;
    text-align: center;
  }

  .boxes-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .box-1-bear {
    display: none;
  }

  .box-2-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
  }

  .button-columns-container {
    display: flex;
    flex-direction: column;
  }

  .buttons-column-1,
  .buttons-column-2 {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .promo-box {
    flex: 0 1 100%;
    max-width: 300px;
    margin-left: 20px;
  }

   .promo {
    justify-content: flex-start; /* zarovná doleva */
  }


  .gallery {
    gap: 5px;
  }

  .gallery img {
    flex: 1 1 calc((100% - 20px) / 2); /* 2 fotky vedle sebe */
    max-width: calc((100% - 20px) / 2);
    transition: none;
  }

  .gallery img:hover {
    transform: none;
  }

  .grizly-text-video {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    width: 100vw;
  }

  .grizly-text-video iframe {
    border-radius: 10px;
    width: 100vw;


  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }


}