@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #06272e;
    --bg2: #082d34;
    --card: rgba(9, 45, 53, .82);
    --border: rgba(95, 230, 245, .14);
    --text: #f3f7f5;
    --muted: #9fb8bd;
    --cyan: #43efff;
    --cyan2: #67f4df;
    --yellow: #ffd51f;
    --green: #c9e86f;
}

@font-face {
    font-family: 'Empire'; /*a name to be used later*/
    src: url('/public_html/fonts/AbsoluteEmpire.ttf'); /*URL to font*/
}   

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        linear-gradient(rgba(67, 239, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 239, 255, .035) 1px, transparent 1px),
        radial-gradient(circle at 70% 25%, rgba(67, 239, 255, .08), transparent 28%),
        var(--bg);
    background-size: 96px 96px, 96px 96px, auto, auto;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

#page-container {
    min-height: 100vh;
}

/* HEADER */

header.main {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    height: 64px;
    padding: 0 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 32, 38, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(95, 230, 245, .11);
}

#logo img {
    height: 24px;
    width: auto;
    display: block;
}

header nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

header nav a {
    color: var(--muted);
    font-size: 14px;
    transition: .2s;
}

header nav a:hover {
    color: var(--cyan);
}

header.main > a:last-child {
    color: var(--cyan);
    font-size: 14px;
    padding: 11px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: .2s;
}

header.main > a:last-child:hover {
    background: rgba(67, 239, 255, .08);
}

/* HERO */

.hero {
    min-height: 100vh;
    padding: 190px 14% 120px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    /* content: "W"; */
    content: "WolfRor";
    font-family: "empire";
    position: absolute;
    right: 14%;
    top: 35%;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 56px; /* 72px */
    color: transparent;
    background: linear-gradient(135deg, var(--cyan2), var(--green), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
    border: 1px solid rgba(95, 230, 245, .12);
    box-shadow:
        0 0 42px rgba(67, 239, 255, .25),
        inset 0 0 0 42px rgba(4, 32, 38, .45),
        inset 0 0 0 84px rgba(95, 230, 245, .055);
}

.hero > form {
    display: none;
}

.hero-left {
    max-width: 650px;
    position: relative;
    z-index: 2;
    width: 40vw;
}

.bauble-short {
    display: inline-flex;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

h1 {
    margin: 34px 0 28px;
    font-size: clamp(58px, 6vw, 96px);
    line-height: .95;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.grad_2,
.secondFont,
.content-section h2 {
    color: transparent;
    background: linear-gradient(110deg, var(--cyan2), var(--green), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
}

.hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.buttons-first {
    margin-top: 42px;
    display: flex;
    gap: 16px;
}

.btn,
#sendBtn,
.consent-mode button {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 16px 28px;
    background: transparent;
    color: var(--yellow);
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.btn:first-child,
#sendBtn {
    background: var(--cyan);
    color: #06272e;
    border-color: transparent;
}

.btn:hover,
#sendBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(67, 239, 255, .18);
}

/* SEKCJE */

.content-wrap {
    padding: 0 6% 110px;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto 110px;
    width: 80vw;
border: 2px solid var(--border);
padding: 20px;
border-radius: 30px;
background-color: var(--bg2);
}

#aboutMeMore {
    display: none;
}

.content-section h2 {
    margin: 0 0 70px;
    font-size: clamp(48px, 5vw, 76px);
    /* line-height: 1; */
    font-weight: 900;
    letter-spacing: -0.05em;
}

#aboutMyWork h2::before {
    /* content: "// OBSZARY DZIAŁANIA"; */
    display: block;
    margin-bottom: 24px;
    color: var(--cyan);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .14em;
}

#aboutMyWorkContent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

#aboutMyWorkContent > div {
    min-height: 235px;
    padding: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .25s;
}

#aboutMyWorkContent > div:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 239, 255, .35);
}

