/* =========================================================
   ENERGYM - Clean CSS (based on your existing classes)
   ========================================================= */

/* ---------- Base ---------- */
:root{
  --primary:black;
  --accent:rgb(255, 136, 0);
  --text:black;
  --dark:#000;
  --white:black;
  --border:rgb(255, 136, 0);
}

html,
body{
  overflow-x:hidden;
}
body{
  font-family:"Muli", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height:1.7;
  font-weight:300;
  font-size:1.1rem;
  color:var(--text);
  background:black;
} 
p {
  color: #ababab;
}
h2{
  color: #bbb;
}

::selection{ background:#000; color:#fff; }

a{ transition:.25s ease; }
a:hover{ text-decoration:none; }

/* Headings */
h1,h2,h3,h4,h5{ color:var(--dark); }

/* Sections */
.site-section{ padding:2.5em 0; 
background-color: black;}
@media (min-width:768px){ .site-section{ padding:5em 0; } }

.section-heading .subheading{
  color:#ababab;
  font-size:1.2rem;
}
.section-heading .heading{
  color:#000;
  font-size:2.5rem;
  font-weight:900;
}
.intro-section {
  background-image: url("../images/pocetnap.jpg");
  background-size: cover;        /* ја пополнува цела секција */
  background-position: center;   /* центрирана */
  background-repeat: no-repeat;
  min-height: 100vh;             /* висина на цел екран */
  display: flex;
  align-items: center;
}


/* Buttons (keep compatible with bootstrap .btn) */
.btn{
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  border-width:2px;
}
.btn:focus,
.btn:active{ box-shadow:none !important; outline:none; }

/* ---------- Navbar ---------- */
/* =================================================
   NAVBAR – FINAL FIX (always visible, 50% transparent)
   ================================================= */

/* navbar always on top */
.site-navbar{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3200 !important;

  background: rgba(0, 0, 0, 0.5); /* ✅ 10% transparency */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* navbar text always visible */
.site-logo a,
.site-navigation .site-menu > li > a{
  color: #fff !important;
  font-weight: 700;
}

/* prevent hero from hiding under navbar */
#home-section{
  padding-top: 100px;
}

/* completely disable sticky plugin visual override */
.sticky-wrapper.is-sticky .site-navbar{
  background: rgba(0, 0, 0, 0.5) !important;
  box-shadow: none !important;
}

.sticky-wrapper.is-sticky .site-logo a,
.sticky-wrapper.is-sticky .site-navigation .site-menu > li > a{
  color: #fff !important;
}

/* force YT background video BELOW navbar */
.mbYTP_wrapper,
.YTPOverlay,
#bgndVideo{
  z-index: 0 !important;
}

.site-navbar .container-fluid{
  padding-left:7rem;
  padding-right:7rem;
}
@media (max-width:991.98px){
  .site-navbar .container-fluid{
    padding-left:15px;
    padding-right:15px;
  }
}

