*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0d0d0d;
    color:white;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:25px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(12px);
}

.logo{
    font-size:28px;
    font-weight:700;
    letter-spacing:2px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#d6b15c;
}

.button{
    padding:14px 30px;
    background:#d6b15c;
    color:#000;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
}

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    padding:0 90px;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
    url("images/hero.webp");
    background-size:cover;
    
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:110px;
    line-height:0.95;
    margin-bottom:30px;
    font-weight:800;
    letter-spacing:-3px;
    text-transform:uppercase;
}

.hero p{
    font-size:22px;
    color:#ddd;
    margin-bottom:40px;
    line-height:1.7;
}

.buttons{
    display:flex;
    gap:20px;
}

.primary{
    background:#d6b15c;
    color:black;
    padding:18px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
}

.secondary{
    border:2px solid white;
    color:white;
    padding:18px 40px;
    border-radius:40px;
    text-decoration:none;
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:100px;
    text-align:center;
    background:#151515;
}

.stats h2{
    font-size:52px;
    color:#d6b15c;
    margin-bottom:10px;
}

.stats p{
    color:#aaa;
    font-size:20px;
}
.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    padding:140px 8%;
    align-items:center;
    background:#111;
}

.section-title{
    color:#d6b15c;
    font-weight:700;
    letter-spacing:3px;
}

.about h2{
    font-size:54px;
    margin:20px 0;
    line-height:1.2;
}

.about h2 span{
    color:#d6b15c;
}

.about p{
    color:#bfbfbf;
    line-height:1.8;
    font-size:18px;
}

.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:50px;
}

.feature{
    display:flex;
    gap:18px;
    background:#1b1b1b;
    padding:25px;
    border-radius:18px;
    transition:.35s;
}

.feature:hover{
    transform:translateY(-8px);
    background:#222;
}

.icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d6b15c;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:22px;
}

.feature h3{
    margin-bottom:8px;
}

.feature p{
    font-size:15px;
}

.about-right img{
    width:100%;
    border-radius:24px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}
/* ===== KOLORY ===== */

.colors{
    padding:120px 8%;
    background:#111;
}

.colors .container{
    max-width:1400px;
    margin:0 auto;
}

.colors-header{
    text-align:center;
    margin-bottom:60px;
}

.colors-header span{
    color:#d6b15c;
    font-weight:700;
    letter-spacing:3px;
}

.colors-header h2{
    font-size:52px;
    margin:15px 0;
}

.colors-header p{
    color:#bcbcbc;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.colors-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.color-card{
    background:#1b1b1b;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.35s;
}

.color-card:hover{
    transform:translateY(-8px);
}

.color{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:0 auto 20px;
}

.ral9005{background:#111;}
.ral7016{background:#3f434a;}
.ral9010{background:#f5f5f2;}
.ral8017{background:#4b2b1d;}

.color-card h3{
    margin-top:15px;
}

@media(max-width:900px){
    .colors-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .colors-grid{
        grid-template-columns:1fr;
    }

    .colors-header h2{
        font-size:38px;
    }
}
/* ===== GALERIA ===== */

.gallery{
    padding:120px 8%;
    background:#0d0d0d;
}

.gallery-title{
    text-align:center;
    margin-bottom:60px;
}

.gallery-title span{
    color:#d6b15c;
    letter-spacing:3px;
    font-weight:700;
}

.gallery-title h2{
    font-size:52px;
    margin:15px 0;
}

.gallery-title p{
    color:#bcbcbc;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    position:relative;
    height:320px;
    background:#1b1b1b;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease, filter .6s ease;
}

.gallery-item::after{
    content:"🔍 Powiększ";
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.35);
    color:#fff;
    font-size:22px;
    font-weight:600;
    opacity:0;
    transition:.35s;
    pointer-events:none;
}

.gallery-item:hover img{
    transform:scale(1.08);
    filter:brightness(.8);
}

.gallery-item:hover::after{
    opacity:1;
}
.gallery-item:hover img{
    transform:scale(1.08);
}

@media (max-width:1000px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:700px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        height:240px;
    }

    .gallery-title h2{
        font-size:38px;
    }
}
/* ===== LIGHTBOX ===== */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9999;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:18px;
    transform:scale(.85);
    transition:.35s;
    box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.lightbox.active img{
    transform:scale(1);
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:40px;
    color:#fff;
    font-size:55px;
    cursor:pointer;
    user-select:none;
    transition:.3s;
}

.close-lightbox:hover{
    color:#d6b15c;
}
.calculator{
    max-width:1200px;
    margin:120px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:center;
}

.calculator-left span{
    color:#c9a45c;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.calculator-left h2{
    font-size:48px;
    margin:15px 0;
}

.calculator-left p{
    color:#a8a8a8;
    line-height:1.7;
    max-width:600px;
    margin-bottom:35px;
}

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.input-group input,
.input-group select{
    width:100%;
    padding:16px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.1);
    background:#161616;
    color:#fff;
    font-size:17px;
    outline:none;
}

.input-group input:focus,
.input-group select:focus{
    border-color:#c9a45c;
}

#calculateBtn{
    margin-top:15px;
    padding:18px 40px;
    border:none;
    border-radius:14px;
    background:#c9a45c;
    color:#111;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

#calculateBtn:hover{
    transform:translateY(-3px);
}