#aboutMyWorkContent img {
    width: 58px;
    height: 58px;
    padding: 15px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid var(--border);
    filter: brightness(0) saturate(100%) invert(82%) sepia(97%) saturate(946%) hue-rotate(142deg);
}

#aboutMyWorkContent h3 {
    color: var(--text) !important;
    font-size: 26px;
    margin: 28px 0 14px;
}

#aboutMyWorkContent p {
    color: var(--muted);
    line-height: 1.65;
}

#aboutMyWorkContent a {
    color: var(--cyan);
}

/* PROJEKTY */

.productPresentation {
    display: grid;
    gap: 18px;
}

.smallProduct,
.bigProduct {
    position: relative;
    min-height: 170px;
    padding: 42px 110px 42px 360px;
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: .25s;
}

.smallProduct:hover,
.bigProduct:hover {
    transform: translateX(5px);
    border-color: rgba(67, 239, 255, .35);
}

.smallProduct::after,
.bigProduct::after {
    content: "↗";
    position: absolute;
    right: 40px;
    top: 50%;
    translate: 0 -50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--cyan);
    font-size: 28px;
}

.smallProduct::before,
.bigProduct::before {
    position: absolute;
    right: 80px;
    top: 28px;
    color: rgba(255,255,255,.035);
    font-size: 72px;
    font-weight: 900;
}

.smallProduct:nth-child(1)::before { content: "01"; }
.bigProduct:nth-child(2)::before { content: "02"; }
.smallProduct:nth-child(3)::before { content: "03"; }

.productPresentation img {
    position: absolute;
    left: 42px;
    /* max-width: 160px;
    max-height: 80px; */
    max-width: 200px;
    /* max-height: 80px; */
    object-fit: contain;
    opacity: .9;
}

.productPresentation p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.productPresentation .biggerFont {
    color: var(--text);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.productPresentation a {
    color: var(--cyan);
    font-weight: 700;
}

/* FORMULARZ */

.contentForm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 46px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.content-section:has(.contentForm) {
    text-align: center;
}

.contentForm {
    text-align: left;
}

.contentForm label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.formField {
    width: 100%;
    min-height: 54px;
    margin-bottom: 26px;
    padding: 14px 18px;
    color: var(--text);
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
}

textarea.formField {
    min-height: 150px;
    resize: vertical;
}

.formField:focus {
    border-color: rgba(67, 239, 255, .55);
    box-shadow: 0 0 0 4px rgba(67, 239, 255, .08);
}

#checkboxAgreeDiv {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

#checkboxAgreeDiv label {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* FOOTER */

/* footer {
    padding: 42px 6%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
}

.social-widget h3 {
    margin: 0 0 16px;
    color: var(--text);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    color: var(--muted);
    font-size: 14px;
}

.social-btn:hover {
    color: var(--cyan);
} */

/* =========================
   FOOTER (NOWY STYLE)
========================= */

footer {
    /* margin-top: 120px; */
    padding: 60px 20px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;

    background:
        linear-gradient(rgba(67, 239, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 239, 255, .03) 1px, transparent 1px),
        rgba(4, 32, 38, .85);

    background-size: 96px 96px;
    border-top: 1px solid var(--border);

    color: var(--muted);
    font-size: 15px;
}

footer p {
    margin: 0;
    opacity: .7;
}

/* =========================
   SOCIAL
========================= */

.social-widget h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: .03em;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* PRZEROBIONY BUTTON */

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;

    font-size: 14px;
    font-weight: 500;

    color: var(--text);

    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 999px;

    transition: .25s;
}

/* HOVER - styl jak przycisków z hero */

