.body{
    background-color: rgb(255, 255, 255);
}

.header{
    height: 120px;
    width: auto;
    border: 1px solid #f7f139;
    background-color: #f7f139;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 5px;
    box-shadow: 10px 10px 5px #3E2510;
    background: linear-gradient(to top, #fff6a8, #ffffff);
}

.logo {
  display: flex;
  align-items: center;  
}
.logo img {
  max-height: 60px;
  max-width: 100%;
  height: auto;
  width: auto;
}

.a{
    text-decoration: none;
    color: #3E2510;
    font-size: 35px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    margin-left: 50px;
    padding-left: 0;
    margin-top: 0;
    margin-right: 20px;
}

.a:hover{
    color: white;
    background-color: #3E2510;
    border-radius: 5px;
    transition: 0.3s;
}

.main{
    width: auto;
    height: 900px;
    border: 1px solid #fff6a8;
    background-color: #fff6a8;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 10px 10px 5px #3E2510;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main-img{
    height: 800px;
    width: 600px;
    margin-top: 20px;
}

.footer{
    position: relative; 
    height: 100px; 
    width: 100%;
    background-color: #3E2510;
    border: 1px solid #3E2510;
    border-radius: 5px;
    box-shadow: 10px 10px 5px #3E2510;
    margin-top: 20px;
    overflow: hidden;
}

/* prvý rad hexagónov */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34.641' height='40'><polygon points='17.32,0 34.64,10 34.64,30 17.32,40 0,30 0,10' fill='none' stroke='%236b4d34' stroke-width='1.2'/></svg>");
    background-repeat: repeat-x;
    background-size: 34.64px 40px;
    pointer-events: none;
    z-index: 1; /* hexagóny pod textom */
}

/* druhý rad hexagónov */
.footer::after {
    content: '';
    position: absolute;
    top: 30px; 
    left: 17.32px; 
    width: 100%;
    height: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34.641' height='40'><polygon points='17.32,0 34.64,10 34.64,30 17.32,40 0,30 0,10' fill='none' stroke='%236b4d34' stroke-width='1.2'/></svg>");
    background-repeat: repeat-x;
    background-size: 34.64px 40px;
    pointer-events: none;
    z-index: 1; /* hexagóny pod textom */
}

.hex-row3{
    position: absolute;
    top: 60px; /* tretí rad */
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='34.641' height='40'><polygon points='17.32,0 34.64,10 34.64,30 17.32,40 0,30 0,10' fill='none' stroke='%236b4d34' stroke-width='1.2'/></svg>");
    background-repeat: repeat-x;
    background-size: 34.64px 40px;
    pointer-events: none;
}

.footer::before, .footer::after, .hex-row3 {
    filter: brightness(0.4) contrast(1.2);
}

.footer-logo{
    position: relative;
    z-index: 2;          /* nad hexagónmi */
    height: 100px;        /* zmenši podľa potreby */
    width: 150px;
    float: left;
    padding-left: 30px;
}

/* text nad hexagónmi */
.footer-text{
    position: relative;
    z-index: 2; /* vyššie ako hexagóny */
    color: white;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding-top: 20px; /* uprav podľa potreby */
}