/* ===== RESET ===== */
body {
    margin:0;
    font-family:Arial;
    background:#0F1115;
    color:white;
}

/* ===== LOGIN ===== */
#login {
    position:fixed;
    width:100%;
    height:100%;
    background:url('images/hero.jpg') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
}

.login-box {
    position:relative;
    background:rgba(26,31,38,0.95);
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

.login-logo {
    width:290px;
    margin-bottom:20px;
}

.login-form {
    display:flex;
    gap:10px;
    justify-content:center;
}

.login-form input {
    padding:12px;
    border:none;
    border-radius:10px;
}

.login-form button {
    background:#E30613;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    color:white;
    cursor:pointer;
}

.login-form button:hover {
    background:#ff1a1a;
}

/* ===== STRONA ===== */
#site {
    display:none;
}

/* ===== HEADER ===== */
header {
    position:fixed;
    width:100%;
    top:0;
    background:rgba(40,45,55,0.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.container {
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

.logo {
    height:45px;
}

/* NAV */
nav {
    display:flex;
    gap:25px;
}

nav a {
    color:white;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

nav a:hover {
    color:#E30613;
}

/* ===== HERO ===== */
.hero {
    height:100vh;
    background:url('images/hero.jpg') center/cover no-repeat;
    position:relative;
}

.overlay {
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to bottom, rgba(0,0,0,0.7), #0F1115);
}

.hero-content {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* LOGO */
.hero-logo {
    width:clamp(220px, 30vw, 380px);
    height:auto;
    margin-bottom:20px;
}

/* TEKST W RAMCE */
.hero-text-box {
    background:rgba(20, 25, 32, 0.75);
    padding:18px 28px;
    border-radius:18px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 0 25px rgba(0,0,0,0.4);
}

.hero-text-box p {
    margin:0;
    color:#fff;
    font-size:15px;
    line-height:1.6;
}

/* ===== HOME BOX ===== */
.home-about {
    padding:100px 20px;
    display:flex;
    justify-content:center;
}

.home-box {
    background:#1f242b;
    padding:40px;
    border-radius:20px;
    max-width:700px;
    text-align:center;
}

/* ===== MENU ===== */
.menu-section {
    padding:100px 20px;
    text-align:center;
}

.menu-grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.menu-card {
    background:#1f242b;
    padding:25px 40px;
    border-radius:20px;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.menu-card:hover {
    background:#E30613;
    transform:translateY(-5px);
}

/* ===== SUB HERO ===== */
.sub-hero {
    height:40vh;
    background:url('images/hero.jpg') center/cover no-repeat;
    position:relative;
}

.sub-hero .overlay {
    background:rgba(0,0,0,0.7);
}

/* ===== SERVICES ===== */
.services-section {
    padding:80px 20px;
}

.services-grid {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.service-card {
    background:#1f242b;
    padding:30px;
    border-radius:20px;
    width:280px;
    transition:0.3s;
}

.service-card:hover {
    background:#E30613;
}

/* ===== ABOUT ===== */
.about-section {
    padding:80px 20px;
    text-align:center;
}

.about-grid {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.about-card {
    background:#1f242b;
    padding:25px;
    border-radius:20px;
    width:220px;
}

/* ===== JOBS ===== */
.jobs-section {
    padding:80px 20px;
    max-width:600px;
    margin:auto;
    text-align:center;
}

.jobs-form {
    display:flex;
    flex-direction:column;
    gap:15px;
}

.jobs-form input,
.jobs-form textarea {
    padding:12px;
    border:none;
    border-radius:10px;
    background:#1f242b;
    color:white;
}

.jobs-form button {
    background:#E30613;
    border:none;
    padding:12px;
    border-radius:10px;
    color:white;
    cursor:pointer;
}

.jobs-form button:hover {
    background:#ff1a1a;
}

/* ===== CONTACT ===== */
.contact-section {
    padding:80px 20px;
    text-align:center;
}

.contact-cards {
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.contact-card {
    background:#1f242b;
    padding:25px;
    border-radius:20px;
    width:220px;
}

.contact-card.highlight {
    background:#E30613;
}

/* ===== GALERIA ===== */
.gallery-section {
    padding:80px 20px;
    text-align:center;
}

.gallery-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
}

.gallery-grid img {
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
}

/* ===== LIGHTBOX ===== */
#lightbox {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
}

#lightbox img {
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

/* ===== MOBILE ===== */
.menu-toggle {
    display:none;
}

@media(max-width:900px){

    nav {
        display:none;
        flex-direction:column;
        position:absolute;
        top:70px;
        right:20px;
        background:#111;
        padding:20px;
        border-radius:10px;
    }

    .menu-toggle {
        display:block;
        font-size:25px;
        cursor:pointer;
    }

    .menu-card {
        width:100%;
    }
}
/* ===== FIX LOGO (NADPISANIE WSZYSTKIEGO) ===== */
.hero-logo {
    width:240px !important;
    max-width:240px !important;
    height:auto !important;
    display:block !important;
    margin:0 auto 20px !important;
}
.hero-text-box {
    background:#1f242b;
    padding:20px 30px;
    border-radius:20px;
    display:inline-block;
    box-shadow:0 0 25px rgba(0,0,0,0.4);
}

.hero-text-box p {
    margin:0;
    color:#fff;
    font-size:15px;
    line-height:1.6;
}
/* ===== SHOP FINAL FIX ===== */
.shop-section {
    padding:120px 20px;
    text-align:center;
}

.shop-section h1 {
    margin-bottom:20px;
}

.shop-text {
    color:#ccc;
    margin-bottom:40px;
}

/* CENTROWANIE BOXA */
.shop-box {
    background:#1f242b;
    padding:60px;
    border-radius:20px;
    display:block;
    max-width:500px;
    margin:0 auto;
    box-shadow:0 0 30px rgba(0,0,0,0.4);
}

.shop-box h2 {
    margin-bottom:10px;
}

.shop-box p {
    color:#aaa;
}
/* ===== HERO POPRAWA ===== */
.hero-content {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

/* LOGO LEPIEJ WYWAŻONE */
.hero-logo {
    width:300px;
    max-width:80%;
    height:auto;
}

/* TEKST BOX PREMIUM */
.hero-text-box {
    background:#1f242b;
    padding:20px 30px;
    border-radius:20px;
    box-shadow:0 0 30px rgba(0,0,0,0.4);
}

/* INFO BOX */
.home-box {
    background:#1f242b;
    padding:50px;
    border-radius:25px;
    max-width:750px;
    text-align:center;
    box-shadow:0 0 30px rgba(0,0,0,0.4);
}
/* HERO CONTENT */
.hero-content {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
}

/* WIĘKSZE LOGO */
.hero-logo {
    width:360px;
    max-width:85%;
    height:auto;
}

/* GŁÓWNA RAMKA */
.hero-main-box {
    background:#1f242b;
    padding:30px 40px;
    border-radius:25px;
    max-width:700px;
    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

.hero-main-box h2 {
    margin-bottom:15px;
}

.hero-main-box p {
    color:#ccc;
    line-height:1.6;
}

/* HASŁO */
.hero-sub {
    margin-top:15px;
    font-weight:600;
    color:#fff;
}