.site-logo{
  font-weight:900;
  font-size:1.3rem;
  text-transform:uppercase;
}
.site-logo a{ color:#fff; }

.site-navigation .site-menu{
  margin:0;
  padding:0;
  list-style:none;
}
.site-navigation .site-menu > li{
  display:inline-block;
}
.site-navigation .site-menu > li > a{
  padding:5px 20px;
  color:#fff;
  display:inline-block;
}
.site-navigation .site-menu > li > a:hover{
  color:#fff;
  opacity:.9;
}

/* Sticky state (jquery.sticky.js adds wrapper classes) */
.sticky-wrapper.is-sticky .site-navbar{
  background:#fff;
  box-shadow:4px 0 20px -5px rgba(0,0,0,.2);
}
.sticky-wrapper.is-sticky .site-logo a{ color:#000; }
.sticky-wrapper.is-sticky .site-navigation .site-menu > li > a{
  color:#000;
}
.sticky-wrapper.is-sticky .site-navigation .site-menu > li > a:hover{
  color:var(--primary);
}

/* Mobile toggle icon color */
.site-menu-toggle > span:before{ color:#fff; }
.sticky-wrapper.is-sticky .site-menu-toggle > span:before{ color:#000; }

/* ---------- Mobile Menu ---------- */
.site-mobile-menu{
  width:300px;
  position:fixed;
  right:0; top:0;
  height:100vh;
  z-index:4100;
  background:#0d0d0d;
  transform:translateX(110%);
  transition:.25s ease;
  box-shadow:-10px 0 20px -10px rgba(0,0,0,.35);
  padding-top:20px;
  border-left:2px solid var(--accent);
}
.offcanvas-menu .site-mobile-menu{
  transform:translateX(0);
  z-index:4100;
}

.site-mobile-menu-header{
  padding-left:20px;
  padding-right:20px;
}
.site-mobile-menu-close{
  float:right;
  margin-top:8px;
}
.site-mobile-menu-close span{
  font-size:30px;
  cursor:pointer;
  color:#fff;
}

.site-mobile-menu-body{
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  height:calc(100vh - 52px);
  padding:0 20px 150px;
}
.site-mobile-menu .site-nav-wrap{
  margin:0;
  padding:0;
  list-style:none;
}
.site-mobile-menu .site-nav-wrap > li{
  border-bottom:1px solid rgba(255,255,255,.12);
}
.site-mobile-menu .site-nav-wrap > li > a{
  display:block;
  padding:14px 0;
  font-size:1.05rem;
  font-weight:700;
  color:#fff;
}
.site-mobile-menu .site-nav-wrap > li > a:hover{
  color:var(--accent);
  padding-left:8px;
}

/* Overlay (template uses .site-wrap:before when offcanvas-menu active) */
.site-wrap{
  position:relative;
  overflow-x:clip;
}
.site-wrap:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:4050;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
}
.offcanvas-menu .site-wrap:before{
  opacity:1;
  visibility:visible;
}
.offcanvas-menu .site-navbar,
.offcanvas-menu .sticky-wrapper{
  z-index:3200 !important;
}

/* ---------- Hero / Intro ---------- */
.intro-section{
  position:relative;
}
.intro-section,
.intro-section .container .row{
  height:100vh;
  min-height:900px;
}
@media (max-width:991.98px){
  .intro-section .container .row{
    min-height:700px;
  }
}

/* overlay on hero */
.intro-section:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:1;
}
.intro-section > .container{
  position:relative;
  z-index:2;
}

.intro-section h1{
  font-size:4rem;
  font-weight:900;
  color:#fff;
}
@media (max-width:991.98px){
  .intro-section h1{ font-size:2rem; }
}
.intro-section .desc{
  color:#fff;
  font-size:1.4rem;
  max-width:700px;
}

/* ---------- Schedule top strip ---------- */

.schedule-wrap{
  padding:40px;
  background:var(--primary);
  max-width:700px;
  position:relative;
  z-index:9;
  color:#fff;
  transform:translateY(-50%);
}
.schedule-wrap:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:inherit;
  transform-origin:bottom left;
  transform:skew(-12deg, 0deg);
   border: 3px solid orange; /* портокалова линија */
  border-radius: 12px;      /* заоблени агли */
  pointer-events: none;     /* за да не спречува кликање на копчето */
}

.schedule-wrap strong{ color:#fff; font-weight:700; }

.schedule-wrap .cta a{
  text-align:center;
  background:var(--accent);
  color:#fff;
  padding:10px 20px;
  text-decoration:none;
}
.schedule-wrap .cta a .arrow{
  font-size:1.2rem;
  position:relative;
  top:3px;
}
.schedule-wrap-mirror:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  transform-origin: bottom right; /* промена за mirror */
  transform: skew(12deg, 0deg);  /* огледален ефект */
}

/* ---------- Schedule bottom strip ---------- */
.family-discount {
  display: flex;
  align-items: center;
  justify-content: center; /* за центрирање под header */
  gap: 10px; /* растојание помеѓу иконата и текстот */
  margin-top: 10px;
}

.family-discount .family-icon {
  width: 30px; /* големина на иконата */
  height: 30px;
}

.family-discount .badge {
  background-color: orange; 
  color: #000000; /* црн текст */
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95rem;
}

.schedule-wrap2{
  padding:40px;
  background:var(--primary);
  width:50%;
  position:absolute;
  right:0;
  z-index:9;
  color:#fff;
  transform:translateY(-50%);
}
@media (max-width:991.98px){
  .schedule-wrap2{ width:90%; }
}
.schedule-wrap2:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:inherit;
  transform-origin:bottom right;
  transform:skew(12deg, 0deg);
}
.schedule-wrap2 strong{ color:#fff; font-weight:700; }

.schedule-wrap2 .cta a{
  background:var(--accent);
  color:#fff;
  padding:10px 20px;
  text-decoration:none;
}
.schedule-wrap2 .cta a .arrow{
  font-size:1.2rem;
  position:relative;
  top:3px;
}

/* ---------- Slider Feature Cards ---------- */
.ftco-feature-1{
  background-color: orange;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  width:100%;
  height:320px;
}

.ftco-feature-1 .icon {
  font-size: 50px;
  margin-bottom: 12px;
}
.ftco-feature-1 .ftco-feature-1-text{
  display:flex;
  flex-direction:column;
  flex:1;
}
.ftco-feature-1 h2{
  font-size:20px;
  font-weight:900;
  margin-bottom:12px;
}
.ftco-feature-1 p{
  color:var(--text);
  margin-bottom:0;
}
.ftco-feature-1:hover{
  box-shadow:0 0 20px -5px rgba(0,0,0,.12);
}

/* Owl dots styling (your template classes) */
.block-14 .owl-nav{ display:none; }
.block-14 .owl-stage{
  padding:2rem 0;
  display:flex;
  align-items:stretch;
}
.block-14 .owl-item{
  display:flex;
  height:auto;
}
.block-14 .slide{
  display:flex;
  width:100%;
}
.block-14 .owl-dots{ text-align:center; }
.block-14 .owl-dot{ display:inline-block; margin:5px; }
.block-14 .owl-dot > span{
  display:inline-block;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#000;
  border:2px solid var(--accent);
  transition:background-color .2s ease, border-color .2s ease;
}
.block-14 .owl-dot.active > span{
  background:var(--accent);
  border-color:var(--accent);
}

/* ---------- Background image sections ---------- */
.bgimg{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  position:relative;
}
.bgimg,
.bgimg .container .row{
  height:500px;
}
.bgimg:before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.4);
  z-index:1;
}
.bgimg > .container{
  position:relative;
  z-index:2;
}
.bgimg h2{
  color:#fff;
  font-size:3rem;
  font-weight:900;
  margin:0;
}
@media (max-width:991.98px){
  .bgimg h2{ font-size:2rem; }
}
.bgimg .lead{ color:#fff; }

/* ---------- Pricing Tabs ---------- */
.days{
  width:100%;
  padding:0;
  margin:0 0 50px 0;
  gap:10px;
}
.days li{
  text-align:center;
  display:inline-block;
  width:auto;
  flex:1;
}
.days li a{
  background:#eee;
  padding:10px;
  display:block;
  font-weight:900;
  color:#000;
  border-radius:6px;
}
.days li a:hover,
.days li a.active{
  background:var(--primary);
  color:#fff;
}

/* Price cards */
.price-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  height:100%;
}
.price-card h3{
  font-weight:900;
  margin-bottom:10px;
}
.price-card .price{
  color:var(--primary);
  font-weight:900;
  font-size:1.4rem;
  margin-bottom:10px;
}

