body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    padding-top: 70px;
    scroll-behavior: smooth;

    background:
        linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95)),
        url('images/jungle-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1200px;   /* 🔥 KLUCZ */
    left: 50%;
    transform: translateX(-50%);

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;  /* 🔥 mniej paddingu */
    z-index: 1000;
}


.navbar h2 {
    color: #2FAF89; /* 🔥 luxury green */
}

/* NAV */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85)),
        url('images/jungle-bg.jpg') center/cover;
}

.overlay {
    padding: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 16px;
    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    max-width: 800px;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
}

/* BUTTON */
.btn {
    background: linear-gradient(135deg, #2FAF89, #4CE0B3);
    padding: 16px 32px;
    border-radius: 40px;
    color: #04251C;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
}

.btn:hover {
    transform: scale(1.05);
}

/* SPACING FIX */
.badges {
    margin-top: 40px;
}

.badges span {
    margin: 10px;
    color: #4CE0B3;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: auto;
}

.dark {
    background: rgba(10,30,20,0.8);
}

/* GRID */
.grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: rgba(20,40,30,0.8);
    padding: 25px;
    border-radius: 12px;
}

/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 🔥 PODZIAŁ NA PÓŁ */
    gap: 60px;
    align-items: center;
}


.about-img img {
    width: 320px;
    border-radius: 14px;
}

.highlight {
    color: #4CE0B3;
    font-style: italic;
}

/* REVIEWS */
.reviews {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}




.reviews img {
    width: 100%;
    max-width: 320px;   /* 🔥 KLUCZ – wraca ładny rozmiar */
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;     /* 🔥 wyśrodkowanie */
}

/* Hover efekt */
.reviews img:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}



.reviews-text {
    margin-top: 20px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 100px 20px;
}

/* ANIMATION */
.fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px){
    .hamburger { display:block; }

    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background: black;
        flex-direction: column;
        display: none;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }
}

.about-img img {
    width: 320px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}


@media(max-width: 768px) {

    .about {
        grid-template-columns: 1fr; /* 🔥 wraca do 1 kolumny */
        text-align: center;
    }

    .about-img {
        display: flex;
        justify-content: center;
    }
}