.social-btn:hover {
    transform: translateY(-2px);

    color: #06272e;

    background: linear-gradient(135deg, var(--cyan), var(--cyan2));
    border-color: transparent;

    box-shadow:
        0 10px 30px rgba(67, 239, 255, .25),
        0 0 12px rgba(67, 239, 255, .35);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
    footer {
        padding: 50px 20px 30px;
    }

    .social-links {
        gap: 10px;
    }

    .social-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* MOBILE */

.mobile-block {
    display: none;
}

@media (max-width: 1000px) {
    .hero-left {
        width: 100%;
    }
    header.main {
        padding: 0 24px;
    }

    header nav {
        display: none;
    }

    .mobile-block {
        display: block;
    }

    .hero {
        padding: 130px 24px 90px;
    }

    .hero::after {
        display: none;
    }

    h1 {
        font-size: 58px;
    }

    #aboutMyWorkContent {
        grid-template-columns: 1fr;
    }

    .smallProduct,
    .bigProduct {
        padding: 34px;
        min-height: auto;
    }

    .productPresentation img {
        display: none;
    }

    .smallProduct::after,
    .bigProduct::after {
        right: 24px;
        top: 34px;
        translate: 0;
    }

    .contentForm {
        padding: 28px;
    }

    /* footer {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    } */
}

#topReturn
{
    display: block;
    position: fixed;
    bottom: 20px;
    transform: rotate(-90deg);
    width: 35px;
    height: 35px;
    text-align: center;
    right: 20px;
    border: 3px solid gray;
    background-color: #444444;
    color: white;
    border-radius: 11px;
    font-size: 20px;
}
.consent-mode
{
    display: grid;
    justify-content: center;
    align-content: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
}
.consent-mode-btn-change
{
    position: fixed;
    bottom: 20px;
    left: 2%;
    width: fit-content;
    background-color: #11111183;
    padding: 0px 12px 0;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    max-height: 100px;
    max-width: 400px;
    transition: max-height 0.5s ease-out, max-width 0s ease-out;
    display: flex;
    flex-direction: row;
}

.consent-mode-btn-change.collapsed
{
  max-height: 40px;
  max-width: 55px;
  transition: max-height 0.5s ease-out, max-width 0.5s ease-out;
  transition: 1.5s ease-out;
  overflow: hidden;
  padding-top: 16px 0 0;
  left: 0;
    border-radius: 0 20px 20px 0;
}

.consent-mode-btn-change.collapsed > .baton
{
    margin: 0;
    padding: 0;
}
.consent-mode-btn-change.collapsed > .hideWindowBtn
{
    padding: 10px;
    transition: max-height 1.5s ease-out, max-width 1.5s ease-out;
    transition: 3s ease-out;
}
.hideWindowBtn
{
    margin-right: 10px;
    padding: 16px 0;
}


/* =========================
   PODSTRONY / PRODUCTS
========================= */

#otherMain {
    position: relative;
    min-height: 360px;
    height: auto;
    padding: 0 9%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 64px 1fr;
    align-items: center;
    background:
        linear-gradient(rgba(67, 239, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 239, 255, .03) 1px, transparent 1px),
        radial-gradient(circle at 50% 35%, rgba(67, 239, 255, .08), transparent 34%),
        rgba(4, 32, 38, .82);
    background-size: 96px 96px, 96px 96px, auto, auto;
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
}

#otherMain #logo {
    grid-column: 1;
    grid-row: 1;
}

#otherMain #menu {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 34px;
}

#otherMain #menu a {
    color: var(--muted);
    font-size: 14px;
    transition: .2s;
}

#otherMain #menu a:hover {
    color: var(--cyan);
}

#otherMain > form {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.searchInput {
    width: 210px;
    height: 40px;
    padding: 0 18px;
    color: var(--text);
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    border-radius: 999px;
    outline: none;
}

.searchInput::placeholder {
    color: var(--muted);
}

#flagMenu img {
    width: 22px;
    height: auto;
    opacity: .75;
}

#presentation {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
}

#presentation h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 96px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: transparent;
    background: linear-gradient(110deg, var(--cyan2), var(--green), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
}

.content-min {
    min-height: 48vh;
}

.flex-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 80px;
}

.product-item {
    display: block;
    min-height: 250px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: .25s;
    margin: 10px;
}

