/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;

    /* Jasno beżowe tło jak na grafice */
    background: #f5efe4;

    color: #2b2b2b;
    line-height: 1.7;
}

/* =========================
   HERO
========================= */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 10vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 50px 50px;
}

.hero-text {
    flex: 0.8;
}

.hero-text h1 {
    font-size: clamp(42px, 7vw, 92px);
    line-height: 0.95;

    margin-bottom: 30px;

    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;

    color: #111;
}

.hero-text h1 span {
    color: #d65a28;
}

.hero-text p {
    font-size: 22px;
    max-width: 520px;

    margin-bottom: 35px;

    color: #5a5248;
    font-weight: 400;
}

.btn {
    display: inline-block;

    background: #d65a28;
    color: white;

    text-decoration: none;

    padding: 18px 38px;

    border-radius: 14px;

    font-size: 20px;
    font-weight: 700;

    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(214, 90, 40, 0.25);
}

.btn:hover {
    background: #b94619;

    transform: translateY(-4px);

    box-shadow: 0 14px 35px rgba(214, 90, 40, 0.35);
}

.hero-image {
    flex: 1.2;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 860px;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.18),
        0 5px 15px rgba(0,0,0,0.08);
}

/* =========================
   CONTENT
========================= */

.content {
    max-width: 1100px;
    margin: 0 auto;

    padding: 3px 5px 10px;
}

.content h2 {
    font-size: 42px;
    margin-bottom: 20px;

    font-weight: 800;

    color: #1f1f1f;
}

.content p {
    font-size: 20px;
    margin-bottom: 22px;

    color: #5b5349;
}

/* =========================
   FOOTER
========================= */

footer {

    border-top: 1px solid rgba(0,0,0,0.08);

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.45),
            rgba(255,255,255,0.2)
        );

    backdrop-filter: blur(10px);

    margin-top: 60px;

    padding: 35px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 40px;

    flex-wrap: wrap;

    font-size: 16px;
    font-weight: 600;

    color: #6b6258;
}

.footer-content a {
    color: #d65a28;

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-content a:hover {
    color: #111;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .hero {
        flex-direction: column;
        text-align: center;

        padding-top: 40px;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        max-width: 100%;
    }

    .content {
        text-align: center;
        padding: 20px 30px 80px;
    }

    .content h2 {
        font-size: 34px;
    }

    .content p {
        font-size: 18px;
    }

}