* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: Arial , sans-serif;
}

body {
    display: flex;
    flex-direction: column; /* Aby obsah plynul vertikálně */
    align-items: center;    /* Horizontálně vycentruje obsah */
    min-height: 100vh;
    margin: 0;
    background-color: #ededed;
    
}

header{
   
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin: 0;
    padding: 0.5em;
    background-color: #2b31bc;
    text-align: center;
} 


main{
    margin:120px 0 0 0 ;
    padding: 10px;
    width: 100%;
    text-align: center;
    background-color: #ededed;
} 

 h2 {
    margin: 15px 0 0 0 ;
}

.sekcia1-1{
    display: flex; /* Zapne Flexbox pre hlavný kontajner */
    flex-wrap: wrap; /* Umožní, aby sa podsekcie zalomili na nový riadok, ak sa nezmestia */
    justify-content: space-around; /* Rozmiestni podsekcie rovnomerne */
    align-items:center ; /* Vertikálne vycentruje podsekcie */
    width: 60%;
    margin: 20px auto 0;
    border-radius: 20px;
    background-color: white;
    box-shadow: -5px 0 5px blue;
    
    max-height: 200px;
    overflow: hidden; /*skrije do vnutra */
    transition: max-height 0.5s ease-in-out;
    position: relative;
}

/* roztiahnutie sekcie */

.sekcia1-1-obsah{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 10px;
    }

/* Trieda pre roztiahnutu sekciu */
.sekcia1-1.rozbalenie {
            max-height: 2000px; /* Dostatočne veľká hodnota, aby sa zmestil celý obsah */
        }

.sekcia1-1-obsah img{
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
   
}

.sekcia1-1-obsah h2{
    color: blue;
}

.sekcia1-3{
     display: flex; /* Zapne Flexbox pre hlavný kontajner */
    flex-wrap: wrap; /* Umožní, aby sa podsekcie zalomili na nový riadok, ak sa nezmestia */
    justify-content: space-around; /* Rozmiestni podsekcie rovnomerne */
    align-items: center; /* Vertikálne vycentruje podsekcie */
    width: 80%;
    margin: 0 auto;
    height: 250px; /* Príklad výšky */
    border: 1px solid grey;
    border-radius: 20px;
    margin-top: 20px;
    background-color: white;
    box-shadow: -5px 0 5px blue;
    
}


@media (max-width: 1200px) {
    .sekcia img{
        width: 90px;
    }
}

@media (max-width: 1000px) {
    .sekcia1-1{
        width: 90%;
        
    }
}

.sekciaobr img{
    width: 30%;
}


#rolovacieTlacitko {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #2b31bc;
    color: white;
    font-size: 24px;
    text-align: center;
    border: 1px solid white;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    transition: opacity 0.5s ease-in-out;
    padding: 5px;
    text-decoration:none ;

}
/* pmale rolovanie */
html {scroll-behavior: smooth;}

.ffcop{
    width: 4px; height: 80%; background-color: red; position: absolute;
    left: 50%; top:10%;  transform: translateX(-50%) rotate(-30deg);  }
.sipkaffcop {
    position: absolute; left: 19%; top: 10%; transform: translateX(-50%) rotate(-30deg);    
    border-left: 8px solid transparent;border-right: 8px solid transparent;border-bottom: 20px solid red; }

.ffbez{
    width: 4px; height: 80%; background-color: green; position: absolute;
    left: 50%; top:10%;  transform: translateX(-50%) rotate(-30deg);  }
.sipkaffbez {
    position: absolute; left: 19%; top: 10%; transform: translateX(-50%) rotate(-30deg);    
    border-left: 8px solid transparent;border-right: 8px solid transparent;border-bottom: 20px solid green; }




