.hero-country {
    background-image: url("../img/czechy/czechy-map.jpg");
    background-size: cover;
    background-position: center;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

/* ============================
   NOTATNIK – DWIE STRONY
============================ */
.country-note {
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 1140px;
    height: 700px;
    padding: 60px 70px;

    background: url("../img/layout/notebook-texture.png");
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    z-index: 50;
    display: flex;
    gap: 50px;
}

.note-left,
.note-right {
    width: 50%;
    overflow: visible; /* lub usuń całkowicie */
    position: relative; /* potrzebne dla przycisku */
}

.note-left {
    min-height: 650px;
    margin-left: -60px;
}
.czechy1 .note-left {
    padding-top: 18px; /*podwyższa lub obniża lewą stronę notatnika*/
}

.note-right {
    padding-top: 14px;
    margin-left: 50px; /* NOWE — odsunięcie w prawo */
}

.country-note h2 {
    font-size: 26px;
    text-align: center;
    margin-top: 14px;
}

.country-note p {
    font-size: 16px;
    line-height: 1.92;
    white-space: pre-line;
  text-align: justify;
}

.country-note a {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-weight: 700;
    text-decoration: none;
    color: #333;
}

/* ============================
   KARTECZKI – DWIE KOLUMNY
============================ */
.notes-left,
.notes-right {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    display: grid;
    gap: 60px;
    z-index: 40;
}

.notes-left {
    left: 3%;
}

.notes-right {
    right: 3%;
}

/* ============================
   POJEDYNCZA KARTECZKA
============================ */
.note {
    position: relative;
    transition: transform 0.25s ease;
}

.note-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.note-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 8px;
}

.note-subtitle {
    position: absolute;
    right: 8px;
    bottom: 6px;

    font-size: 12px !important;
    font-style: italic;
    color: #d40000 !important;
    opacity: 0.85;

    text-align: right;
    pointer-events: none;
}

/* Pochylenie bazowe */
.tilt-left {
    transform: rotate(-3deg);
}

.tilt-right {
    transform: rotate(3deg);
}

/* ============================
   HOVER – POPRAWIONY
============================ */
.note:hover {
    transform: scale(1.04);
    z-index: 999;
}

.tilt-left:hover {
    transform: rotate(-6deg) scale(1.04);
}

.tilt-right:hover {
    transform: rotate(6deg) scale(1.04);
}
.turn-page {
    position: absolute;
    bottom: 25px;
    padding: 0;                 /* brak pudełka */
    background: none;           /* brak tła */
    border: none;               /* brak ramki */
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transform: none;            /* brak przechylenia */
    transition: opacity 0.2s ease;
    box-shadow: none;           /* brak cienia */
}

.turn-page:hover {
    opacity: 0.6;               /* delikatny efekt hover */
}
.turn-page.next {
    right: -20px;
 bottom: -32px;    /* NOWE — ustawia go na dole */
}
.turn-page.prev {
    left: 40px;     /* Twoje przesunięcie w lewo */
    bottom: 40px;    /* NOWE — ustawia go na dole */
    position: absolute;
}
.hero-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.hero-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-icon img {
    width: 195px;
    height: 150px;
    object-fit: contain;
    transform: rotate(-2deg);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}

.hero-icon span {
    margin-top: -10px;
    font-size: 20px;
    font-weight: 700;
 color: #fff;
}
.top-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* KLUCZOWE */
    max-width: 1800px;
    }