/* ---------- Contact ---------- */
.contact-wrap{
  padding-bottom:8rem !important;
}
#contact-section .contact-info a{
  color:var(--primary);
  font-weight:700;
}
#contact-section .contact-info a:hover{ opacity:.85; }


/* ---------- Footer ---------- */
.footer-section{
  padding: 1rem 0 0 1rem !important;
  background:#111;
  color:#bbb;
}
.footer-section p{ font-size:1rem; color:#bbb; text-align: start; }
.footer-section a{ color:#bbb; }
.footer-section a:hover{ color:#fff; }
.footer-section .row{
  margin-left:0;
  margin-right:0;
}

/* Small polish */
.lead{ font-weight:300; }
.desc{ opacity:.95; }

/* ---------- Mobile refinements ---------- */
@media (max-width:991.98px){
  body.offcanvas-menu{ overflow:hidden; }

  .site-mobile-menu{
    width:min(86vw, 340px);
    z-index:4100;
  }
  .site-wrap:before{
    position:fixed;
    z-index:4050;
  }

  .site-logo{ font-size:1.1rem; }
  .site-menu-toggle > span:before,
  .sticky-wrapper.is-sticky .site-menu-toggle > span:before{
    color:#fff;
  }

  .schedule-wrap{
    max-width:100%;
    margin:0 12px;
    padding:22px 18px;
    transform:translateY(-34%);
  }
  .schedule-wrap:before{ transform:none; }
  .schedule-wrap .hours{
    margin-right:0 !important;
    margin-bottom:16px !important;
    font-size:.95rem;
    line-height:1.55;
  }
  .schedule-wrap .cta{
    width:100%;
    margin-left:0 !important;
  }
  .schedule-wrap .cta a{
    width:100%;
    justify-content:center;
    min-height:46px;
    border-radius:8px;
  }

  .days{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
    margin-bottom:24px;
  }
  .days li{
    width:100%;
    margin:0;
    min-width:0;
  }
  .days li a{
    min-height:48px;
    padding:10px 8px;
    border:1px solid rgba(255,136,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.86rem;
    line-height:1.2;
  }
  .price-card{
    padding:18px 14px;
    border-radius:10px;
  }
  .price-card h3{ font-size:1.12rem; }
  .price-card .price{ font-size:1.08rem; }

  .block-14 .owl-stage{ padding:1rem 0; }
  .block-14 .slide{ height:100%; }
  .block-14 .ftco-feature-1{
    height:300px;
    padding:18px 14px;
    border-radius:10px;
  }
  .block-14 .ftco-feature-1 .icon{
    font-size:38px;
    margin-bottom:10px;
  }
  .block-14 .ftco-feature-1 h2{
    font-size:1.15rem;
    margin-bottom:10px;
  }
  .block-14 .ftco-feature-1 p{
    font-size:.95rem;
    line-height:1.55;
    margin-bottom:0;
  }

  .contact-wrap{ padding-bottom:4rem !important; }
  #contact-section .contact-info{
    background:#111;
    border:1px solid rgba(255,136,0,.35);
    border-radius:12px;
    padding:18px 14px;
    position:relative;
    z-index:20;
  }
  #contact-section .contact-info p{
    margin-bottom:12px;
    line-height:1.55;
  }
  #contact-section .contact-info p strong{
    display:block;
    margin-bottom:6px;
    color:#f0f0f0;
  }
  #contact-section .contact-info a[href^="tel"]{
    font-size:1.1rem;
    font-weight:800;
    word-break:break-word;
  }
  #contact-section .contact-info p a[target="_blank"]{
    width:46px;
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:4px 8px 0 0 !important;
    background:#000;
    border:1px solid rgba(255,136,0,.45);
    position:relative;
    z-index:21;
    pointer-events:auto;
  }
  #contact-section .contact-info p a[target="_blank"] img{
    width:24px !important;
    height:24px;
    object-fit:contain;
  }
}

@media (max-width:420px){
  .site-mobile-menu{ width:100vw; }
  .days{ grid-template-columns:1fr; }
}
