/* CSS Document */

    * { box-sizing: border-box; margin: 0; padding: 0; }
    
    
    body {
      min-height: 100svh;               /* bezpečné 100% výšky aj na mobiloch */
      display: flex;
	  margin: 40px auto;
      justify-content: center;
      place-items: center;               /* centrovanie do stredu */
      background: #f6f7fb;
      background: linear-gradient(150deg, #fbf8fe, #6b8cbd);
      background-repeat:no-repeat;
      font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: #222;
      line-height:1.6;
      }


    .card {
      width: 100%;
	  max-width: 1200px;
      /* width: min(680px, 92vw); */        
      background: linear-gradient(150deg, #fbf8fe, #ccd6e8);
      border-radius: 16px;
      padding: 80px 100px;
      box-shadow:
        0 10px 30px rgba(0,0,0,.06),
        0 2px 8px rgba(0,0,0,.04);
      text-align: center;            
    }
    
    .card-text {
        margin:80px 60px auto 60px;
    }
    

    
    
    #podnadpis {
        color:#2b4c9c; font-weight:bold;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: .5rem;
        color: #2b4c9c;
        text-align:left;
    }
    h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: #2b4c9c;
        text-align:left;
    }

    .text {
      text-align:left;
    }
    .actions {
      margin-top: 20px;
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      appearance: none;
      border:0;
      border-radius: 999px;
      margin-top:30px;
      padding: 12px 18px;
      cursor: pointer;
      background: linear-gradient(90deg, #b97fc7, #894eb6);
      font-weight: 600;
      transition: transform .06s ease, opacity .2s ease;
      box-shadow: 2px 3px 4px 0 rgba(0,0,0,0.24),0px 7px 50px 0 rgba(0,0,0,0.19);
    }

    .btn a {
    color: white;
    text-decoration:none;
    }

    .btn:hover {
      transform: translateY(1px) scale(0.98);
      color: #fff;
	  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.24),0 10px 50px 0 rgba(0,0,0,0.19);
    }



/* NAVIGACNY PANEL */
    .nav {
        display: flex;
        justify-content: center;   /* centrovanie na stred */
        gap: 0px;                 /* medzera medzi odkazmi */
        margin: 40px auto 24px auto;
    }

    .nav a {
        text-decoration: underline;
        color: #2b4c9c;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 8px;
        transition: background .2s;
    }

    .nav a:hover {
        background: 0;
        color:darkblue;
        text-decoration:underline;
        text-decoration-thickness: 5px;
    }

    .nav a:active {
        color:darkblue;
        text-decoration:underline;
        text-decoration-thickness: 5px;
    }



/* NAVIGACNE BOXY ingex STRANKY */
    .boxy {
        display: flex; justify-content: center;
    }

    .box {
        width:180px;
        margin:100px auto;
        padding:40px 5px;
        justify-content: center;
        border:0px;
        background-color:white;
        border-radius: 16px;
        box-shadow: 2px 4px 4px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
        text-align: center;
        font-size:0.7em;
        font-weight:bold;
        cursor:pointer;
    }

    .box a {
        color:darkblue;
        text-decoration:none;
    }

    .box:hover {
        color:darkblue;
        text-decoration:none;
        box-shadow: 2px 4px 4px 0 rgba(0,0,0,0.24),0 30px 70px 0 rgba(0,0,0,0.19);
    }


/* FOOTER */
    .footer-projekt {
        margin:40px auto 20px auto; 
        width:80%;          
        display:block; 
        overflow: hidden;
        border:0px solid grey;    
    }
    
    .footer-projekt-text {
        margin:auto 20px auto 30px; 
        width:650px;        
        float:left;
        text-align:left; 
        color:#2b4c9c; 
        font-size: 0.875rem;
        font-weight:bold;
        opacity: 0.9;
        border:0px solid red;
    }

    .footer-flag {
        float:left;
        overflow:hidden;
    }
    
    .footer-copyright {
        font-size:0.87rem;
        font-weight:bold;
        color:black;
        opacity:0.5;
        overflow:hidden;     
        border:0px solid red;
    }
    
    .footer-date {
        opacity:0.7;
        overflow:hidden;
    }


.vbottom{
vertical-align:bottom;
}
