.navbar {
  color: white !important;
}

/* Logo w navbarze */
.navbar-logo {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-logo:hover {
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.938));
  transform: scale(0.85);
}
.nav-link {
  color: white !important;
  font-weight: 500 !important;
  font-size: 1.2em !important;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #a8c8ca !important; /* Jasnożółty kolor na hover */
}
#campDescription {
  max-width: 800px;
  margin: 0 auto;
}

#arrow1 {
  fill: white;
  color: white;
  height: 25px;
  width: 25px;
}
#sportsEventCarousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 90vw;
  /* max-height: 400px; */
  max-height: 700px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

#sportsEventCarousel .carousel-inner {
  width: 100%;
  max-height: 700px;
}

#sportsEventCarousel .carousel-item img {
  width: 100%;
  height: 700px;
  /* wczesniej bylo na 400px */
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.team-section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: auto auto;
  padding: 20px 10px;
}
.team-member {
  max-width: 250px;
  text-align: center;
}
/* Statystyki */
.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6c757d;
  font-weight: 500;
}
:root {
  --primary-blue: #007bff;
  --light-blue: #00c6ff;
  --summer-yellow: #ffd93d;
  --summer-orange: #ff6b35;
}

body {
  overflow-x: hidden;
}

/* Animowane tło dla headera */
.animated-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

/* Pływające elementy letnie */
.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.sun-icon {
  top: 10%;
  right: 10%;
  width: 80px;
  height: 80px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.wave-icon {
  bottom: 5%;
  left: 5%;
  width: 100px;
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

/* Zakrzywione strzałki */
.curved-arrow {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Stylizowane sekcje */
#campDescription {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.section-decorator {
  position: absolute;
  pointer-events: none;
}

/* Karty z hover efektem */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

/* Animowane ikony */
.feature-icon-small {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-small {
  transform: rotate(360deg);
}

/* Przyciski z efektami */
.btn-animated {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-animated:hover::before {
  left: 100%;
}

/* Carousel styling */
#sportsEventCarousel {
  max-width: 1000px;
  margin: 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#sportsEventCarousel .carousel-item img {
  height: 600px;
  object-fit: cover;
}

/* Parallax sekcje */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/* Letnie dekoracje */
.summer-decoration {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

/* Header mask z lepszym kontrastem */
#maskheader {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 3rem;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Emoji dekoracje */
.emoji-decoration {
  font-size: 3rem;
  position: absolute;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
