/* ================================================
   ŁAŻANY NA ŚWIECIE — Sekcje kontynentów
   ================================================ */

#lazany-na-swiecie .header h1 {
    text-transform: none;
}

/* ================================================
   SEKCJE KONTYNENTÓW
   ================================================ */

.continent-section {
    padding: 70px 0 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.continent-section:last-child {
    border-bottom: none;
}

.continent-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.continent-heading .ti-world,
.continent-heading .ti-map,
.continent-heading .ti-map-alt,
.continent-heading .ti-flag {
    font-size: 32px;
    color: #c9a227;
    flex-shrink: 0;
}

.continent-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: none;
    margin: 0;
}

/* ================================================
   KARUZELA KONTYNENTÓW
   ================================================ */

.continent-carousel {
    position: relative;
    padding: 0 52px;
}

.carousel-overflow {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    user-select: none;
}

.carousel-item {
    flex: 0 0 calc((100% - 48px) / 3);
    text-align: center;
    color: #333;
}

.carousel-item img {
    width: 100%;
    min-height: 480px;
    max-height: 480px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
    display: block;
    pointer-events: none;
}

.carousel-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
    text-transform: none;
}

.carousel-item p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.85);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.carousel-btn:hover { background: #c9a227; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 768px) {
    .carousel-item { flex: 0 0 calc((100% - 24px) / 2); }
    .continent-carousel { padding: 0 44px; }
    .continent-heading h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .carousel-item { flex: 0 0 100%; }
    .continent-carousel { padding: 0 52px; }
}
