/* Welcome Page - Minimalistyczny Design */

/* Background and container overrides */
html, body, .contentPane, .content {
  background-color: #f8f9fa !important;
}

.contentPane {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.content {
  padding: 0 !important;
  width: 100% !important;
}

/* Hero Section */
.welcome-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: #f8f9fa;
  margin-bottom: 3rem;
  width: 100%;
}

.welcome-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Logo */
.welcome-logo {
  margin-bottom: 2rem;
}

.welcome-logo-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Description */
.welcome-description {
  font-size: 1.8rem;
  color: #2d2d2dd0;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
}

.welcome-description a {
  color: #079ee0;
  text-decoration: none;
}

.welcome-description a:hover {
  text-decoration: underline;
}

/* Applications Section */
.welcome-applications-section {
  padding: 2rem;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f8f9fa;
}

.welcome-applications-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: solid #079ee0 5px;
}

.welcome-applications-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Slider
   -------------------------------------------------- */
.welcome-slider {
  margin-top: 2rem;
}

.slider-container {
  position: relative;
  min-height: 120px;
}

.slider-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-slide.active {
  display: block;
  opacity: 1;
}

.slide-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.slide-description {
  font-size: 1.1rem;
  color: #555;
}

.slider-dots {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.slider-dots .dot.active {
  background-color: #079ee0;
  transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-hero {
    padding: 2rem 1rem;
  }

  .welcome-logo-img {
    max-width: 400px;
  }

  .welcome-description {
    font-size: 1.8rem;
  }

  .welcome-applications-section {
    padding: 1.5rem;
  }

  .welcome-applications-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .welcome-logo-img {
    max-width: 300px;
  }

  .welcome-description {
    font-size: 1.5rem;
  }

  .welcome-applications-title {
    font-size: 1.75rem;
  }
}

