/* ==========================================================================
   Parallax Starter - Free HTML CSS Template
   
TemplateMo 612 Parallax Starter

https://templatemo.com/tm-612-parallax-starter

   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --nav-bg: rgba(0, 0, 0, 0.25);
    --nav-bg-scrolled: rgba(0, 0, 0, 0.85);
    --transition-smooth: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    background: #111111;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Navigation --- */

#templatemo-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: background 0.3s ease;
}

#templatemo-nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 70px;
}


/* LOGO */

.nav-logo {
    position: absolute;

    left: -15px;
    top: -25px;

    display: block;

    z-index: 10;
}

.nav-logo img {
    height: 120px;
    width: auto;

    display: block;
}


/* MENU */

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 35px;

    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-heading);

    font-size: 13px;
    font-weight: 400;

    letter-spacing: 2.5px;

    color: var(--white-70);

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}


/* MOBILE MENU BUTTON */

.nav-toggle {
    display: none;

    background: none;
    border: none;

    cursor: pointer;

    padding: 8px;

    flex-direction: column;
    gap: 5px;

    z-index: 1100;
}

.nav-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--white);

    transition: all 0.3s ease;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-smooth);
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Parallax Background Image Layer
   Height is 200% and starts at top: -50% to give
   maximum room for large vertical translations */
.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

/* Dark Overlay */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.parallax-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.55);
}

.parallax-overlay.overlay-medium {
    background: rgba(0, 0, 0, 0.50);
}

/* Content Layer */
.section-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    width: 100%;
    padding: 100px 30px;
    text-align: center;
}

/* --- Typography --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title {
    font-weight: 400;
    letter-spacing: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.6vw, 16px);
    letter-spacing: 4px;
    color: var(--white-70);
    margin-bottom: 40px;
}

.caps {
    text-transform: uppercase;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

/* --- Hero Button --- */
.btn-scroll {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    border: 1px solid var(--white-40);
    padding: 14px 45px;
    transition: all var(--transition-smooth);
}

.btn-scroll:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- About Columns --- */
.unsplash-credit {
    font-size: 14px;
    color: var(--white-40);
    margin-top: 25px;
    letter-spacing: 1px;
}

.unsplash-credit a {
    color: var(--white-70);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-col {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-thumb {
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

.about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-top-left {
    float: left;
    margin: 0 20px 15px 0;
}

.about-thumb-wide {
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2 / 1;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-thumb-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-col p {
    font-size: 16px;
    color: var(--white-90);
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
}

.service-icon {
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: var(--white);
}

.service-item p {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--white-70);
    line-height: 1.8;
}

/* --- Stats Row --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid var(--white-20);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--white-70);
}

/* --- Contact Form --- */
.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--white-20);
    padding: 16px 20px;
    outline: none;
    transition: border-color var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--white-40);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white-70);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white-40);
    padding: 16px 45px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    align-self: flex-start;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* --- Footer --- */
#templatemo-footer {
    background: #111;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: var(--white-40);
    letter-spacing: 1px;
}

#templatemo-footer a {
    color: var(--white-70);
    transition: color var(--transition-smooth);
}

#templatemo-footer a:hover {
    color: var(--white);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
   /* Mobile Navigation */

.nav-toggle {
    display: flex;
}

.nav-links {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.95);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 30px;

    padding: 100px 30px 60px;

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.nav-links.open {
    opacity: 1;
    visibility: visible;
}

.nav-links a {
    font-size: 16px;
    letter-spacing: 4px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

    /* Disable parallax on mobile — static bg */
    .parallax-bg {
        top: 0;
        height: 100%;
    }

    .section-title {
        letter-spacing: 4px;
    }

    .hero-title {
        letter-spacing: 6px;
    }

    .section-subtitle {
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-cols {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .section-content {
        padding: 80px 20px;
    }

    .section-title {
        letter-spacing: 3px;
    }

    .content-block p {
        font-size: 15px;
    }

    .stat-number {
        font-size: 34px;
    }
}


/* HERO VIDEO */
#home {
    position: relative;
    overflow: hidden;
}

#home .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#home .parallax-overlay {
    background: transparent;
    z-index: 1;
}

#home .section-content {
    position: relative;
    z-index: 2;
}

/* ==============================
   REALIZATIONS GALLERY
   ============================== */

.realizations-gallery {
    width: 100%;
    max-width: 1250px;
    margin: 50px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;
}