.product-item:hover {
    transform: translateY(-6px);
    border-color: rgba(67, 239, 255, .38);
    box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.product-item > div {
    height: 100%;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    opacity: .9;
    filter: drop-shadow(0 0 18px rgba(67, 239, 255, .14));
    margin: auto;
}

.product-item h2 {
    margin: 56px 0 0;
    color: var(--text);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.product-item:hover h2 {
    color: transparent;
    background: linear-gradient(110deg, var(--cyan2), var(--green), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
}

/* żeby .content-section h2 z głównej nie psuło kart produktów */
.product-item h2 {
    background: none;
    -webkit-background-clip: initial;
}

/* =========================
   MOBILE PODSTRONY
========================= */

@media (max-width: 1100px) {
    .flex-list {
        grid-template-columns: repeat(2, 1fr);
    }

    #otherMain {
        padding: 0 24px;
        grid-template-columns: auto auto;
        grid-template-rows: 64px 1fr;
    }

    #otherMain #menu,
    #otherMain > form {
        display: none;
    }

    #otherMain .burger {
        display: block;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    #presentation {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    #otherMain {
        min-height: 280px;
    }

    #presentation h2 {
        font-size: 54px;
    }

    .content-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .flex-list {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 44px;
    }

    .product-item {
        min-height: 190px;
    }

    .product-item > div {
        padding: 28px;
    }

    .product-item h2 {
        font-size: 25px;
        margin-top: 40px;
    }
}

#WordPressImg2 {
    width: 80%;
    min-width: 250px;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,.4)) drop-shadow(0 20px 40px rgba(0,0,0,.3)) drop-shadow(0 30px 60px rgba(0,0,0,.2));

}


/* =========================
   MOBILE MENU FIX
========================= */

@media (max-width: 1100px) {
    .mobile-block {
        display: block;
    }

    #burgerCheck,
    .burger input {
        display: none;
    }

    .burger {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .hamburger-lines {
        width: 34px;
        height: 24px;
        position: fixed;
        top: 22px;
        right: 24px;
        z-index: 1002;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger-lines .line {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background: var(--cyan);
        transition: .35s ease;
        box-shadow: 0 0 12px rgba(67, 239, 255, .45);
    }

    #burgerCheck:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg) translate(6px, 7px);
    }

    #burgerCheck:checked ~ .hamburger-lines .line2 {
        opacity: 0;
        transform: scaleX(0);
    }

    #burgerCheck:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    /* menu dla podstron */
    #menu {
        position: fixed !important;
        inset: 0;
        z-index: 1000;

        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 100px 28px 40px;

        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 14px;

        background:
            linear-gradient(rgba(67, 239, 255, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(67, 239, 255, .035) 1px, transparent 1px),
            rgba(4, 32, 38, .96);

        background-size: 80px 80px;
        backdrop-filter: blur(18px);

        border: none !important;
        border-radius: 0 !important;

        transform: translateX(110%);
        transition: transform .45s ease;
    }

    #menu.navMove {
        transform: translateX(0) !important;
    }

    #menu a {
        width: 100%;
        height: auto !important;
        min-height: 58px;

        display: flex !important;
        align-items: center;
        justify-content: center;

        padding: 16px 20px !important;

        color: var(--text) !important;
        background: rgba(255,255,255,.035);
        border: 1px solid var(--border) !important;
        border-radius: 18px;

        font-family: "Inter", sans-serif;
        font-size: 18px !important;
        font-weight: 700;

        transition: .25s;
    }

    #menu a:hover {
        color: #06272e !important;
        background: linear-gradient(135deg, var(--cyan), var(--cyan2));
        border-color: transparent !important;
    }

    #menu form {
        width: 100%;
        margin-bottom: 12px;
    }

    #menu .searchInput {
        display: block !important;
        width: 100% !important;
        height: 52px;

        margin: 0 !important;
        padding: 0 18px;

        float: none;
        clear: none;

        color: var(--text);
        background: rgba(255,255,255,.045);
        border: 1px solid var(--border);
        border-radius: 999px;
        outline: none;
    }

    #flagMenu img {
        width: 32px !important;
        height: auto !important;
    }

    #otherMain > form,
    header.main > form {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    #otherMain #menu.navMove,
    header.main nav.navMove {
        display: flex !important;
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    #otherMain #menu,
    header.main nav {
        position: fixed !important;
        inset: 0 !important;
        z-index: 999 !important;

        width: 100vw !important;
        height: 100vh !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 14px !important;

        padding: 100px 28px 40px !important;
        margin: 0 !important;

        background: rgba(4, 32, 38, .97) !important;
        backdrop-filter: blur(18px);

        border: none !important;
        border-radius: 0 !important;

        transform: translateX(110%) !important;
        transition: transform .45s ease !important;
    }

    #otherMain #menu a,
    header.main nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-height: 58px !important;

        color: var(--text) !important;
        background: rgba(255,255,255,.04) !important;
        border: 1px solid var(--border) !important;
        border-radius: 18px !important;

        font-size: 18px !important;
        font-weight: 700 !important;
    }

    .hamburger-lines {
        position: fixed !important;
        top: 22px !important;
        right: 24px !important;
        z-index: 1002 !important;
    }
}

