html {
    scroll-padding-top: 80px;
}

:root {
    --main-font: 'Roboto', sans-serif;
    --title-font: 'Oswald', sans-serif;
    --text-color: #ffffff;
    --background-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    /* Zabráni horizontálnemu skrolovaniu */
}


/* === HLAVNÝ KONTAJNER A ROZLOŽENIE === */

.main-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-image: url('juj/Snímka obrazovky 2025-06-30 223910.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* NOVÉ PRAVIDLÁ PRE OBRÁZOK */
.contact-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Centrovanie loga horizontálne */
    align-items: center;     /* Centrovanie loga vertikálne */
    padding: 2rem; /* Pridaj nejaký priestor, aby logo nebolo hneď pri kraji */
}

.contact-logo-image {
    max-width: 100%;
    max-height: 500px; /* Obmedzenie maximálnej výšky, aby nebolo príliš veľké */
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85; /* Voliteľné: Trochu znížime priehľadnosť, ak je to príliš ostré */
}


@media (max-width: 900px) {
    /* Pravidlo, ktoré skryje kontajner s logom na menších obrazovkách */
    .contact-image-container {
        display: none; /* Skryje logo na mobilných zariadeniach */
    }
}

/* === HLAVIČKA === */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.subpage-header {
    background-color: var(--background-color);
}


/* === VLASTNÁ IKONA MENU === */

