/* Custom Styles */

:root {
    --green-above-white-rgb: 76, 217, 100; /* #4cd964 */
    --footer-text-color: #000000 ;
}

/* Custom Green Color */
.text-custom-green {
    color: rgba(var(--green-above-white-rgb), .35) !important;
}

.text-green-500 {
    color: rgba(var(--green-above-white-rgb), .35) !important;
}

/* Footer Background */
footer {
    background-color: #343839 !important;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    background-image: radial-gradient(#3a3f40 1px, transparent 1px);
    background-size: 20px 20px;
}

footer .description-text {
    transition: color 0.3s ease;
}

footer .description-text:hover {
    color: white !important;
    cursor: default;
}

footer h3 {
    letter-spacing: 1px;
    font-weight: 600 !important;
    position: relative;
    margin-bottom: 24px !important;
    font-size: 13px;
    transition: .3s color !important;
    display: block !important;
    text-decoration: none !important;
}

footer h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 20px;
    height: 2px;
    background-color: rgba(var(--green-above-white-rgb), .5);
}

footer a {
    color: #000000  !important;
    transition: color 0.3s ease !important;
}

footer a:hover {
    color: white !important;
}

footer li {
    margin-bottom: 10px;
    color: white;
}

footer li a:hover {
    color: #393a3a !important;
}

footer a.footer-link {
    color:white  !important;
    font-weight: 600;
    transition: .3s color;
    display: block;
    text-decoration: none;
}

footer a.footer-link:hover {
    color: #393a3a !important;
}

/* Special styling for HAKKIMIZDA */
footer a[href="about.php"]:hover {
    color: white !important;
}

/* Slider Customization */
.mainSlider {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* Category Cards Hover Effect */
.category-card {
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Event Cards Hover Effect */
.event-card {
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* Custom animation for video section */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 30px, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate-fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

.video-container {
  position: relative;
}

.video-container:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(121, 82, 179, 0.1);
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Pulse animation for play button effect */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(121, 82, 179, 0.7);
  }
  
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(121, 82, 179, 0);
  }
  
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(121, 82, 179, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
} 