* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    right: 0;
    background: radial-gradient(rgb(0, 0, 0) 0%, rgb(51, 51, 51) 100%);
    color: #333;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px 10px 50px;
    background-color: #de4300ee;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 60px;

}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;

}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
}

nav ul li a:hover {
    font-weight: bold;
    text-shadow: 0.5 0.1;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    color: rgb(0, 0, 0);
    font-size: 35px;
}

.brandlogo {
    width: 50px;
    height: auto;
    border-radius: 50%;
    margin-top: 8px;
}

.header {
    width: 100%;
    min-height: calc(100vh - 60px);
    background: url('img/manufbg2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.header .textbox {
    max-width: 900px;
    height: auto;
    background-color: rgba(50, 47, 47, 0.87);
    padding: 10px 20px 40px 20px;
    border-radius: 20px;
    margin-top: 20px;
    border: solid 5px #de4300ee;
}

.header .textbox h1 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    padding-top: 20px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.918);
}

.header .textbox h2 {
    font-size: 36px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.918);
}

.header .textbox p {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.918);
}

.header .textbox .hero-btn {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #de4300ee;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

.header .textbox .hero-btn:hover {
    background-color: rgb(112, 18, 18);
}

.header .textbox .headerlogo {

    width: 150px;
    height: auto;
    border-radius: 20px;
    margin-top: 10px;
}

.about {
    padding: 80px 20px;
    background: radial-gradient(rgb(20, 20, 20) 0%, rgb(40, 40, 40) 100%);
    color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.about-desc {
    font-size: 18px;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.about-box {
    background: rgba(50, 47, 47, 0.9);
    border-radius: 20px;
    padding: 30px 25px;
    border: 3px solid #de4300ee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.about-box i {
    font-size: 48px;
    color: #de4300ee;
    margin-bottom: 15px;
}

.about-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-box p {
    font-size: 16px;
    color: #ccc;
}

.gallery {
    padding: 80px 20px;
    background: radial-gradient(rgb(15, 15, 15) 0%, rgb(35, 35, 35) 100%);
    color: #fff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.gallery-desc {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 50px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid #de4300ee;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    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: 20px;
    border: 4px solid #de4300ee;
}

.services {
    padding: 80px 20px;
    background: radial-gradient(rgb(10, 10, 10) 0%, rgb(30, 30, 30) 100%);
    color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-desc {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 50px;
}

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

.service-box {
    background: rgba(50, 47, 47, 0.9);
    border-radius: 20px;
    padding: 30px 25px;
    border: 3px solid #de4300ee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.service-box i {
    font-size: 48px;
    color: #de4300ee;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    color: #ccc;
}

.contact {
    padding: 80px 20px;
    background: radial-gradient(rgb(8, 8, 8) 0%, rgb(28, 28, 28) 100%);
    color: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 50px;
}

/* GRID */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* INFO */
.contact-info {
    text-align: center;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #de4300ee;
    font-size: 22px;

}

#what {
    color: #ffffffee;
    font-size: 38px;
}

#mess {
    color: #ffffffee;
    font-size: 38px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

/* IKONY WHATSAPP / MESSENGER */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.contact-icon.whatsapp {
    background-color: #25D366;
}

.contact-icon.messenger {
    background-color: #0084FF;
}

/* FORM */
.contact-form {
    width: 100%;
    max-width: 500px;
    background: rgba(50, 47, 47, 0.9);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #de4300ee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.contact-form button {
    padding: 14px;
    font-size: 18px;
    color: #fff;
    background-color: #de4300ee;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: rgb(112, 18, 18);
}

.footer {
    background: rgba(20, 20, 20, 0.9);
    /* ciemna, lekko przezroczysta */
    backdrop-filter: blur(10px);
    /* efekt glassmorphism */
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid #de4300ee;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}



@media (max-width: 900px) {

    body {
        right: 0;
    }

    nav {
        padding: 10px 25px;
    }

    nav ul {
        position: absolute;
        max-height: 0;
        top: 60px;
        left: 0;
        right: 0;
        overflow: hidden;
        overflow-y: auto;
        flex-direction: column;
        text-align: center;
        background: rgb(164, 57, 24);
        gap: 0;
        margin-bottom: 20px;
        z-index: 1100;
    }

    nav ul li {
        padding: 20px;
    }

    nav ul li a {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 20px;
    }

    .menu-icon {
        display: block;
    }

    #menuList {
        transition: all 0.5s;

    }

    .menu-icon i {
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .menu-icon i:active {
        transform: scale(0.9);
    }

    .header .textbox h1 {
        font-size: 22px;
        padding-top: 20px;
        margin-bottom: 5px;
    }

    .header .textbox {
        margin-top: 0px;

    }

    .header {
        margin-top: 60px;
        min-height: 90vh;
        background-position: center top;

    }

    .header .textbox p {
        font-size: 16px;
    }

    .header .textbox h2 {
        font-size: 24px;
    }

    .about {
        padding: 60px 15px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about-desc {
        font-size: 16px;
        margin-bottom: 35px;
    }

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

    .gallery h2 {
        font-size: 28px;
    }

    .gallery-desc {
        font-size: 16px;
    }

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

    .gallery-grid img {
        height: 220px;
    }

    .services h2 {
        font-size: 28px;
    }

    .services-desc {
        font-size: 16px;
    }

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

    .services-cta h3 {
        font-size: 22px;
    }

    .contact h2 {
        font-size: 28px;
    }

    .contact-desc {
        font-size: 16px;
    }

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

    .contact-info p {
        font-size: 16px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .contact-buttons {
        display: flex;
        gap: 15px;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .contact-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 22px;
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-btn i {
        font-size: 22px;
    }

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .contact-btn.whatsapp {
        background-color: #25D366;
    }

    .contact-btn.messenger {
        background-color: #0084FF;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
    }


}