/* ==========================================================================
   site.css — FINAL UNIFIED VERSION WITH FOOTER
   ========================================================================== */
/* noto-serif-regular - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-serif-regular.woff2') format('woff2'); 
}
/* noto-serif-700 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Noto Serif';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-serif-700.woff2') format('woff2'); 
}
:root {
  /* --- 1. GLOBAL SETTINGS --- */
  --wrap: 1100px;
  --bg: #ffffff;
  --text-main: #333333;
  --surface: #233973;          /* Main Blue */
  --surface-light: #D7E3F7;          /* Main Blue */
  --text-on-surface: #ffffff;
  
  /* --- 2. NAVIGATION --- */
  --nav-height: 100px;
  --nav-link: #E8EEF7; 
    --nav-bg-hover: #6C86C1; 
  --nav-link-hover: #ffffff;
  --menu-text: #233973;
  
  /* --- 3. LINKS --- */
  --text-link: #1F5CE0;      /* Red links in footer */
  --text-link-hover: #3A61C1;

  /* --- 4. FOOTER SETTINGS --- */
  --footer-bg: #F2F0ED;        /* Light grey background */
  --footer-text: #333;
  --footer-link: #1F5CE0;      /* Red links in footer */
  --footer-link-hover: #3A61C1;
  /*--bsky-color: #0085ff; */      /* Bluesky brand blue */
  --bsky-color: #3A61C1;       
  --icon-size: 24px;

  /* --- 5. OVERLAYS & MOTION --- */
  --drawer-w: 320px;
  --scrim: rgba(0,0,0,0.5);
  --dur: 250ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BASE REPAIR --- */
* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text-main); font-family: sans-serif; line-height: 1.6;  scroll-behavior: smooth;}
body { margin: 0; overflow-x: hidden; font-size: 1.2em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }


