/* -------------------------------------------------------

    Myself Rebel
    Copyright(c) 2025 Myself Rebel
    Version: 1.0

------------------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* variable */
:root {
    --base-color: #ffc107; /* #ff9857*/
    --medium-gray:#787875;
    --white: #ffffff;
    --light: #d8d8d4;
    --black: #131312;
    --concrete-gray:#d8d8d4;
    --concrete-white:#ffffff;
    --concrete-black:#333333;
    --bg-maire-yellow:#131312;
    --bg-maire-gray:#d8d8d4;
    --bg-maire-white:#ffffff;
    --light-medium-gray:#cdcdc7;
    --dark-gray:#2d2d2d; 
    --zeus-grey:#333331;
    --alt-font: 'Bebas Neue', cursive;
    --alt-font2: 'Space Grotesk', sans-serif;
    --primary-font: 'Inter', sans-serif;
    --hand-font: 'Caveat', cursive;
}
body {
    font-size: 17px;
    line-height: 30px;
    display: block;
    width: 100%;
}
.container-fluid {
    max-width: 1750px;
}
/* custom cursor */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor .circle-cursor-outer {
        border: 1px solid transparent;
    }
    .custom-cursor .circle-cursor-inner {
        width: 20px;
        height: 20px;
        left: -5px;
        top: -5px;
        background: var(--dark-gray);
    }
    .custom-cursor .circle-cursor-inner.cursor-link-hover {
        width: 30px;
        height: 30px;
        background: var(--white);
        opacity: 0.5 !important;
    }
}
/* heading tag */
h1 {
    font-size: 5rem;
    line-height: 4.5rem;
} 
h3 {
    font-size: 3.125rem;
    line-height: 2.8rem;
}
.fs-325 {
    font-size: 20.313rem;
    line-height: 20.313rem;
}
/* page title */
.page-title-large h1 {
    font-size: 5.625rem;
    line-height: 4.375rem;
}
/* header */
header .container-fluid {
    padding: 0;
}
.navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
}
.navbar .navbar-nav .nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}
.navbar .navbar-nav .nav-active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}
header .navbar-brand {
    padding: 38px 0;
}
header .navbar-brand img {
    max-height:64px;
}
/* line height */
.lh-160 {
    line-height: 10rem;
}
.lh-300 { 
    line-height: 18.75rem;
}
/* top bottom left right */
.top-minus-250px {
    top: -250px;
}
.right-minus-250px {
    right: -250px;
}
.right-minus-390px {
    right: -390px;
}
.left-minus-230px {
    left: -230px;
}
.left-minus-320px {
    left: -320px;
}
.bottom-340px {
    bottom: -340px;
}
.font-hand {
    font-family: var(--hand-font) !important;
}
.fz1 {
    font-size: 15px;
    line-height: 25px;
}
/* bg color */
.bg-concrete-gray {
    background-color: var(--concrete-gray);
}
.bg-maire-yellow {
    background-color: var(--bg-maire-yellow);
}
.bg-maire-gray {
    background-color: var(--bg-maire-gray);
}
.bg-maire-white {
    background-color: var(--bg-maire-white);
}
.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #292927), to(transparent));
    background: linear-gradient(to top, #292927 7%, transparent 100%);
}
.bg-gradient-gray-light-dark-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}
.bg-gradient-blue-ironstone-brown {
    background-image: linear-gradient(to right, #2c3846, #333945, #3e393f, #584344, #8b4d41);
}
/* media query responsive */
@media (max-width: 1300px) {
    .sticky-wrap.shadow-in {
        left: 18px;
    }
}
@media (max-width: 1250px) {
    .sticky-wrap.shadow-in {
        left: 2px;
    }
}



/* ===================================
   Mobile Etsy Sticky Bar
====================================== */
.mobile-etsy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000; /* Čierna farba pre silný kontrast */
    padding: 12px 15px;
    z-index: 1030; /* Vysoký z-index, aby bola lišta navrchu */
    border-top: 1px solid #333;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .mobile-etsy-bar .btn-mobile-etsy {
    display: inline-block;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
  }
  
  .mobile-etsy-bar .btn-mobile-etsy:hover {
    opacity: 0.8;
    color: #ffffff;
  }
  
  .mobile-etsy-bar .btn-mobile-etsy i {
    transition: transform 0.3s ease;
    display: inline-block;
  }
  
  .mobile-etsy-bar .btn-mobile-etsy:hover i {
    transform: translateX(5px);
  }

  .mobile-etsy-bar-yellow {
    background-color: #ffc600; 
    border-top: none; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-etsy-bar-yellow .btn-mobile-etsy {
    color: #000000; 
    font-weight: 700; 
  }
  
  .mobile-etsy-bar-yellow .btn-mobile-etsy:hover {
    color: #000000;
    opacity: 0.85;
  }



/* border color */
.border-color-zeus-grey {
    border-color: var(--zeus-grey) !important;
}
/* text color */
.text-concrete-gray {
    color: var(--concrete-gray);
}
.text-concrete-white {
    color: var(--concrete-white);
}
.text-concrete-black {
    color: var(--concrete-black);
}
.text-white, .btn-link.text-white, a.text-white-hover:hover {
    color: var(--white) !important;
}
.text-black, .btn-link.text-black, a.text-black-hover:hover {
    color: var(--black) !important;
}
.text-base, .btn-link.text-base, a.text-base-hover:hover {
    color: var(--base-color) !important;
}

/* word break normal */
.word-break-normal {
    word-break: normal;
}
/* btn */
.btn {
    font-family: var(--primary-font) !important;
    letter-spacing: 0;
}
.btn.btn-switch-text.btn-large > span {
    font-size: 15px;
    padding: 18px 36px; 
}
.btn.btn-switch-text.btn-medium > span {
    font-size: 14px;
    padding: 14px 28px; 
}
.btn.btn-base-color {
    color: var(--dark-gray);
}
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
.btn.btn-link {
    padding: 0;
}
.btn.btn-dark-gray, .btn.btn-box-shadow.btn-dark-gray:hover {
    color: #d8d8d4;
}
.threeD-letter-menu {
    min-height: inherit;
}
/* hover box */
.hover-box.dark-hover:hover i {
    color: var(--base-color) !important;
    -webkit-transform: scale(1.2);  
    transform: scale(1.2);
}
/* xspan */ 
.xspan span {
    display: inline-block;
}
/* bg sliding line */ 
.bg-sliding-line { 
    background-image: linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 0);
    background-size:0.2em 0.2em;
}
/*.text-sliding-line {
    background-image: linear-gradient(135deg, transparent 45%, #fff 45%, #fff 55%, transparent 0);
}*/
.text-sliding-line {
    background-image: linear-gradient(135deg, transparent 45%, #e1e1e1 45%, #000000 55%, transparent 0);
}
.text-sliding-line2 {
    background-image: linear-gradient(135deg, transparent 45%, #000000 45%, #000000 55%, transparent 0);
}
/* team style 08 */ 
.team-style-08 figure figcaption .social-icon a {
    background-color: var(--base-color);
}
.team-style-08 figure figcaption .social-icon a:hover {
    color: var(--dark-gray);
} 
/* team style 04 */ 
.tab-style-04 .nav-tabs .nav-item .nav-link {
    color: var(--dark-gray); 
}
/* Counter style 04 */
.counter-style-04 .vertical-counter-number ul {
    line-height: 1;
}
/* footer */
footer {
    padding-top: 110px;
    padding-bottom: 90px;
}
footer a {
    color: var(--dark-gray);
} 
footer a:hover {
    color: var(--dark-gray);
}
footer .footer-logo img {
    max-height: 84px;
}
footer .list-style-05 li:before {
    background-color:var(--dark-gray);
}
footer .list-style-05 li:hover {
    margin-left: 0;
}
footer .list-style-05 li:before {
    margin: 0 20px;
}
footer ul li {
    margin-bottom: 7px;
    -webkit-transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1); 
    transition: all 300ms cubic-bezier(0.37, 0.8, 0.63, 1);
}
footer ul li:last-child{
    margin-bottom: 0;
}
footer ul li a:hover {
    padding-left: 0px; /* 10px */
}

@media (max-width: 1599px) {
    .fs-325 {
        font-size: 18.313rem;
        line-height: 18.313rem;
    }
}
/* media query responsive */
@media (max-width: 1499px) {
    .fs-325 {
        font-size: 16rem;
        line-height: 16rem;
    }
}
@media (max-width: 1399px) {
    .bottom-minus-130px {
        bottom: -70px;
    }
    .fs-325 {
        font-size: 15rem;
        line-height: 15rem;
    }
} 
@media (max-width: 1199px) {
    .lg-lh-128 {
        line-height: 8rem;
    }
    .lg-bg-black {
        background-color: var(--bg-maire-yellow);
    }
    .fs-325 {
        font-size: 12rem;
        line-height: 12rem;
    } 
}
@media (max-width: 991px) {
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav > .nav-item {
        border-bottom: 0;
        text-align: center;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .nav-link {
        font-size: 32px;
        line-height: 32px;
        font-weight: 700;
    }
    .main-content {
        z-index: inherit;
    }
    .lh-300 {
        line-height: 15rem;
    }
    footer {
        padding-top: 90px;
        padding-bottom: 70px;
    }
    .fs-325 {
        font-size: 10rem;
        line-height: 10rem;
    }
    .right-minus-100px {
        right: -330px;
    }
    .mob-img {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .sm-border-start {
        border-left: 1px solid !important;
    }
    .btn.btn-switch-text.btn-large > span {
        padding: 18px 30px;
    }
    footer ul li {
        margin-bottom: 6px;
    }
    footer {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    footer .footer-logo img { 
        width: auto;
    }
    .fs-325 {
        font-size: 9rem;
        line-height: 10.5rem;
    } 
    .mob-img {
        display: none;
    }
    header .navbar-brand {
        padding: 0px 0 !important;
    }
}
@media (max-width: 575px) {
    .xs-lh-112 {
        line-height: 7rem;
    }
    .fs-325 {
        font-size: 6rem;
        line-height: 8rem;
    }
    .header-icon {
        display: none;
    }
    .mob-img {
        display: none;
    }
}