.menu-toggle {
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.custom-menu-icon {
    position: relative;
    width: 30px;
    height: 14px;
}

.custom-menu-icon::before,
.custom-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-menu-icon::before {
    top: 0;
    width: 100%;
}

.custom-menu-icon::after {
    bottom: 0;
    width: 60%;
}

.brand-logo-top {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    transition: height 0.3s ease;
}

.tickets-btn {
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.tickets-btn:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* === KONTAKTNÝ DROPDOWN V HLAVIČKE === */

/* Wrapper pre umiestnenie */
.contact-wrapper {
    position: relative; /* Dôležité pre umiestnenie drop-downu */
}

/* Štýl pre samotné drop-down okno */
.contact-dropdown {
    position: absolute;
    top: 100%; /* Umiestni hneď pod tlačidlo */
    right: 0;
    min-width: 220px;
    padding: 1rem 1.5rem;
    margin-top: 40px; /* Malá medzera pod tlačidlom */
    background-color: #1a1a1a; /* Tmavé pozadie pre kontrast */
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    
    /* Prechod pre animáciu */
    opacity: 0; 
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Zobrazenie pop-upu po aktivácii triedy 'active' cez JS */
.contact-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-dropdown .contact-name {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color); /* Biela farba */
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

.contact-dropdown .contact-phone {
    display: block;
    text-decoration: none;
    color: var(--text-color); 
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-dropdown .contact-phone:hover {
    color: #999; /* Jemné stmavnutie pri hoveri */
}


/* === HLAVNÝ OBSAH (TEXT) === */
/* === HLAVNÝ OBSAH (TEXT) - ÚPRAVA ZAČÍNA TU === */

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 2rem;
}

.main-title {
    text-align: center; /* Zmenené z 'right' na 'center' */
    position: absolute;
    top: 50%; /* Pridané pre vertikálne centrovanie */
    left: 50%; /* Pridané pre horizontálne centrovanie */
    transform: translate(-50%, -50%); /* Posunie element tak, aby bol presne v strede */
    width: 100%; /* Zabezpečí, že div zaberá celú šírku, aby text-align fungoval */
    padding: 0 2rem; /* Pridaný padding pre menšie obrazovky, ak už nie je */
    max-width: 1200px; /* Voliteľné: Omedzuje šírku textového bloku, aby nebol príliš široký na veľkých obrazovkách */
    z-index: 2;
}

/* Pre mobilné zobrazenie (už si to tam mal, ale potvrdzujem, že je to OK) */
@media (max-width: 768px) {
    .main-title {
        width: 90%; /* Zmenené z 90% pre mobily, aby sa centrovalo správne */
        text-align: center;
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

/* NOVÉ ŠTÝLY PRE HLAVNÝ TEXT */
.main-title .intro-title-text{
    font-family: var(--title-font);
    /* Zväčšené, aby to zabralo viac miesta a zlomilo sa podľa obrázka */
    font-size: clamp(2.0rem, 6vw, 4rem); 
    text-transform: uppercase;
    margin-bottom: 2rem; /* Väčšia medzera medzi hlavným a malým textom */
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 400;
}


/* NOVÉ ŠTÝLY PRE MALÝ TEXT */
.main-title .intro-body-text {
    font-size: 1rem;
    max-width: 950px;
    line-height: 1.1;
    /* Dôležité: Ak je text centrovaný, nepotrebuješ max-width v text-container,
       ale potrebujeme, aby boli riadky textu centrované, čo už text-align: center zabezpečuje. */
    /* max-width: 500px; *//* Odstránené, pretože celý .main-title už má max-width */
    margin: 0 auto 2rem auto; /* Automatické okraje pre centrovanie (ak by sme použili max-width) */
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

footer {
    width: 100%;
    z-index: 10;
    padding: 2rem;
}

.trailers-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trailers-section span {
    font-weight: 700;
    white-space: nowrap;
}

.trailer-thumbnails {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.thumbnail {
    width: 200px;
    height: 112px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--text-color);
}


/* === BOČNÉ PRVKY (SOCIÁLNE SIETE) === */

.side-elements {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}


/* === OVERLAY MENU === */

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    background-color: rgba(0, 0, 0, 0.9);
}

.overlay-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding: 8rem 3rem;
}

.menu-nav a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    text-decoration: none;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.overlay-menu.active .menu-nav a {
    opacity: 1;
    transform: translateY(0);
}

.menu-nav a img {
    width: 120px;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-nav a:hover img {
    transform: translateX(-15px);
}

.menu-nav a::after {
    content: attr(data-text);
    position: absolute;
    left: 140px;
    top: 50%;
    transform: translate(-15px, -50%);
    font-family: var(--main-font);
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-nav a:hover::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.overlay-menu.active .menu-nav a:nth-child(1) {
    transition-delay: 0.1s;
}

.overlay-menu.active .menu-nav a:nth-child(2) {
    transition-delay: 0.2s;
}

.overlay-menu.active .menu-nav a:nth-child(3) {
    transition-delay: 0.3s;
}

.overlay-menu.active .menu-nav a:nth-child(4) {
    transition-delay: 0.4s;
}

.overlay-menu.active .menu-nav a:nth-child(5) {
    transition-delay: 0.5s;
}


/* Animácia ikonky na krížik */

body.menu-open .custom-menu-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

body.menu-open .custom-menu-icon::after {
    bottom: 50%;
    width: 100%;
    transform: translateY(50%) rotate(-45deg);
}


/* === VIDEO MODAL === */

.video-modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 900px;
}

#modal-video-player {
    width: 100%;
    height: auto;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
    opacity: 0.8;
}

.close-modal:hover {
    opacity: 1;
}

.close-modal::before,
.close-modal::after {
    content: ' ';
    position: absolute;
    left: 12px;
    height: 25px;
    width: 2px;
    background-color: #fff;
}

.close-modal::before {
    transform: rotate(45deg);
}

.close-modal::after {
    transform: rotate(-45deg);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 2rem;
    color: white;
}


/* === SEKCIA TÍMU === */

.team-section {
    position: relative;
    height: 200vh;
    background-color: var(--background-color);
}

.team-sticky-content {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.team-layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: var(--background-color);
}

.team-text-container,
.team-image-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    text-align: center;
}

.team-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
}

/* ... v sekcii === SEKCIA TÍMU === ... */

.team-text-container h2 {
    font-family: var(--title-font);
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 0; /* Zrušíme margin na h2, ten sa presunie na team-name-mask */
    line-height: 1.1;
}

/* Nová maska pre meno v sekcii tímu - nastavuje potrebný spodný okraj */
.team-name-mask {
    margin-bottom: 1.5rem;
    overflow: hidden; /* Dôležitá časť masky */
}

/* Nastaví počiatočnú pozíciu pre animáciu, aby bola skrytá */
.team-name-reveal {
    transform: translateY(100%);
}

.team-text-container p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}
/* ... */

.team-btn {
    text-decoration: none;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 0.8rem 2rem;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
}

.team-btn:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}


