




* {margin: 0; padding: 0; box-sizing: border-box;}

::-webkit-scrollbar {display: none;}
  
html {
  scroll-behavior: smooth;       /* volitelně plynulé skrolování */
  scroll-padding-top: 100px;     /* globální posun při anchor linku */
}


body {
    -ms-overflow-style: none;  /* IE a Edge */
    scrollbar-width: none;     /* Firefox */
}
  
.container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}
  
body {
    font-family: var(--font-1);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--background-color, #ffffff);
    padding-top: 100px;
}
  



  
  /* Odkazy */
  a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.8;
  }
 
  
/* Flex utility */
  .flex {
    display: flex;
    align-items: center;
  }
 




/* == všechna tlačítka na stránce == */

.button {
    display: block;
    background-color: var(--color-1);
    font-family: "Source Sans 3", sans-serif;
    font-size: var(--size-button);
    color: var(--color-2);
    text-transform: uppercase;   
    border: none;
    border-radius: 8px;
    padding: 15px 15px 15px 15px;
    margin: 20px auto 0px auto;
    white-space: nowrap;
    cursor: pointer;
}

/* == všechny sekce == */

.section {
    padding: 60px 0;
}

/* reklamní věta sekce */
.section > div:nth-child(1) {
    font-family: "Source Sans 3", sans-serif;
    font-size: var(--size-ssh);
    color: var(--color-2);
    font-weight: 300;
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;    
}

/* nadpis sekce */
.section > div:nth-child(2) {
    font-family: "Source Sans 3", sans-serif;
    font-size: var(--size-sh);
    color: var(--color-2);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;    
}