/* ===== OLD2.PL — PREZENTACJA — NOWY LAYOUT ===== */

/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px
}

body {
    font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background: #0a0a0f;
    color: #c8b88a;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: #d4a843;
    text-decoration: none;
    transition: color .2s
}

    a:hover {
        color: #f0d060
    }

img {
    max-width: 100%;
    height: auto
}

ul {
    list-style: none
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #111
}

::-webkit-scrollbar-thumb {
    background: #3a2a10;
    border-radius: 4px
}

    ::-webkit-scrollbar-thumb:hover {
        background: #d4a843
    }

/* ===== TOP NAVBAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,15,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,168,67,.15);
    transition: all .3s;
}

    .topbar.scrolled {
        background: rgba(10,10,15,.98);
        box-shadow: 0 2px 20px rgba(0,0,0,.5);
    }

.topbar-inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    gap: 16px;
}

.topbar-logo img {
    height: 40px;
    display: block
}

.topbar-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

    .topbar-nav::-webkit-scrollbar {
        display: none
    }

    .topbar-nav a {
        white-space: nowrap;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        color: #998a6a;
        transition: all .2s;
        flex-shrink: 0;
    }

        .topbar-nav a:hover {
            color: #d4a843;
            background: rgba(212,168,67,.08)
        }

        .topbar-nav a.active {
            color: #f0d060;
            background: rgba(212,168,67,.15);
            font-weight: 600
        }

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.topbar-social {
    font-size: 20px;
    text-decoration: none;
    opacity: .7;
    transition: opacity .2s
}

    .topbar-social:hover {
        opacity: 1
    }

.topbar-burger {
    display: none;
    background: none;
    border: none;
    color: #d4a843;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10,10,15,.97);
    border-bottom: 1px solid rgba(212,168,67,.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

    .mobile-menu.open {
        max-height: 80vh;
        overflow-y: auto
    }

    .mobile-menu a {
        display: block;
        padding: 10px 24px;
        color: #998a6a;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,.04);
    }

        .mobile-menu a:hover {
            color: #d4a843;
            background: rgba(212,168,67,.06)
        }

@media(max-width:900px) {
    .topbar-nav {
        display: none
    }

    .topbar-burger {
        display: block
    }

    .mobile-menu {
        display: block
    }
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 40px;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(10,10,15,.6) 0%,rgba(10,10,15,.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-logo-img {
    width: 160px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px rgba(212,168,67,.3));
    animation: heroPulse 4s infinite ease-in-out;
}

@keyframes heroPulse {
    0% {
        transform: scale(.97)
    }

    50% {
        transform: scale(1.03)
    }

    100% {
        transform: scale(.97)
    }
}

.hero-content h1 {
    font-size: clamp(1.8rem,4vw,3rem);
    color: #f0d060;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.hero-content > p {
    font-size: 1.1rem;
    color: #bba870;
    margin-bottom: 28px
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .25s;
}

.cta-gold {
    background: linear-gradient(135deg,#d4a843,#a67c2e);
    color: #0a0a0f;
    box-shadow: 0 4px 20px rgba(212,168,67,.3);
}

    .cta-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(212,168,67,.4);
        color: #0a0a0f;
    }

.cta-dark {
    background: rgba(255,255,255,.08);
    color: #d4a843;
    border: 1px solid rgba(212,168,67,.25);
}

    .cta-dark:hover {
        background: rgba(212,168,67,.12);
        transform: translateY(-2px)
    }

.hero-quick-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.qs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,168,67,.12);
    border-radius: 10px;
    min-width: 80px;
}

.qs-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f0d060
}

.qs-label {
    font-size: .75rem;
    color: #998a6a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px
}

/* ===== START BANNER ===== */
.start-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 20px;
    background: linear-gradient(90deg,rgba(212,168,67,.08),rgba(212,168,67,.15),rgba(212,168,67,.08));
    border-top: 1px solid rgba(212,168,67,.12);
    border-bottom: 1px solid rgba(212,168,67,.12);
    flex-wrap: wrap;
    text-align: center;
    animation: bannerPulse 3s infinite ease-in-out;
}

@keyframes bannerPulse {
    0% {
        border-color: rgba(212,168,67,.12)
    }

    50% {
        border-color: rgba(212,168,67,.35)
    }

    100% {
        border-color: rgba(212,168,67,.12)
    }
}

.sb-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #998a6a
}

.sb-date {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f0d060
}

.sb-time {
    font-size: 14px;
    color: #bba870
}

/* ===== MAIN ===== */
.prezentacja-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px
}

