.wc_statusbar {display: none;}
.menu-on {
overflow: hidden !important;
}
.container {
max-width: 1170px;
width: 100%;
}
.container::before {
display: none;
}
@media (min-width: 993px) {
#main-menu li:nth-child(8) {display: none !important;}}
@media (max-width: 992px) {
#main-menu ul li:nth-child(8) {background: #fff; padding: 8px 8px 0px;}
#main-menu ul li:nth-child(8) a {color: #000;}} 
.col-sm-3 {padding-left: 0px!important; padding-right: 0px!important;} 
.section--bottom .container {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
} 
.card__label {
  position: absolute;
  left: 0;
  right: 0;
  padding: 12px 16px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  top: 50%;
  bottom: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;;
  text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 20px;

} 
.card:hover .card__label {
  transform: scale(1.05);
  color: #dba925;
  
}

.card__cover:hover {
    -webkit-filter: brightness(50%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    
  
}

.member-login {
    position:relative;
	display:inline-block;
	padding: 9px 13px 9px 13px;
	background-color:transparent;
	color:#1e2d5e;
	font-family: "Open Sans" sans serif;
	border: 1px solid #1e2d5e;	
	-webkit-transition: all .3s ease 0s;	
	-o-transition: all .3s ease 0s;	
	transition: all .3s ease 0s;
}       

.member-login:hover {
   background-color: #1e2d5e;
   color: #ffffff;
}  
 
.club-header-container {
    text-align: center;
    padding: 30px 0;
    overflow: hidden; /* Prevents scrollbars during animation */
}

.club-heading {
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    color: #28529C;
    margin-bottom: 15px;
}

.club-divider {
    width: 60px;
    height: 3px;
    background-color: #DBA925;
    margin: 0 auto;
}

/* --- THE MOVEMENT --- */

.animated-header {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px); /* Start lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0);    /* End at original spot */
    }
}  

.parallax-wrapper {
  background-image: url('https://pcyc.net/images/design/testimonials.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  width: 80%;
  max-width: 600px;
  height: 200px; /* Adjust based on text length */
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: #1e2d5e;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-align: center;
  
  /* Animation properties */
  opacity: 0;
  animation: cycleTestimonials 15s infinite;
}

/* Delay each card so they follow each other */
.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 5s; }
.testimonial-card:nth-child(3) { animation-delay: 10s; }

@keyframes cycleTestimonials {
  0% { opacity: 0; transform: translateY(20px); }
  5% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(0); }
  35% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; }
}

.testimonial-card p { font-size: 1.7rem; font-style: italic; margin-bottom: 15px; }
.testimonial-card h4 { color: #DBA925; letter-spacing: 1px; }  

@media (max-width: 768px) {
  .members-button {
    display: none;
  }
} 

/* Initial state: hidden and moved down slightly */
.card-wrap .col-sm-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* The class we will add via JavaScript */
.card-wrap .col-sm-3.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering the entrance */
.col-sm-3:nth-child(1) { transition-delay: 0.1s; }
.col-sm-3:nth-child(2) { transition-delay: 0.2s; }
.col-sm-3:nth-child(3) { transition-delay: 0.3s; }
.col-sm-3:nth-child(4) { transition-delay: 0.4s; }   

.welcome {font-size: 28px; font-family:"Open Sans", sans-serif; font-weight: 400;}         