/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2e2e2e;
    background-color: #f0f3f1;
    line-height: 1.6;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(34, 49, 42, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar .logo {
    color: #ffffff;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 2px;
}

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

.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #a3b8a9;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(20,40,30,0.6), rgba(20,40,30,0.6)),
                url("https://images.unsplash.com/photo-1501785888041-af3ef285b470") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e6f0ea;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #6b8a7a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #4f6b5d;
}

/* SECTIONS */
.section {
    padding: 120px 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: auto;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.section p {
    font-size: 17px;
    color: #555;
}

.light {
    background-color: #f0f3f1;
}

.dark {
    background-color: #e3e9e5;
}

/* CENNIK */
.pricing {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pricing-item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 50px;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.pricing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pricing-item h3 {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #3a6658;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pricing-duration {
    font-size: 14px !important;
    font-weight: 300;
    color: #999 !important;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 36px !important;
    font-weight: 300 !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
    color: #2e2e2e !important;
    letter-spacing: 1px;
}

.pricing-note {
    font-size: 13px !important;
    font-weight: 300;
    color: #4a7a6a !important;
    margin-top: 8px;
}

/* OPINIE */
.opinie-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.opinia-item {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 360px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.opinia-gwiazdki {
    color: #4a7a6a;
    font-size: 20px;
    margin-bottom: 12px;
}

.opinia-tresc {
    font-size: 15px !important;
    color: #444 !important;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.opinia-autor {
    font-size: 13px !important;
    color: #999 !important;
}

.brak-opinii {
    color: #999 !important;
    font-style: italic;
    margin-bottom: 40px;
}

/* FORMULARZ OPINII */
.opinia-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 560px;
    margin: 40px auto 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    text-align: left;
}

.opinia-form-wrap h3 {
    font-size: 20px;
    font-weight: 300;
    color: #3a6658;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.opinia-form-wrap input[type="text"],
.opinia-form-wrap textarea {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 16px;
    background: #fafafa;
    transition: 0.2s;
}

.opinia-form-wrap input[type="text"]:focus,
.opinia-form-wrap textarea:focus {
    outline: none;
    border-color: #4a7a6a;
    background: #fff;
}

.opinia-form-wrap textarea {
    height: 160px;
    resize: vertical;
}

.gwiazdki {
    font-size: 36px;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 20px;
    letter-spacing: 6px;
    text-align: center;
}

.gwiazdki span {
    transition: color 0.15s;
}

.opinia-form-wrap .btn {
    width: 100%;
    text-align: center;
}

#opinia-status {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background-color: #22312a;
    color: #ffffff;
    font-size: 14px;
}

/* O MNIE */
.omnie-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.omnie-foto {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
    .omnie-wrap {
        flex-direction: column;
        text-align: center;
    }
}
