/* Nowy styl dla tytułów sekcji */

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #001C33;
  position: relative;
  padding: 15px 0;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  width: 100%;
  font-weight: 700;
}

/* Styl dla ikony w tytule sekcji */
.section-title i {
  margin-right: 15px;
  color: #0055A4;
  font-size: 2.2rem;
  vertical-align: middle;
}

/* Efektowna linia pod tytułem */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(0,85,164,0), 
    rgba(0,85,164,1), 
    rgba(0,28,51,1),
    rgba(0,85,164,1), 
    rgba(0,85,164,0)
  );
}

.tiles-section .section-title::after {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0), 
    rgba(255,255,255,1), 
    rgba(0,174,239,1),
    rgba(255,255,255,1), 
    rgba(255,255,255,0)
  );
}

/* Specyficzny styl dla tytułu w sekcji specjałów */
.greek-specialties .section-title {
  color: #001C33;
}

.greek-specialties .section-title::after {
  background: linear-gradient(90deg, 
    rgba(0,85,164,0), 
    rgba(0,85,164,1),
    rgba(0,28,51,1),
    rgba(0,85,164,1), 
    rgba(0,85,164,0)
  );
  width: 150px;
}

/* Styl dla sekcji Odwiedź nas */
.visit-us-section .section-title {
  margin-bottom: 50px;
}

/* Responsywność */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-title i {
    font-size: 1.8rem;
  }
  
  .section-title::after {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.1rem;
    letter-spacing: 2px;
  }
  
  .section-title i {
    font-size: 1.5rem;
    margin-right: 10px;
  }
  
  .section-title::after {
    width: 80px;
  }
}