/* =========================
   PRODUCT DETAIL / VS CODE THEMES
========================= */

.content-section.content-min {
    width: min(1180px, calc(100vw - 48px));
    padding: 54px;
    margin-top: 80px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;

    text-align: center;
    color: var(--text);
}

.content-section.content-min > img:first-child {
    display: block;
    margin: 0 auto 34px;
    max-width: 520px !important;
    width: min(55%, 520px) !important;
    /* filter: drop-shadow(0 0 28px rgba(67, 239, 255, .14)); */
        /* box-shadow: 0 30px 80px rgba(0,0,0,.35); */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.4)) drop-shadow(0 20px 40px rgba(0,0,0,.3)) drop-shadow(0 30px 60px rgba(0,0,0,.2));

}

.content-section.content-min p {
    /* max-width: 860px; */
    margin: 18px auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.content-section.content-min a {
    color: var(--cyan);
    font-weight: 700;
}

.content-section.content-min a:hover {
    color: var(--yellow);
}

/* TABS */

.tab-buttons {
    margin: 54px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tablink {
    padding: 14px 22px;
    background: rgba(255,255,255,.035);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
}

.tablink:hover,
.tablink.active {
    transform: translateY(-2px);
    color: #06272e;
    background: linear-gradient(135deg, var(--cyan), var(--cyan2));
    border-color: transparent;
    box-shadow: 0 12px 35px rgba(67, 239, 255, .18);
}

/* TAB CONTENT */

.tabcontent {
    margin-top: 28px;
    padding: 46px;
    display: none;

    background: rgba(255,255,255,.025);
    border: 1px solid var(--border);
    border-radius: 24px;

    color: var(--text);
    text-align: center;
}

.tabcontent > img:first-child {
    width: 170px !important;
    max-width: 45%;
    border-radius: 26px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 25px rgba(67, 239, 255, .14));
}

.tabcontent h1 {
    margin: 12px 0 14px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;

    color: transparent;
    background: linear-gradient(110deg, var(--cyan2), var(--green), var(--yellow));
    background-clip: text;
    -webkit-background-clip: text;
}

.tabcontent h2 {
    margin: 54px 0 18px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;

    color: var(--text);
    background: none;
    -webkit-background-clip: initial;
}

.tabFlex {
    margin: 34px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.tabFlex a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;

    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: .25s;
}

.tabFlex a:hover {
    transform: translateY(-2px);
    background: rgba(67, 239, 255, .08);
    border-color: rgba(67, 239, 255, .35);
}

.tabFlex img {
    max-height: 30px;
}

.SlidePic {
    width: 100% !important;
    max-width: 1000px;
    margin: 18px auto 30px;
    display: block !important;

    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

/* pierwsza aktywna karta jeśli JS nie ustawi display */
.tabcontent:first-of-type {
    display: block;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 750px) {
    .content-section.content-min {
        width: calc(100vw - 32px);
        padding: 28px 18px;
        margin-top: 44px;
    }

    .content-section.content-min > img:first-child {
        width: 88% !important;
    }

    .content-section.content-min p {
        font-size: 16px;
        line-height: 1.65;
    }

    .tab-buttons {
        margin-top: 36px;
        gap: 10px;
    }

    .tablink {
        width: 100%;
        border-radius: 16px;
    }

    .tabcontent {
        padding: 28px 16px;
    }

    .tabcontent > img:first-child {
        width: 130px !important;
    }

    .tabFlex {
        gap: 10px;
    }

    .tabFlex a {
        width: 100%;
        border-radius: 16px;
    }

    .SlidePic {
        border-radius: 14px;
    }
}

.content-justify {
text-align: justify !important;
}
/* ABOUT - tekst justowany, listy normalne */

.content-section.content-justify {
    text-align: left !important;
}

.content-section.content-justify p {
    text-align: justify !important;
    hyphens: auto;
    overflow-wrap: break-word;
}

.content-section.content-justify ul,
.content-section.content-justify ol {
    text-align: left !important;
    width: fit-content;
    max-width: 100%;
    margin: 16px 0 30px 34px;
    padding-left: 24px;
}

.content-section.content-justify li {
    text-align: left !important;
    line-height: 1.55;
    margin-bottom: 6px;
}

.content-section.content-justify li a {
    text-align: left !important;
}

.content-section.content-justify h1,
.content-section.content-justify h2,
.content-section.content-justify h3 {
    text-align: left !important;
}

.content-section.content-justify hr {
    margin: 42px 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.about-image {
width: 70%;
/* height: 100%; */
object-fit: cover;
display: block;
max-width: 1000px;
margin: auto;
border-radius: 32px;
}


.hero::after {
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(67,239,255,.25),
            inset 0 0 0 40px rgba(4,32,38,.45),
            inset 0 0 0 80px rgba(95,230,245,.05);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 80px rgba(67,239,255,.4),
            inset 0 0 0 45px rgba(4,32,38,.5),
            inset 0 0 0 90px rgba(95,230,245,.08);
        transform: scale(1.02);
    }
}

.hero::after:hover {
    transform: scale(1.05);
    transition: .4s;
}

.hero::after {
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
    text-shadow: 0 0 20px rgba(200,255,120,.4);
    animation: pulseText 4s ease-in-out infinite;
}

@keyframes pulseText {
    0%,100% {
        text-shadow: 0 0 20px rgba(200,255,120,.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(200,255,120,.8);
    }
}

.LogoText
{
    font-size: clamp(1.3rem,5vw,2.6rem);
    letter-spacing: 5px;
    /* margin: 0 0 12px; */
    text-transform: uppercase;
    font-family: "empire";
    -webkit-text-stroke: 1px #111;
}

.productLogo {
  width: 12vw;
  height: 12vw;
  width: 250px;
  height: 250px;
  padding: 10px;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,.4)) drop-shadow(0 20px 40px rgba(0,0,0,.3)) drop-shadow(0 30px 60px rgba(0,0,0,.2));

}

.social-dropdown {
    position: relative;
    width: 200px;
}

.social-btn {
    display:flex;
    align-items:center;
 
}

/*.social-btn:hover {
    transform:translateY(-1px);
    border-color:rgba(177,18,18,0.35);
    background:rgba(177,18,18,0.08); */
/* } */

.dropdown-menu {
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    width:100%;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,0.10);
    border-radius:10px;
    display:none;
    overflow:hidden;
    z-index:999;
}

.dropdown-item {
    padding:10px 14px;
    cursor:pointer;
    color:#fff;
    transition:.2s;
}

.dropdown-item:hover {
    background:rgba(177,18,18,0.15);
}