/*
Theme Name: meta
Theme URI: https://www.alleganca.com
Author: Meta Erženičnik
Author URI: https://www.alleganca.com
Text Domain: meta
License: 
License URI: 
Tags: full-site-editing, block-styles, accessibility-ready, custom-colors, custom-spacing, editor-style
Description: Block theme for modern websites using WordPress Full Site Editing.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.4
Version: 1.01
*/

/* Responsive base */
html {
  scroll-behavior: smooth;
}

.wp-site-blocks > footer.wp-block-template-part {
    margin-block-start: 0;
}

/*main header indexing*/
.site-header{
  z-index: 1000;
}



/* Highlight current page in the Navigation block */
.wp-block-navigation .wp-block-navigation-item__content[aria-current="page"] {
  font-weight: 700;
}

/* Ob registraciji - login/out link */
.wp-block-loginout a{
  text-decoration: none;
}

/* gumb v footer - koći na vrh strani */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
}

/* Header centriran brez translate/transform (ne lomi fixed overlay menija) */
.header-in-center{
  position: fixed !important;
  top: 2%;
  left: 0;
  right: 0;
  width: min(100%, var(--wp--style--global--wide-size, 80rem));
  margin-inline: auto;
  z-index: 1001;
}

/* submenu: sticky takoj pod headerjem */
.submenu{
  position: sticky !important;
  top: calc(3.6em + var(--wp-admin--admin-bar--height, 0px)); 
  z-index: 998;
  width: 100%;
  left: 0;
  right: 0;
}

/*glassmorphism za header - uporablja ::before*/
.glass{
  position: relative; /* nujno za ::before */
  background: rgba(255, 255, 255, 0.26) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass::before{ /* blur je na pseudo-elementu, ne na containerju */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(5.9px);
  -webkit-backdrop-filter: blur(5.9px);
  pointer-events: none;
  z-index: 0;
}
.glass > *{ /* vsebina headerja ostane nad blur plastjo */
  position: relative;
  z-index: 1;
}

/* form wrap (used with Forminator embeds) */
.form-container{
  max-width: 28rem;
  margin-inline: auto;
}
.form-btn {
  padding: 0.5em;
  border-radius: 0.2em;
  color: #fff;
  font-size: 1.2rem;
}

/* za SVG ikone */
.x-icon-figure{
  margin: 0;
  display: flex;
  justify-content: center;
}
.x-icon-figure img{
  width: 1.25em;   /* ali 110px */
  height: auto;
  display: block;
}


/* Rounded video */
video {
  border-radius: 4em 0 4em 0;
  overflow: hidden;
}

/* ...for youtube video, map...*/
iframe {
  border-radius: 4em 0 4em 0;
  overflow: hidden;
}

/* Global uppercase for all WP buttons/CTA (visual only) */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  text-transform: uppercase;
}

/* TEC: single event title (H1) */
.single-tribe_events .tribe-blocks-editor .tribe-events-single-event-title{
  line-height: 1.25 !important;
}