/* --------------------------------
   BOCZNE ZDJĘCIA
   -------------------------------- */

.realization-side {
    width: 220px;
    height: 330px;

    overflow: hidden;
    flex-shrink: 0;

    opacity: 0.38;

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.realization-side img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.45s ease;
}

/* --------------------------------
   GŁÓWNE ZDJĘCIE
   -------------------------------- */

.realization-main {
    width: 600px;
    height: 400px;

    flex-shrink: 0;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.realization-main img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

/* --------------------------------
   STRZAŁKI
   -------------------------------- */

.gallery-arrow {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.35);

    color: rgba(255, 255, 255, 0.9);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;

    z-index: 5;

    padding: 0;
}

.gallery-arrow span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 34px;
    font-weight: 200;

    line-height: 1;

    margin-top: -3px;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.16);

    border-color: rgba(255, 255, 255, 0.9);

    color: #ffffff;

    transform: scale(1.08);
}

.gallery-prev:hover {
    transform: translateX(-2px) scale(1.08);
}

.gallery-next:hover {
    transform: translateX(2px) scale(1.08);
}

/* --------------------------------
   RESPONSIVE
   -------------------------------- */

@media (max-width: 1100px) {

    .realizations-gallery {
        gap: 15px;
    }

    .realization-side {
        width: 170px;
        height: 270px;
    }

    .realization-main {
        width: 500px;
        height: 350px;
    }

    .gallery-arrow {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 900px) {

    .realizations-gallery {
        gap: 12px;
    }

    .realization-side {
        display: none;
    }

    .realization-main {
        width: calc(100vw - 140px);
        max-width: 650px;
        height: 60vw;
        max-height: 450px;
    }

    .gallery-arrow {
        width: 45px;
        height: 45px;
    }

    .gallery-arrow span {
        font-size: 30px;
    }
}

@media (max-width: 480px) {

    .realizations-gallery {
        gap: 8px;
    }

    .realization-main {
        width: calc(100vw - 110px);
        height: 62vw;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow span {
        font-size: 27px;
    }
}

#about {
    position: relative;
    min-height: 56.25vh;
    overflow: hidden;
}

#about .parallax-bg {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: none !important;
    transition: none !important;
}

/* =========================================================
   KONTAKT
   ========================================================= */

#contact {
    position: relative;
    min-height: 75vh;
    overflow: hidden;
    background: #0a0a0a;
}

/* TŁO */
#contact .parallax-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* CIEMNE PRZYCIEMNIENIE */
#contact .parallax-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    background: rgba(0, 0, 0, 0.68);
}

/* ZAWARTOŚĆ */
#contact .contact-content {
    position: relative;
    z-index: 2;

    width: min(1100px, 90%);
    margin: 0 auto;

    padding: 80px 0 60px;

    color: #fff;
}

/* TYTUŁ */
#contact .section-title {
    margin: 0;
    text-align: center;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: 8px;
}

/* PODTYTUŁ */
#contact .section-subtitle {
    margin: 15px 0 55px;

    text-align: center;

    font-size: 14px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.7);
}

/* KOLUMNY */
#contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* POJEDYNCZA KOLUMNA */
#contact .contact-column {
    padding: 30px;

    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(4px);
}

/* NAGŁÓWKI KOLUMN */
#contact .contact-column h3 {
    margin: 0 0 25px;

    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;

    color: #d4af37;
}

/* LINKI */
#contact .contact-column a {
    display: block;

    margin-bottom: 14px;

    color: #fff;
    text-decoration: none;

    font-size: 16px;
    line-height: 1.6;

    transition: 0.25s ease;
}

#contact .contact-column a:hover {
    color: #d4af37;
}

/* TEKST DANYCH FIRMY */
#contact .contact-column p {
    margin: 0 0 22px;

    color: rgba(255,255,255,0.82);

    font-size: 15px;
    line-height: 1.8;
}

/* GREGDRUK */
#contact .gregdruk-credit {
    margin-top: 45px;

    padding-top: 30px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,0.15);
}

#contact .gregdruk-credit p {
    margin: 0 0 8px;

    font-size: 11px;
    letter-spacing: 4px;

    color: rgba(255,255,255,0.55);
}

#contact .gregdruk-credit a {
    color: #d4af37;

    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.25s ease;
}

