

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #F8CB2E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #ffffff;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-image: url('../images/background_startowe.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #0d0d0d;
}

}
@media (min-width: 768px) {
  body {
    background-image: url('../images/background_startowe.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #0d0d0d;
  }
}
@media (max-width: 767px) {
  body{
    background-image: url('../images/background_startowe_mobile.png'); 
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #0d0d0d;
  }
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
}

h1,
h2 {
    color: #FCF0E9;
    text-shadow: #0f0f0f -2px 3px 1px;
}
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: #FFFFFF;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
}

a:hover {
  color: #A3A3A3;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-padding2{
  padding-top: 100px;
  padding-bottom: 1px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}
.section-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}



/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: #bf910c;
  border: 2px solid transparent;
  /*border-radius: var(--border-radius-small);*/
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn-1 {
  background: #bf910c;
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 20px 40px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


@media only screen and (max-width: 480px) {
    .video-wrap-mbl {
        display: none;
    }
}
    
@media only screen and (min-width: 481px) {
    .video-wrap {
        display: none;
    }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 1920 / 1108;   
  min-height: 320px;
  overflow: visible;
  margin: 0;
  padding: 0;
}


.effects-wrap, .overlay-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.overlay-top {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   
  z-index: 3;
  pointer-events: none;
}

.overlay-pl {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/nakladka.png');
  background-image: url('../images/nakladka.png');
}

  @media screen and (max-width: 991px) {
  .overlay-pl {
  background-image: url('../images/nakladka_mobile.png');
  }
}

  @media screen and (min-width: 576px) and (max-width: 991px) {
  .overlay-pl {
  background-image: url('../images/nakladka_tablet.png');
  }
}

.overlay-en {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../images/nakladka_en.png');
}

  @media screen and (max-width: 991px) {
  .overlay-en {
  background-image: url('../images/nakladka_mobile_en.png');
  }
}

  @media screen and (min-width: 576px) and (max-width: 991px) {
  .overlay-en {
  background-image: url('../images/nakladka_tablet.png');
  }
}

.overlay-top { z-index: 10; }
/* domyślnie pokazuj PL */
.overlay-en { display: none; }

/* gdy język EN – pokazuj EN, ukrywaj PL */
html[data-lang="en"] .overlay-en { display: block; }
html[data-lang="en"] .overlay-pl { display: none; }


.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.15;
}

.hero-section .container {
   position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section_en .container {
   position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section .container .row {
  height: auto;
}

.hero-bg,
.hero {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: contain;
  z-index: 10;  
  pointer-events: none;
  
}

.hero-bg { z-index: 1; }


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  position: relative;
  min-height: 1108px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  aspect-ratio: 1920 / 1108;
}
.overlay-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 10; 
  pointer-events: none; 
}
.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0);
  border-radius: var(--border-radius-medium);
  border: 0px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}


/*---------------------------------------
  COINS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  margin-left: 30px;
}

.artists-image {
/* border-radius: var(--border-radius-medium);*/
  display: block;
  width: 80%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: #bf910c;
  background-color: #bf910c;
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 0px 0px 0px 0px;
  padding: 20px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 60px;
  margin-right: 10px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: #0F0F0F;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: #0F0F0F;
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: #bf910c; 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
  line-height: 18px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: #bf910c;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    height: 65vw;    
    min-height: 220px;
    aspect-ratio: 1/1;
  }
  .twinkling, .clouds, .overlay-top {
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .about-section {
    background-position: center center;
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  .about-section {
    background-position: center center;
}

.order-btn .btn-img{
  width: 1000px;
  max-width: 100%;
  display: block;
  transition: opacity .2s;
}
@media (max-width: 600px){
  .order-btn .btn-img{ width: 300px; }
}

/* ——— PL ——— */
.lang-pl .order-btn-pl .btn-img{
  content: url('../images/btn-rozpocznij-normal_pl.png');
}
.lang-pl .order-btn-pl:hover .btn-img,
.lang-pl .order-btn-pl:focus .btn-img{
  content: url('../images/btn-rozpocznij-hover_pl.png');
}

/* ——— EN ——— */
.lang-en .order-btn-en .btn-img{
  content: url('../images/btn-rozpocznij-normal_en.png');
}
.lang-en .order-btn-en:hover .btn-img,
.lang-en .order-btn-en:focus .btn-img{
  content: url('../images/btn-rozpocznij-hover_en.png');
}