/* ===== CARDS ROW (info cards) ===== */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.p-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,168,67,.1);
    border-radius: 12px;
    padding: 24px;
    transition: border-color .3s,transform .3s;
}

    .p-card:hover {
        border-color: rgba(212,168,67,.25);
        transform: translateY(-2px)
    }

    .p-card h2 {
        font-size: 1.15rem;
        color: #f0d060;
        margin-bottom: 10px
    }

    .p-card p {
        font-size: .95rem;
        line-height: 1.7;
        color: #bba870;
        margin-bottom: 8px
    }

.p-card--center {
    text-align: center
}

.plain-list {
    padding: 0
}

    .plain-list li {
        padding: 2px 0
    }

/* ===== SECTION BOX ===== */
.prez-section {
    margin-bottom: 32px;
    scroll-margin-top: 80px
}

.section-box {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(212,168,67,.08);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    transition: border-color .3s;
}

    .section-box:hover {
        border-color: rgba(212,168,67,.2)
    }

.section-header {
    max-width: 500px;
    margin: 0 auto 20px;
    display: block
}

.section-box p {
    font-size: .95rem;
    line-height: 1.8;
    color: #bba870;
    margin-bottom: 12px;
    text-align: left;
}

    .section-box p:last-child {
        margin-bottom: 0
    }

.section-box ul {
    text-align: left;
    padding-left: 0;
    margin-bottom: 14px
}

    .section-box ul li {
        padding: 6px 0;
        font-size: .95rem;
        color: #bba870
    }

        .section-box ul li img {
            vertical-align: middle;
            margin-right: 4px;
            height: 24px
        }

.section-img {
    display: block;
    margin: 16px auto;
    border-radius: 8px
}

/* ===== TABLES ===== */
.tbl-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: 8px
}

    .tbl-wrap table {
        width: 100%;
        border-collapse: collapse;
        font-size: .9rem
    }

    .tbl-wrap th, .tbl-wrap td {
        padding: 10px 14px;
        border: 1px solid rgba(212,168,67,.12);
        text-align: left
    }

    .tbl-wrap thead th {
        background: rgba(212,168,67,.1);
        color: #f0d060;
        font-weight: 600
    }

    .tbl-wrap tbody th, .tbl-wrap tbody td {
        color: #bba870;
        background: rgba(0,0,0,.15)
    }

/* ===== ALCHEMY CROSS ===== */
.alchemy-cross-wrap {
    position: relative;
    display: inline-block;
    margin: 16px auto
}

.alchemy-x {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

    .alchemy-x::before, .alchemy-x::after {
        content: '';
        position: absolute;
        width: 80%;
        height: 6px;
        background: #ff3333;
        border-radius: 3px;
    }

    .alchemy-x::before {
        transform: rotate(45deg)
    }

    .alchemy-x::after {
        transform: rotate(-45deg)
    }

/* ===== FAQ ===== */
.faq-accordion {
    padding: 0
}

.faq-row {
    border: 1px solid rgba(212,168,67,.08);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color .3s;
}

    .faq-row:hover {
        border-color: rgba(212,168,67,.2)
    }

.faq-q {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: rgba(255,255,255,.03);
    border: none;
    color: #d4a843;
    font-size: .95rem;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}

    .faq-q:hover {
        background: rgba(212,168,67,.06)
    }

    .faq-q::after {
        content: '+';
        float: right;
        font-weight: 700;
        font-size: 1.1rem
    }

.faq-row.open .faq-q::after {
    content: '-'
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #bba870;
    font-size: .9rem;
    transition: all .35s ease;
    line-height: 1.7;
}

.faq-row.open .faq-a {
    max-height: 200px;
    padding: 12px 20px 16px
}

/* ===== FOOTER ===== */
.prez-footer {
    border-top: 1px solid rgba(212,168,67,.1);
    margin-top: 40px;
    padding: 30px 20px;
    text-align: center;
}

.prez-footer-inner {
    max-width: 800px;
    margin: 0 auto
}

.prez-footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px
}

    .prez-footer-links a {
        color: #998a6a;
        font-size: 14px
    }

        .prez-footer-links a:hover {
            color: #d4a843
        }

.prez-footer p {
    font-size: 13px;
    color: #665e4a
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px) {
    .hero-content h1 {
        font-size: 1.6rem
    }

    .hero-logo-img {
        width: 120px
    }

    .hero-quick-stats {
        gap: 12px
    }

    .qs-item {
        padding: 8px 14px;
        min-width: 60px
    }

    .qs-val {
        font-size: 1.2rem
    }

    .section-box {
        padding: 20px 16px
    }

        .section-box p {
            font-size: .88rem
        }

    .cards-row {
        grid-template-columns: 1fr
    }

    .start-banner {
        flex-direction: column;
        gap: 6px
    }

    .tbl-wrap {
        font-size: .8rem
    }
}