/* --- SKIP LINK --- */
.skip-link {
  position: absolute; top: 0; left: 16px; transform: translateY(-100%);
  background: #111; color: #fff; padding: 10px 20px; z-index: 9999;
  text-decoration: none; transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

/* --- NAVIGATION --- */
nav.topnav {
  background: var(--surface); height: var(--nav-height); width: 100%;
  position: sticky; top: 0; z-index: 1000; display: flex; align-items: center;
}
.nav-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 100px; width: auto; display: block; }
/*.brand span { font-weight: 700; text-transform: uppercase; color: #fff; }*/
.brand span { font-weight: 700; font-size:1rem; text-transform: uppercase; color: transparent; }
.navlinks { display: flex; gap: 15px; }
.navlinks .pseudo.button {
  color: var(--nav-link); text-decoration: none; font-weight: 600; padding: 8px 12px;
}
/* .navlinks .pseudo.button:hover { color: var(--nav-link-hover); background: rgba(255,255,255,0.1); border-radius: 8px; } */
.navlinks .pseudo.button:hover { color: var(--nav-link-hover); background: rgba(255,255,255,0.2); border-radius: 0px; border-bottom: 3px #fff}

/* Burger button */
.navbtn { display: none; align-items: center; cursor: pointer; color: #fff; z-index: 1005; }
.navbtn__icon { width: 28px; height: 28px; stroke: currentColor; }

/* Mobile Menu Logic */
.navchk { position: fixed; opacity: 0; pointer-events: none; }
.navmenu {
  position: fixed; background: #fff; visibility: hidden; opacity: 0; z-index: 1100;
  display: flex; flex-direction: column; padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); transition: all var(--dur) var(--ease);
}
.navitem { display: block; padding: 16px; text-decoration: none; color: var(--menu-text); font-weight: 600; border-bottom: 1px solid #eee; }
[data-navmode="dropdown"] .navmenu { top: var(--nav-height); left: 0; right: 0; transform: translateY(-10px); }
[data-navmode="drawer"] .navmenu { top: 0; right: 0; bottom: 0; width: var(--drawer-w); height: 100vh; transform: translateX(100%); }
.navchk:checked ~ .navmenu { visibility: visible; opacity: 1; transform: translate(0) !important; pointer-events: auto; }
.navscrim { display: none; position: fixed; inset: 0; background: var(--scrim); z-index: 1050; }
.navchk:checked ~ .navscrim { display: block; }

/* --- HERO --- */
header.hero { padding: 30px 0 30px 0; color: #111; 

width: 100%;
min-height: 50vh;
background-color: var(--surface-light);
/*
background-image: url("/assets/ve.eu-herobg.webp");
background-size: cover;
background-position: center;
position: relative;
color: rgba(255, 255, 255, 0.8);
*/

}
h1 { font-size: 3rem; margin: 3rem 0 2rem 0; line-height:1.2em; font-family:"Noto Serif", serif;font-weight:700; text-transform: uppercase;  color:var(--surface); }
h2 { font-size: 2rem; margin: 1rem 0 0.3rem 0; font-family:"Noto Serif", serif;font-weight:700; text-transform: uppercase; color:var(--surface);  }
h3 { font-size: 1.5rem; margin: 0.2rem 0 0.2rem 0; font-family:"Noto Serif", serif;font-weight:700; text-transform: uppercase; color:#ee6600; }
header.hero h1 { font-size: 3rem; margin: 1rem 0 2rem 0; line-height:1.2em; font-family:"Noto Serif", serif;font-weight:700; text-transform: uppercase; color:var(--surface);  }

a { color: var(--text-link); text-decoration: none; transition: 0.2s; }
a:hover, a:active { text-decoration: underline; color:  var(--text-link-hover); }


/* The CSS "Mask" */
.u-lnk {
    /* Visual Trick: Flips the reversed text back so humans can read it */
    unicode-bidi: bidi-override;
    direction: rtl;    
    /* UX: Makes it look and feel like a link */
    cursor: pointer;
    color: var(--text-link);
    text-decoration: none;
}

/* Optional: Slight hover effect for better feedback */
.u-lnk:hover {
color: var(--text-link-hover);
text-decoration: underline;
}





/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {

background: #F2F0ED;
background-size: cover;
padding: 50px 0;
}

@media (min-width: 1365px) {
.call-to-action {
background-attachment: fixed;
}
}

.call-to-action h3 {
color: var(--surface);
font-size: 28px;
font-weight: 700;
}

.call-to-action p {
color: var(--text-main);
}

.call-to-action .cta-btn {
font-family: font-family: sans-serif; 
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 40px;
border-radius: 5px;
transition: 0.5s;
margin: 10px;
border: 2px solid #fff;
color:#fff!important;
  transition: background-color 0.3s ease, transform 0.2s;
}

.call-to-action .cta-btn:hover {
background: var(--surface);
border: 2px solid var(--surface);
color:#fff!important;
  transform: translateY(-2px); /* Lifts the button up slightly */
}



.btn-xlarge {

background-image: url('/assets/img/tick.png');
background-position: 0px -7px;
background-repeat: no-repeat;
background-size: 70px 73px;
padding: 21px 34px;
padding-left: 64px;	

font-size: 21px; /*change this to your desired size */
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
margin-top:3px;
width:13em;

background-color:#066cd3!important;
border: 2px solid  #066cd3!important;
color:#fff!important;
  transition: background-color 0.3s ease, transform 0.2s;
}

.btn-xlarge:hover {
background-color: var(--surface)!important;
border: 2px solid  var(--surface)!important;
transition: 0.4s;  
color:#fff!important;
  transform: translateY(-2px); /* Lifts the button up slightly */
}



.btn-x2large {

background-image: url('/assets/img/mail.png');
background-position: 0px -7px;
background-repeat: no-repeat;
background-size: 70px 73px;
padding: 21px 34px;
padding-left: 64px;	

font-size: 21px; /*change this to your desired size */
color:#fff;
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
margin-top:3px;
width:13em;
background-color:#ff6600!important;
border: 2px solid  #ff6600!important;
  transition: background-color 0.3s ease, transform 0.2s;
}

.btn-x2large:hover,.btn-x2large:active {
background-color: #ee3311!important;
border: 2px solid  #ee3311!important;
transition: 0.4s;
color:#fff!important;
  transform: translateY(-2px); /* Lifts the button up slightly */
}

.btn-x3large {

background-image: url('/assets/img/download.png');
background-position: 0px -7px;
background-repeat: no-repeat;
background-size: 70px 73px;
padding: 21px 34px;
padding-left: 64px;	

font-size: 21px; /*change this to your desired size */
color:#fff;
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
margin-top:3px;
width:13em;
background-color:#ff6600!important;
border: 2px solid  #ff6600!important;
  transition: background-color 0.3s ease, transform 0.2s;
}

.btn-x3large:hover,.btn-x3large:active {
background-color: #ee3311!important;
border: 2px solid  #ee3311!important;
transition: 0.4s;
color:#fff!important;
  transform: translateY(-2px); /* Lifts the button up slightly */
}

/*
.btn-prihlas {
background-image: url('/assets/img/mail.png');
background-position: 5px -2px;
background-repeat: no-repeat;
background-size: 50px 45px;
padding: 12px 20px;
padding-left: 25px;	

line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top:3px;
background-color:#ff6600!important;
border: 2px solid  #ff6600!important;
color:#fff!important;
margin-right:1px;
}

.btn-prihlas:hover,.btn-prihlas:active {
background-color:#ee3311!important;
border: 2px solid  #ee3311!important;
outline: none;
transition: 0.4s;
color:#fff!important;
}
*/



/*

.btn-x3large {

background-image: url('/assets/img/download.png');
background-position: 0px -7px;
background-repeat: no-repeat;
background-size: 70px 73px;
padding: 21px 34px;
padding-left: 64px;	

font-size: 21px; 
color:#fff;
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
margin-top:3px;
width:13em;
background-color:#ff6600!important;
border: 2px solid  #ff6600!important;
}

.btn-x3large:hover,.btn-x3large:active {
background-color: #ee3311!important;
border: 2px solid  #ee3311!important;
transition: 0.4s;
color:#fff!important;
}
*/




.btn {
padding: 12px 20px;
font-size: 18px; /*change this to your desired size */
line-height: 1.3em;
font-weight:bold;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top:3px;
background-color:#8E8D8B!important;
border: 2px solid  #8E8D8B!important;
color:#fff!important;
margin-right:1px;
}

.btn:hover,.btn:active,.btn:focus {
background-color: #ADACA9!important;
border: 2px solid  #ADACA9!important;
transition: 0.4s;
color:#fff!important;
outline: none;
transform: translateY(-2px); 
cursor: pointer;
}
button:hover {
  transform: translateY(-2px); 
    cursor: pointer;
}



.whatsapp-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Zelená */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.05);
    background-color: #233973;
	color:#fff;
}

.whatsapp-link svg {
    margin-right: 10px;
}

/* Na velmi malých mobilech schováme text a necháme jen ikonu */
@media (max-width: 480px) {
    .link-text { display: none; }
    .whatsapp-link { padding: 12px; border-radius: 50%; }
    .whatsapp-link svg { margin-right: 0; }
}

/* --- FOOTER GRID & CONTACT ICONS --- */
.footer { background: var(--footer-bg); padding: 10px 0 20px 0; border-top: 1px solid #eee; margin-top: 0; font-size: 15px; }
.footer .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.footer h4 { color:  var(--surface); margin-bottom: 10px; font-size: 1rem; text-transform: uppercase; }

/* --- FOOTER LINKS --- */
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { position: relative; padding: 1px 0 1px 14px;line-height:1.1em }
.footer li::before { 
  content: "›"; 
  position: absolute; 
  left: 0; 
  color: var(--surface);
}

.footer a { color: var(--footer-link); text-decoration: none; transition: 0.2s; font-weight: bold}
.footer a:hover { text-decoration: underline; color: var(--footer-link-hover);}

.footer-links ul {
  list-style: none!important;
  padding: 0;
}




.contact-item img {
height:1.1em;max-height:1.1em;	
}

/* --- PRIVACY BANNER --- */


.privacy-banner {
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%; max-width: 600px;
    background: #333; color: #d0d0d0;
    padding: 11px 30px; z-index: 3000;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.5s var(--transition);
}
.privacy-banner.show { transform: translateX(-50%) translateY(0); }



/* --- CONTACT ITEMS & ICONS --- */
.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom:0;
}

/* External SVG <img> */
.contact-item img.icon {
  width: var(--icon-size);
  height: var(--icon-size);
}


/* --- BLUESKY BUTTON --- */
.bsky-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width:  var(--icon-size);
  height: var(--icon-size);
  background-color: var(--bsky-color);
  border-radius: 50%;
  transition: transform 0.2s;
}

.bsky-icon img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1); /* Makes the butterfly white */
}

.bsky-icon:hover { transform: scale(1.1); }



footer .copyright { text-align: center; margin-top: 30px; padding-top: 10px; border-top: 1px solid #eee; color: #888; font-size: 13px; }




/* --- RESPONSIVE LOGIC --- */
@media (max-width: 860px) {
  .navlinks { display: none; }
  .navbtn { display: flex; }
  
  /* Footer Mobile: 2 columns */
  .footer .row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Make first and last column span full width on small mobile if needed */
  .footer .col-5 {
    grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .footer .row {
    grid-template-columns: 1fr; /* Single column on very small phones */
  }
  .footer .col-4, .footer .footer-contact {
    grid-column: span 1;
  }
}

html.nav-open { overflow: hidden; }