/* === KONTAKTNÁ SEKCIA === */

.contact-section {
    padding: 3rem 7rem;
    background-color: var(--background-color);
    margin-top: 70px;
}

.contact-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.contact-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.contact-form-container h2 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.contact-form-container p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--main-font);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 1rem;
    font-family: var(--title-font);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.form-submit-btn:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* Pridaj tento blok na koniec tvojho súboru style.css */

/* Štýl pre GDPR checkbox a label */
.contact-form .gdpr-consent {
    margin-top: 2rem;
    margin-bottom: 0; /* Odstránime spodný margin */
    display: flex;
    align-items: flex-start;
}

.contact-form .gdpr-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    /* Zmena farby checkboxu - voliteľné, závisí od prehliadača */
    accent-color: var(--text-color); 
}

.contact-form .gdpr-consent label {
    display: inline;
    font-weight: 400; /* Znížime font-weight pre bežný text */
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
}

.contact-form .gdpr-consent a {
    color: var(--text-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-form .gdpr-consent a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Oprava nadpisu - zrušenie white-space: nowrap pre mobilné zobrazenie, aby sa zalomil */
.contact-form-container h2 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    white-space: normal; /* ZMENENÉ z nowrap na normal - umožní zlomenie na menších obrazovkách */
}

/* === ŠTÝLY PRE HEAT CHECK PODSTRÁNKU === */


/* ... (štýly pre heatcheck zostávajú bez zmeny) ... */


/* === RESPONZIVITA === */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-section {
        padding: 1rem 1.5rem;
    }
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* === ÚPRAVA: Hlavička s presahujúcim logom a tmavším gradientom === */
    header {
        /* Zväčšený padding, aby dal priestor väčšiemu logu */
        padding: 2.5rem 1rem;
        justify-content: space-between;
        /* Kľúčová zmena: Tmavší gradient */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
        border-bottom: none;
    }
    .brand-logo-top {
        /* Kľúčová zmena: Výrazne väčšie logo, ktoré bude presahovať */
        height: 70px;
    }
    /* ==================================================================== */
    .tickets-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    .side-elements {
        display: none;
    }
    .main-title {
        width: 100%;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        transform: translate(-50%, -50%);
    }
    .quote {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    footer {
        display: flex;
        justify-content: center;
        padding: 1.5rem 1rem;
    }
    .contact-video-container {
        display: none; /* KĽÚČOVÁ ZMENA: Skryje video kontajner na mobiloch */
    }
    .trailers-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    .trailer-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .thumbnail {
        width: 130px;
        height: 73px;
    }
    .team-section {
        height: 200vh; /* Ponecháme výšku pre animáciu */
    }

    /* .team-layout musí zostať "absolute", ale zmeníme grid */
    .team-layout {
        grid-template-columns: 1fr; /* TOTO JE SPRÁVNE - chceme text a obrázok pod sebou */
        /* Odstránili sme "position: static;" aj "height: auto;" */
        /* Tým pádom zdedí "position: absolute" a "height: 100%" z desktopu */
    }
    .team-layout[data-member="1"] .team-image-container {
        order: -1;
    }

    .team-layout[data-member="2"] .team-image-container {
        order: -1;
    }

    /* Padding môžeme ponechať, ten je v poriadku */
    .team-text-container,
    .team-image-container {
        padding: 0rem 1.5rem;
    }
    .menu-nav {
        padding: 7rem 1.5rem 2rem 1.5rem;
        align-items: center;
    }
    .menu-nav a {
        text-align: center;
    }
    .menu-nav a:hover img {
        transform: none;
    }
    .menu-nav a::after {
        display: none;
    }

/* Pridaj tieto štýly na koniec sekcie HLAVNÝ OBSAH (TEXT) v style.css */

/* Maska, ktorá skryje text (Dôležité: overflow: hidden) */
.text-mask-wrapper {
    overflow: hidden; /* Toto vytvorí efekt masky */
    /* Zabezpečí medzeru medzi H1 a P, ak pádíng bol na pôvodnom elemente */
    margin-bottom: 2rem; 
}

/* Uprav existujúce pravidlá, aby sa odstránili pôvodné marginy z h1 a p, 
   a aby sa nastavila počiatočná pozícia (tieto štýly zdedí aj text vo vnútri .reveal-text) */

/* NOVÉ ŠTÝLY PRE HLAVNÝ TEXT */
.main-title .intro-title-text {
    /* Pôvodné štýly ponechať */
    font-family: var(--title-font);
    font-size: clamp(2.0rem, 6vw, 4rem); 
    text-transform: uppercase;
    /* Odstránime pôvodný margin-bottom z H1, ten bude na maske (.text-mask-wrapper) */
    margin-bottom: 0; 
    line-height: 1.3 !important;
    color: var(--text-color);
    font-weight: 700;
}

/* NOVÉ ŠTÝLY PRE MALÝ TEXT */
.main-title .intro-body-text {
    /* Pôvodné štýly ponechať */
    font-size: 1rem;
    max-width: 950px;
    line-height: 1.6;
    /* Odstránime pôvodný margin, ak bol */
    margin: 0 auto; 
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Pridaj tento špeciálny štýl, aby sa text nemohol zalomiť pri animácii,
   čo zabezpečí, že posun bude hladký, a taktiež posúva celé riadky. */
.reveal-text {
    /* Počiatočná pozícia pre animáciu */
    transform: translateY(100%); 
}

/* Oprava: Pre malý text musíme zrušiť margin-bottom na .text-mask-wrapper,
   ktorý ho posúval. Preto pridáme špecifické pravidlo pre posledný .text-mask-wrapper: */
.main-title .text-mask-wrapper:last-child {
    margin-bottom: 0;
}
    /* ... (ostatné pravidlá) ... */

    /* 1. Odstráňte medzeru pod obrázkom a nad textovým kontajnerom */
    .team-text-container,
    .team-image-container {
        padding: 0rem 1.5rem;
    }
    
    /* Zabezpečí, že obrázok nepridá extra priestor (ak sa správa ako inline) */
    .team-image-container img {
        display: block;
    }
    
    /* 2. Znížte/Odstráňte horný margin na nadpise Matúš Potočár. */
    /* Nadpis H2 je vo vnútri .team-name-mask */
    .team-text-container .team-name-mask {
        margin-bottom: 1.5rem; /* Toto je spodný margin (je OK), ale skúsme odstrániť horný na H2 */
        /* Pre istotu znižte aj spodný margin textu pod H2 */
    }
    
    /* H2 (meno) má veľký margin. Nastavte ho na nulu. */
    .team-text-container h2 {
        margin-top: 0;
        margin-bottom: 0.5rem; /* Zmenšíme medzeru medzi menom a popisom */
    }
    
    /* Odstráňte margin z textového popisu (P element) */
    .team-text-container p {
        margin-top: 0;
        margin-bottom: 1rem; /* Ak tam bol nejaký spodný margin */
    }
}
/* === KONIEC ÚPRAV HLAVNÉHO OBSAHU (TEXT) === */

