/* ==========================================================================
   STYLE DEDYKOWANE DLA /kurs-osmoklasisty.php
   ========================================================================== */

/* === SEKCJA HERO === */
.hero-osmoklasisty-section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    color: #ffffff;
    background-size: cover;
    background-position: center 30%;
    background-image: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.6)), url('/img/kurs.jpeg');
}

.hero-osmoklasisty-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-osmoklasisty-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-osmoklasisty-content .hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1rem auto;
    color: #cccccc;
}

/* === KONTENER NA TREŚĆ === */
.page-content-wrapper {
    background-color: #ffffff;
    padding-top: 60px;
}

/* === SEKCJE WEWNĄTRZ === */
.info-section, .video-section, .schedule-section, .pricing-plan {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.info-list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 15px;
}

.info-list li {
    background-color: #f9f9f9;
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    position: relative;
    font-size: 1.05rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFA550;
    font-weight: bold;
    font-size: 1.2rem;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background-color: #e0e0e0;
    margin: 40px auto 0;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #888;
    overflow: hidden;
}

/* === TABELA Z TERMINARZEM === */
.schedule-table-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.schedule-table th, .schedule-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.schedule-table thead th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background-color: #FFF5E6;
}

.schedule-table td:first-child {
    font-weight: bold;
    color: #FFA550;
    text-align: center;
    width: 60px;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-osmoklasisty-content h1 {
        font-size: 2.2rem;
    }
    .hero-osmoklasisty-content .hero-subtitle {
        font-size: 1.1rem;
    }
}


@media (max-width: 768px) {
  .video-placeholder {
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: transparent; /* Ta linia usuwa tło */
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;  /* 16px marginesu po lewej */
    padding-right: 1rem; /* 16px marginesu po prawej */
  }
}