/* ==============================
   RESET
============================== */

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

html, body {
    width: 100%;
    overflow-x: hidden;
}
/* usuwa białe odstępy */
body {
    margin: 0;
}

.elementor-section,
.elementor-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* usuwa padding kontenera elementora */
.elementor-section.hero-scroll .elementor-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* usuwa padding widgetów */
.elementor-section.hero-scroll .elementor-widget {
    padding: 0 !important;
}

body {
    overflow-x: hidden;
}
/* obraz na full */
.hero-bg img {
    width: 100vw;
    max-width: none;
}

/* ==============================
   BASE
============================== */

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d0d0d;
    color: #fff;
}

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

/* ==============================
   CONTAINER
============================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==============================
   HEADER
============================== */

#main-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease;
}

#main-header.hide {
    transform: translateY(-120%);
}

/* HEADER BOX */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 50px;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    /* subtle glow */
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* SCROLLED */
#main-header.scrolled .header-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
}

/* LOGO */
.logo img {
    height: 36px;
}

/* MENU */
.main-nav .nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav .nav-menu li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.main-nav .nav-menu li a:hover {
    opacity: 0.7;
}

/* CTA */
.header-cta {
    background: #f5c400;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #ffd633;
    transform: translateY(-2px);
}

/* ==============================
   HERO (BASE – pod późniejsze rozwinięcie)
============================== */

.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px;
}

.hero h1 {
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
}

.hero span {
    color: #f5c400;
}

/* ==============================
   BUTTON GLOBAL
============================== */

.btn-primary {
    display: inline-block;
    background: #f5c400;
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffd633;
}

/* ==============================
   SECTION (do Elementora)
============================== */

.section {
    padding: 80px 0;
}

.section-light {
    background: #f5f5f5;
    color: #000;
}

.section-dark {
    background: #000;
}

/* ==============================
   FOOTER
============================== */

.ftw-footer {
    background: #f5c400;
    color: #000;
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.footer-logo img {
    height: 40px;
}

/* MENU */
.footer-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.footer-menu li a {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #000;
    font-size: 18px;
}

/* DIVIDER */
.footer-divider {
    margin: 30px 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-privacy a {
    color: #000;
}

/* ==============================
   UTILITIES
============================== */

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}