body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f7ead6;
    color: #222;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAV */
.nav {
    background-color: rgb(142, 18, 35);
    height: 90px;
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {

    height: 80%;
    background-color: #ffffff;
    border-radius: 10%;
}

.burger {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.nav-items {
    display: none;
    list-style: none;
    margin-left: auto;
    gap: 30px;
}

.nav-items a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
        text-transform: uppercase;
}

/* HERO */
.hero {
    padding: 60px 0 30px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: rgb(142, 18, 35);
    margin-bottom: 20px;
}

.hero-text p {
    max-width: 500px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: rgb(142, 18, 35);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
       text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(193, 14, 46, 0.35);
}
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 120%;
}

.hero-img img {
    max-width: 100%;
    margin-top: 40px;
}

/* INFO */
.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;   /* ⬅️ wyśrodkowanie */
    text-align: center;
    gap: 15px;
}
.hero-info i {
    color: rgb(142, 18, 35);
}

/* DESKTOP */
@media (min-width: 768px) {

    .burger {
        display: none;
    }

    .nav-items {
        display: flex;
    }

    .hero-inner {
        flex-direction: row;
        text-align: left;
    }

    .hero-text {
        flex: 1;
    }

    .hero-img {
        flex: 1;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-info {
        flex-direction: row;
        justify-content: space-between;
        padding: 40px;
    }
}
/* BENEFITS */
.benefits {
    background-color: #ecd9bf;
    padding: 80px 0;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1f1a17;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* MOBILE */
    gap: 40px;
    counter-reset: benefit;
}

/* BOX */
.benefit {
    position: relative;
    border: 2px solid #2b2521;
    padding: 60px 30px 40px;
    text-align: center;
    background-color: transparent;
}

/* wewnętrzna ramka */
.benefit::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid #2b2521;
    pointer-events: none;
}

/* NUMER */
.benefit::before {
    counter-increment: benefit;
    content: counter(benefit, decimal-leading-zero);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) skew(-10deg);
    background-color: #c10e2e;
    color: #111;
    font-size: 22px;
    font-weight: 700;
    padding: 8px 14px;
    font-family: 'Open Sans', sans-serif;
}

/* TEXT */
.benefit p {
    margin: 0;
    padding: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #1f1a17;
}

/* BUTTON */
.benefits-btn {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
}

/* DESKTOP */
@media (min-width: 992px) {

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-title {
        font-size: 42px;
    }
}
/* PPF SECTION */
.ppf {
    background-color: #f7ead6;
    padding: 80px 0;
}

.ppf-inner {
    display: flex;
    flex-direction: column; /* MOBILE */
    gap: 40px;
}

.ppf-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: #1f1a17;
}

.ppf-text h2 span {
    color: #c10e2e;
}

.ppf-desc {
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ppf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppf-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* gwiazdka */
.ppf-list li::before {
    content: "☆";
    position: absolute;
    left: 0;
    top: 0;
    color: #c10e2e;
    font-size: 20px;
}

/* IMAGE */
.ppf-img img {
    width: 100%;
    display: block;
}

/* DESKTOP */
@media (min-width: 992px) {

    .ppf-inner {
        flex-direction: row;
        align-items: center;
    }

    .ppf-text {
        flex: 1;
    }

    .ppf-img {
        flex: 1;
    }

    .ppf-text h2 {
        font-size: 42px;
    }
}
/* POLISH SECTION */
.polish {
    background-color: #ecd9bf;
    padding: 80px 0;
}

.polish-inner {
    display: flex;
    flex-direction: column; /* MOBILE */
    gap: 40px;
}

.polish-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: #1f1a17;
}

.polish-text h2 span {
    color: #c10e2e;
}

.polish-desc {
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.polish-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.polish-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* gwiazdki */
.polish-list li::before {
    content: "☆";
    position: absolute;
    left: 0;
    top: 0;
    color: #c10e2e;
    font-size: 20px;
}

.polish-img img {
    width: 100%;
    display: block;
}

/* DESKTOP */
@media (min-width: 992px) {

    .polish-inner {
        flex-direction: row; /* obraz | tekst */
        align-items: center;
    }

    .polish-img,
    .polish-text {
        flex: 1;
    }

    .polish-text h2 {
        font-size: 42px;
    }
}
/* TEAM SECTION */
.team {
    background-color: #f7ead6;
    padding: 90px 0;
    text-align: center;
}

.team-inner {
    max-width: 700px;
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #1f1a17;
    margin-bottom: 40px;
    line-height: 1.3;
}

.team-title span {
    color: #c10e2e;
}

.team-img {
    margin-bottom: 30px;
}

.team-img img {
    max-width: 100%;
}

.team-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #1f1a17;
}

.team-btn {
    display: inline-block;
}

/* opcjonalnie lekki boost na duże ekrany */
@media (min-width: 992px) {
    .team-title {
        font-size: 42px;
    }
}
/* FOOTER */
.footer {
    background-color: #1f1a17;
    color: #f7ead6;
    padding: 60px 0 25px;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between; /* ⬅️ jedna linia */
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    margin: 0;
}

/* PARTNERZY */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f7ead6;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* KONTAKT */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact i {
    color: #c10e2e;
    min-width: 16px;
    margin-top: 3px;
}

/* DOLNY PASEK */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* MOBILE – jeśli chcesz MIMO WSZYSTKO */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }
}
