<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Lora', serif;
    background-color: #e6ddca;
    color: #2e4d3d;
    margin: 20px;
    padding: 0;
}

h1 {
    color: #2e4d3d;
    text-align: center;
}
h3 {
    color: #2e4d3d;
    text-align: center;
}
p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    max-width: 500px; /* logo sa nezvÃ¤ÄÅ¡Ã­ nad tÃºto Å¡Ã­rku */
    height: auto;
}
.logo-ornament {
    width: 50px;
    max-width: 100%; /* logo sa nezvÃ¤ÄÅ¡Ã­ nad tÃºto Å¡Ã­rku */
    height: auto;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* aby sa to na mobiloch zalomilo */
    padding: 40px 20px;
    padding-left: 100px;
    padding-right: 100px;
    gap: 20px;
  }
  
  .left-images {
    display: inline-block;
    flex-direction: column;
    vertical-align: left;
    gap: 10px;
  }
  .right-images {
    display: flex;
    flex-direction: column;
    vertical-align: right;
    gap: 10px;
    flex: 0 1 200px;
  }
  .side-img-left {
    margin-top: 200px;
    width: 300px;
    max-width: 100%;
    transform: rotate(-5deg); /* alebo +5deg podÄ¾a strany */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .side-img-right {
    margin-top: 30px;
    width: 300px;
    max-width: 100%;
    /*height: auto;*/
    transform: rotate(3deg);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  .side-img-right-w {
    margin-top:30px;
    width: 300px;
    max-width: 100%;
    transform: rotate(-3deg); /* alebo +5deg podÄ¾a strany */
    border-radius: 8px;
    margin-left: 100px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  .center-img {
    margin-top:20px;
    width: 40px;
    max-width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  .text-block {
    flex: 1 1 300px
    /*max-width: 450px;*/
    text-align: left;
    line-height: 1.6;
    margin-right: 20px;
    /*margin: 0 5px; */
  }
    /* Lightbox pozadie */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(230,221,202,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  /* VeÄ¾kÃ¡ fotka */
  .lightbox-overlay img {
    width:400px;
    height:auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
    cursor: pointer;
  }
  .lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
    cursor: pointer;
  }
  .arrow {
    width: 60px;  /* Nastav veÄ¾kosÅ¥ podÄ¾a potreby */
    height: auto; /* UdrÅ¾Ã­ pomer strÃ¡n */
    margin-right: 10px; /* Odstup medzi Å¡Ã­pkou a textom */
    vertical-align: middle; /* ZarovnÃ¡ obrÃ¡zok na stred textu */
  }
  .title-inline {
    display: inline-block;
    vertical-align: middle;
    margin-left: 33px;
  }
  ul {
    list-style: none;
    padding-left: 0;
  }
  .leistungen {
    list-style: none;
    padding-left: 0;
  }
  .clean-link {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
  }
  .clean-link:hover {
    text-decoration: underline;
  }
/* ðŸ“± TelefÃ³ny: Å¡Ã­rka do 600px */
@media (max-width: 600px) 
    {
    body { margin: 10px; }
    .logo { max-width: 200px; }
    .arrow {max-width: 30px;}
    h1 { font-size: 24px; }
    h3 { font-size: 20px;}
    p { font-size: 16px; } 
    .right-images { max-width: 50px;}
    .title-inline { margin-left: 5px;}
    }

/* ðŸ“² Tablety: Å¡Ã­rka do 900px */
@media (min-width: 601px) and (max-width: 900px) 
    {
    .logo { max-width: 230px; }
    .arrow {max-width: 70px;}
    h1 { font-size: 28px; }
    h3{ font-size: 22px;}
    p { font-size: 17px; }
    .right-images { max-width: 50px;}
    }

/* NavigÃ¡cia */
.main-nav 
    {
    text-align: center;
    margin-bottom: 30px;
    }

.main-nav ul 
    {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    }

.main-nav li 
    {
    margin: 0;
    }

.main-nav a 
    {
    text-decoration: none;
    color: #2e4d3d;
    font-weight: bold;
    padding: 20px 26px;
    border-radius: 5px;
    transition: background-color 0.3s;
    }

.main-nav a:hover 
    {
    background-color: #e6ddca;
    }

/* SkrytÃ½ checkbox pre prepÃ­nanie menu */
.nav-toggle 
    {
    display: none;
    }

/* Hamburger ikona */
.nav-toggle-label 
    {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    }

/* Å&nbsp;tÃ½ly navigÃ¡cie pre veÄ¾kÃ© obrazovky */
.main-nav ul 
    {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }

/* NavigaÄnÃ© odkazy */
.main-nav a 
    {
    text-decoration: none;
    color: #2e4d3d;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
     /* NovÃ© Å¡tÃ½ly: */
     font-size: 20px;           /* zvÃ¤ÄÅ¡enie textu */
     font-family: 'Lora', serif;  /* zmena Å¡tÃ½lu pÃ­sma */
     letter-spacing: 0.5px;     /* jemnÃ© rozostupy medzi pÃ­smenami */
     font-weight: 600;
     color:#2e4d3d
    }

.main-nav a:hover 
    {
    background-color: #e6ddca;
    }

/* ðŸ“± ResponzÃ­vne zobrazenie pre mobil */
@media (max-width: 600px) 
    {
    .nav-toggle-label 
        {
        display: block;
        text-align: center;
        }
    .main-nav ul 
        {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
        /* PridanÃ© pre animÃ¡ciu */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        }
    .nav-toggle:checked + .main-nav ul 
        {
        display: flex;
        max-height: 500px; /* dostatoÄne veÄ¾kÃ© na vÅ¡etky poloÅ¾ky */
        }
    }

/* Skry ikonku zatvorenia v zÃ¡kladnom stave */
.icon-close 
    {
    display: none;
    }

/* KeÄ je checkbox (nav-toggle) zaÅ¡krtnutÃ½, skry â˜° a zobraz Ã— */
.nav-toggle:checked + .main-nav .icon-menu 
    {
    display: none;
    }

.nav-toggle:checked + .main-nav .icon-close 
    {
    display: inline;
    }

.nav-toggle-label span 
    {
    font-size: 28px;
    user-select: none;
    }
</pre></body></html>