.result-card{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.result-card h3{
    margin-bottom:30px;
    font-size:28px;
}

.result-row{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
    font-size:18px;
}

.result-row strong{
    color:#c9a45c;
}

.result-card ul{
    margin-top:30px;
    padding-left:20px;
    line-height:2;
    color:#bfbfbf;
}

@media(max-width:900px){

.calculator{
grid-template-columns:1fr;
gap:40px;
}

.calculator-left h2{
font-size:36px;
}

}
.faq{
    max-width:1100px;
    margin:120px auto;
    padding:0 20px;
}

.faq .section-title{
    text-align:center;
    margin-bottom:60px;
}

.faq .section-title span{
    display:block;
    color:#c9a45c;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.faq .section-title h2{
    font-size:46px;
    margin:0;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    border-color:#c9a45c;
    transform:translateY(-2px);
}

.faq-question{
    width:100%;
    padding:24px 28px;
    background:none;
    border:none;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    text-align:left;
}

.faq-question span{
    color:#c9a45c;
    font-size:30px;
    transition:.35s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 28px;
    color:#bdbdbd;
    line-height:1.8;
    transition:max-height .4s ease,padding .4s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 28px 26px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:768px){

.faq .section-title h2{
    font-size:34px;
}

.faq-question{
    font-size:18px;
    padding:20px;
}

.faq-answer{
    font-size:15px;
}

}
.features{
    max-width:1200px;
    margin:120px auto;
    padding:0 20px;
}

.features-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.features-header span{
    display:block;
    color:#c9a45c;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.features-header h2{
    font-size:48px;
    margin-bottom:20px;
    line-height:1.2;
}

.features-header p{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#c9a45c;
}

.feature-icon{
    font-size:46px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.feature-card p{
    color:#bdbdbd;
    line-height:1.8;
}

@media(max-width:1000px){
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .features-grid{
        grid-template-columns:1fr;
    }

    .features-header h2{
        font-size:34px;
    }
}
.contact{
    max-width:1200px;
    margin:120px auto;
    padding:0 20px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:40px;
    margin-top:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-box{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:25px;
}

.contact-box h3{
    margin-bottom:10px;
    color:#c9a45c;
}

.contact-box p{
    color:#d6d6d6;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:18px;
    color:#fff;
    font-size:16px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#c9a45c;
}

.contact-form button{
    background:#c9a45c;
    color:#111;
    border:none;
    padding:18px;
    border-radius:16px;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}

@media(max-width:900px){

.contact-wrapper{
    grid-template-columns:1fr;
}

}
.contact-box a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-box a:hover{
    color:#c9a45c;
}
@media (max-width:700px){

body{
    overflow-x:hidden;
}

/* HEADER */
header{
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo{
    font-size:26px;
    text-align:center;
    margin-bottom:25px;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

nav a{
    font-size:16px;
}

header .button{
    width:90%;
    margin-top:25px;
}


/* HERO */
.hero{
    min-height:85vh;
    padding:40px 20px;
    text-align:center;
}

.hero h1{
    font-size:55px;
    line-height:0.95;
    max-width:100%;
    word-break:break-word;
}

.hero p{
    font-size:22px;
    line-height:1.4;
    margin-top:30px;
}


/* PRZYCISKI HERO */
.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
}

.hero-buttons a{
    width:90%;
    text-align:center;
}


/* SEKCJE */
section{
    padding:50px 20px;
}


/* GALERIA */
.gallery-grid{
    grid-template-columns:1fr;
}


/* KALKULATOR */
input,
select{
    width:100%;
}

}