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

body {
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('pizza-hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-text {
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 12px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* SEKCJE */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
}

.container img {
    width: 45%;
    border-radius: 10px;
}

.container .text {
    width: 45%;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-48px);
}

.reveal-right {
    transform: translateX(48px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.about {
    background: #f4f4f4;
}

.cooperation {
    background: #fff;
}
.cooperation img{
  max-height:600px;
  width:auto;
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

.contact form {
    margin-top: 20px;
}

.contact input,
.contact textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
}

.contact button {
    padding: 10px 20px;
    background: #e63946;
    color: white;
    border: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* RESPONSYWNOŚĆ */
@media(max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .container img,
    .container .text {
        width: 100%;
    }

    .navbar {
        flex-direction: column;
    }
}
