/*======================================
Theme Name: Falco
Description: Falco Basketball Club.
Version: 1.0
Author: Alexander Tatic
Template: Divi
======================================*/
/* === HEADER === */
.hamburger-icon {
  width: 35px;
  height: 30px;
  position: absolute;
  cursor: pointer;
  z-index: 10001;
  right: 0;
}

.hamburger-icon .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.bar.top {
  top: 0;
}

.bar.middle {
  top: 8px;
}

.bar.bottom {
  top: 16px;
}

.hamburger-icon.open .top {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger-icon.open .middle {
  opacity: 0;
}

.hamburger-icon.open .bottom {
  transform: rotate(-45deg);
  top: 10px;
}

.at-store-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-left: 20px;
}

.at-cta a {
  border: 2px solid #FFED00;
  padding: 10px 9px 10px 8px;
  margin-top: -11px;

}

.falco-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .falco-social-icons {
    justify-content: center;
  }
}

.falco-social-icons a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

@media (max-width: 980px) {
.falco-social-icons a {
  color: #FFED00;
	}
}

.falco-social-icons a:hover {
  color: #FFF;
}

@media (max-width: 980px) {
.falco-social-icons a:hover {
  color: #fff;
	}
}

.falco-social-icons a:last-child {
  font-weight: bold;
  font-size: 18px;
}


/* === FULLSCREEN MENU === */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #000;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(1.05);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.fullscreen-menu.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

/* === MENU LINKS FADE IN === */
.menu-links {
  list-style: none !important;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-links li {
  font-family: "Roboto Condensed";
  font-size: 18px;
  text-transform: uppercase;
  color: #FFED00;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  padding-top: 5px;
  padding-bottom: 5px;

}

.fullscreen-menu.open .menu-links li {
  opacity: 1;
  transform: translateY(0);
  margin: 10px 50px 0px 50px;
}

.fullscreen-menu.open .menu-links li a {
  color: #FFED00;
  font-weight: 500;
}

.fullscreen-menu.open .menu-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.fullscreen-menu.open .menu-links li:nth-child(2) {
  transition-delay: 0.2s;
}

.fullscreen-menu.open .menu-links li:nth-child(3) {
  transition-delay: 0.3s;
}

.fullscreen-menu.open .menu-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.fullscreen-menu.open .menu-links li:nth-child(5) {
  transition-delay: 0.5s;
}

.fullscreen-menu.open .menu-links li:nth-child(6) {
  transition-delay: 0.6s;
}

.fullscreen-menu.open .menu-links li:nth-child(7) {
  transition-delay: 0.7s;
}

.fullscreen-menu.open .menu-links li:nth-child(8) {
  transition-delay: 0.8s;
}

/* === DISABLE SCROLL === */
body.menu-open {
  overflow: hidden;
}

/* === Hero slider === */
#at-hero-container {
  position: relative;
  overflow: hidden;
}

#at-hero-container1 .at-hero-slide {
  width: 100%;
}

@media (max-width: 980px) {
  #at-hero-container .at-hero-slide {
    min-height: 50vh;
  }
}

#at-hero-container .at-hero-content {
  position: absolute;
  bottom: 10vh;
}

.slick-arrow {
  z-index: 10;
}

#at-hero-container .at-hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  #at-hero-container .at-hero-slide {
    min-height: 95vh;
	}
}

.slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.slick-dots button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}

.slick-dots li button {
  background: rgba(255, 237, 0, 0.5);
}

.slick-dots button:hover {
  opacity: 1;
}

.slick-dots .slick-active button {
  background: #ffee00;
  opacity: 1;
}

/* POST SLIDER */

#at-news-slider .psacp-post-overlay .psacp-post-meta {
  color: #FFED00 !important;
}

.psacp-post-carousel-wrap.psacp-design-1 .psacp-post-cats a {
  background-color: #FFED00 !important;
  color: #000 !important;

}

#at-news-slider .psacp-post-carousel-wrap .owl-dots .owl-dot {
  width: 20px !important;
  height: 20px !important;
  padding: 0px !important;
  background: #FFED00;
  margin: 0 5px;
  border: 1px solid #000 !important;
  border-radius: 100%;
  display: inline-block;
  box-shadow: none;
}

#at-news-slider .psacp-post-carousel-wrap .owl-dots .owl-dot.active {
  background: #000 !important;
}

#at-news-slider .psacp-post-carousel-wrap .owl-nav .owl-next:hover {
  background: #FFED00;
  color: #000;
}

#at-news-slider .psacp-post-carousel-wrap .owl-nav .owl-prev:hover {
  background: #FFED00;
  color: #000;
}

#at-news-slider .owl-carousel .owl-stage-outer {
  margin-bottom: 30px;
}

/*SINGLE POST TEMPLATE */

#at-cat-pill .et_pb_title_container .et_pb_title_meta_container a {
  background-color: #FFED00;
  padding: 5px 15px;

}

/*Arena Savaria Single Page*/

.at-info-cart-yellow span {
  font-weight: 700;
  text-transform: uppercase;
}

.at-info-cart-btn a {
  text-transform: uppercase;
  border: 2px solid #000;
  padding: 10px 30px 10px 30px;
  color: #000;
  background: #FFED00;
}

.at-info-cart-btn a:hover {
  background: #000;
  color: #FFED00;
  transition: all 0.5s ease;
}

.at-info-cart-btn {
  margin-top: 20px;
}

/* Players Slider*/

.players-slider .player-item {
  text-align: center;
  opacity: 0.5;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.players-slider .player-item img {
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto;
}

.players-slider .player-item .player-info {
  margin-top: 0px;
}

.players-slider .player-item .player-number {
  display: none;
}

.players-slider .player-item .player-name {
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  padding-top: 10px;
}

.players-slider .player-item .player-position {
  font-size: 18px;
  color: #FFED00;
  margin: 0;

}

.players-slider .slick-center {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.players-slider .slick-center img {
  max-height: 500px;
}

/* Mobile */
@media (max-width: 768px) {
  .players-slider .player-item {
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  .players-slider .slick-slide {
    padding: 0 10px;
  }
}