#contact .gregdruk-credit a:hover {
    color: #fff;
}


/* =========================================================
   USUNIĘCIE STOPKI SZABLONU
   ========================================================= */

footer {
    display: none !important;
}


/* =========================================================
   TELEFONY
   ========================================================= */

@media (max-width: 800px) {

    #contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #contact .contact-content {
        padding: 60px 0 45px;
    }

    #contact .section-subtitle {
        margin-bottom: 35px;
        letter-spacing: 3px;
    }

    #contact .contact-column {
        padding: 25px;
    }
}

/* =====================================================
   KONTAKT — BOKSY
   ===================================================== */

#contact .contact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: start !important;
}

#contact .contact-column {
    box-sizing: border-box !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    padding: 30px 28px !important;
    margin: 0 !important;

    background: rgba(10, 10, 10, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

#contact .contact-column h3 {
    margin: 0 0 25px !important;
}

#contact .contact-column a {
    margin: 0 0 12px !important;
}

#contact .contact-column p {
    margin: 0 0 18px !important;
}

/* GREGDRUK — mocniejsze wyróżnienie */
#contact .gregdruk-credit {
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    text-align: center;
}

#contact .gregdruk-credit p {
    color: #ffffff !important;
    opacity: 0.85 !important;
    font-size: 15px !important;
    letter-spacing: 5px !important;
    margin-bottom: 12px !important;
}

#contact .gregdruk-credit a {
    color: #d4af37 !important;
    opacity: 1 !important;
    font-size: 23px !important;
    font-weight: 500 !important;
    letter-spacing: 4px !important;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

/* =========================================================
   TELEFON — MENU PO PRAWEJ STRONIE
   ========================================================= */

@media (max-width: 768px) {

    #templatemo-nav {
        height: 70px;
    }

    .nav-container {
        position: relative;
        width: 100%;
        height: 70px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .nav-logo {
        position: absolute;
        left: 14px;
        top: -8px;
        z-index: 1002;
    }

    .nav-logo img {
        height: 85px;
        width: auto;
    }

    .nav-toggle {
        position: absolute;
        right: 18px;
        top: 19px;
        z-index: 1003;

        display: flex;
        width: 42px;
        height: 38px;

        align-items: center;
        justify-content: center;

        padding: 7px;
        margin: 0;

        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 3px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: #ffffff;
    }

    /* =====================================================
       KONTAKT — TELEFON
       ===================================================== */

    #contact .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    #contact .contact-column {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        padding: 25px 20px !important;
        margin: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;

        box-sizing: border-box !important;
    }

    #contact .contact-column h3 {
        margin-bottom: 20px !important;
    }

    #contact .contact-column a {
        margin-bottom: 10px !important;
        word-break: break-word;
    }

    #contact .contact-column p {
        margin-bottom: 18px !important;
    }

    #contact .gregdruk-credit {
        width: 100% !important;
        margin-top: 30px !important;
        padding-top: 25px !important;
    }
}
/* =========================================================
   MOBILE — MENU + KONTAKT
   ========================================================= */

@media (max-width: 768px) {

    /* MENU */

    #templatemo-nav .nav-container {
        position: relative;
        width: 100%;
        height: 70px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    #templatemo-nav .nav-logo {
        position: absolute;
        left: 14px;
        top: -8px;
        z-index: 1002;
    }

    #templatemo-nav .nav-logo img {
        height: 85px;
        width: auto;
    }

    #templatemo-nav .nav-toggle {
        display: flex !important;
        position: absolute;
        right: 18px;
        top: 19px;
        z-index: 1003;

        width: 42px;
        height: 38px;

        align-items: center;
        justify-content: center;

        padding: 7px;
        margin: 0;

        background: rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 3px;
    }

    #templatemo-nav .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
    }


    /* KONTAKT — JEDNA KOLUMNA POD DRUGĄ */

    #contact .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    #contact .contact-column {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        padding: 25px 20px !important;
        margin: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;

        box-sizing: border-box !important;
    }

    #contact .contact-column h3 {
        margin-bottom: 20px !important;
    }

    #contact .contact-column a {
        margin-bottom: 10px !important;
        word-break: break-word;
    }

    #contact .contact-column p {
        margin-bottom: 18px !important;
    }

    #contact .gregdruk-credit {
        width: 100% !important;
        margin-top: 30px !important;
        padding-top: 25px !important;
    }
}
