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

html{
    scroll-behavior:smooth;
}

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

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    position:relative;
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1920");
    background-size:cover;
    background-position:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    transparent 0%,
    rgba(0,0,0,.4) 50%,
    rgba(0,0,0,.8) 100%);
}

.navbar{
    position:fixed;
    width:100%;
    z-index:999;
    padding:25px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(8px);
    background:rgba(0,0,0,.35);
}

.logo{
    font-family:'Oswald',sans-serif;
    font-size:2rem;
    letter-spacing:4px;
    color:#ff6b00;
}

.menu{
    list-style:none;
    display:flex;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#ff6b00;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:90%;
    max-width:1200px;
    margin:auto;
}

.subtitle{
    color:#ff6b00;
    letter-spacing:3px;
    margin-bottom:20px;
}

.hero h1{
    font-family:'Oswald',sans-serif;
    font-size:6rem;
    line-height:1;
    margin-bottom:25px;
}

.hero-text{
    max-width:650px;
    font-size:1.2rem;
    color:#d0d0d0;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    width:fit-content;
    padding:18px 40px;
    background:#ff6b00;
    color:white;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,107,0,.6);
}

section{
    padding:100px 0;
}

.section-title span{
    color:#ff6b00;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:10px;
    margin-bottom:30px;
    font-family:'Oswald',sans-serif;
    font-size:3rem;
}

.about{
    background:#151515;
}

.about p{
    max-width:900px;
    color:#cfcfcf;
    font-size:1.1rem;
}

.stats{
    background:#ff6b00;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.stat-card{
    text-align:center;
    color:#111;
}

.stat-card h3{
    font-size:4rem;
    font-family:'Oswald',sans-serif;
}

.services{
    background:#111;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.service{
    background:#1a1a1a;
    padding:35px;
    border:1px solid #252525;
    transition:.3s;
}

.service:hover{
    transform:translateY(-10px);
    border-color:#ff6b00;
    box-shadow:0 0 30px rgba(255,107,0,.2);
}

.service i{
    font-size:2rem;
    color:#ff6b00;
    margin-bottom:20px;
}

.service h3{
    margin-bottom:15px;
}

.gallery{
    background:#151515;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-item{
    height:250px;          /* taka sama wysokość jak wcześniej */
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
	  position: relative;
    overflow: hidden;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(255,120,0,.5);
}

.gallery-item:hover{
    transform:scale(1.03);
    border-color:#ff6b00;
}

.contact{
    background:#0f0f0f;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact p{
    margin:15px 0;
}

.contact i{
    color:#ff6b00;
    margin-right:10px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    background:#181818;
    border:1px solid #2c2c2c;
    padding:15px;
    color:white;
}

button{
    border:none;
    background:#ff6b00;
    color:white;
    padding:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    opacity:.9;
}

footer{
    text-align:center;
    padding:30px;
    background:black;
    color:#777;
}

@media(max-width:900px){

    .hero h1{
        font-size:3.5rem;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .menu{
        display:none;
    }
}