@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    overflow-x: clip;
    color: white;
    padding-top: 100px;
    background: radial-gradient(circle at 50% 20%, #1e2330, #080a0f 60%);
}

/*Tutaj mamy kafelki z usługami w HOME*/
.services-section {
    padding: 60px 20px;
    text-align: center;
}
.services-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}
.services-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.service-card {
    background: #fff;
    color: black;
    border-radius: 12px;
    overflow: hidden;
    max-width: 420px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card h3 {
    font-weight: bold;
    font-size: 25px;
    margin: 15px 0 10px;
}
.service-card p {
    padding: 0 15px;
    font-size: 15px;
    color: #555;
}
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}
.btn:hover {
    background: #444;
}
/**/


/*Tutaj mamy kafelki z opiniami w HOME*/
.reviews-section {
    padding: 80px 10%;
    background: #020b1a;
    color: #fff;
    text-align: center;
}

.reviews-header h2 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
}

.reviews-header p {
    font-size: 1.8rem;
    color: #c7d6e5;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(173, 216, 230, 0.3);
    border-radius: 50px;
    padding: 1.2rem 2.4rem;
    margin-bottom: 4rem;
}

.reviews-summary .rating {
    font-size: 2.8rem;
    font-weight: 700;
    color: #b7dcf4;
}

.stars {
    font-size: 2rem;
    letter-spacing: 2px;
    color: #ffd35a;
}

.reviews-summary .source {
    font-size: 1.5rem;
    color: #dbe8f3;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.review-card {
    background: #fff;
    color: #111;
    width: 340px;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

.review-card .stars {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.review-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
}

.review-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.review-card span {
    font-size: 1.4rem;
    color: #6b7280;
}

.reviews-button {
    margin-top: 4rem;
}
/**/


/*Tutaj mamy kafelki z cennikiem*/
.pricing-section {
    padding: 80px 20px;
    text-align: center;
}

.pricing-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #fff;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #f8f8f8;
    color: #000;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 460px;
    min-height: 260px;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.pricing-card h3 {
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 18px;
    font-weight: 700;
}

.pricing-card h3 span {
    display: block;
}

.price {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.btn-outline {
    border: 2px solid #a9d8ec;
    color: #a9d8ec;
    background: transparent;
}

.btn-outline:hover {
    background: #a9d8ec;
    color: #0b1020;
}

.pricing-card-featured {
    transform: scale(1.02);
}
/**/


/*Tutaj mamy galerię*/
.gallery-section {
    padding: 90px 20px;
    background: linear-gradient(90deg, #000814 0%, #071a33 50%, #000814 100%);
    color: #fff;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.gallery-header h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.gallery-header p {
    font-size: 18px;
    color: #b9c7d6;
    margin: 0;
}

.gallery-grid {
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    background: #111;
    min-height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.02));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px 20px;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(2px);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px 20px;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.lightbox-caption {
    margin-top: 18px;
    color: #fff;
    font-size: 18px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.22);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}
/**/


/*Tutaj mamy CTA do rezerwacji*/
.cta-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #020b1a, #041a2f);
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* delikatna poświata */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(173,216,230,0.08) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content p {
    font-size: 2rem;
    color: #b7dcf4;
    margin-bottom: 3rem;
}

/* opcjonalny efekt dla przycisku */
.cta-content .btn {
    font-size: 1.6rem;
    padding: 12px 28px;
}
/**/


.hero {
    width: 100%;
    height: 100vh;

    background-image: url('img/main.svg');
    background-repeat: no-repeat;
    background-size: cover;      /* 🔥 kluczowa zmiana */
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    position: relative;
    overflow: hidden;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Zmniejsz, jeśli za ciemne */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


/* LEWA, PRAWA STRONA */
.split-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    color: black;
}
/* LEWA STRONA (obraz) */
.split-left {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 klucz */
    display: block;
}
/* PRAWA STRONA */
.split-right {
    width: 50%;
    background: #f5f7ff;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.content {
    max-width: 500px;
}
.content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.content li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}
.content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: blue;
}
/**/


/*Tutaj mamy kroki umawiania kina*/
.steps-timeline-section {
    padding: 110px 20px;
    background:
        radial-gradient(circle at center, rgba(120, 180, 255, 0.08), transparent 35%),
        linear-gradient(90deg, #020816 0%, #081224 50%, #020816 100%);
    color: #fff;
    overflow: hidden;
}

.steps-timeline-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.steps-timeline-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1px solid rgba(173, 216, 230, 0.35);
    border-radius: 999px;
    color: #a9d8ec;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.steps-timeline-header h2 {
    margin: 0 0 18px;
    font-size: clamp(3.2rem, 5vw, 6rem);
    line-height: 1.08;
}

.steps-timeline-header p {
    margin: 0 auto;
    max-width: 760px;
    color: #bfd0e3;
    font-size: 1.9rem;
    line-height: 1.7;
}

.steps-timeline {
    position: relative;
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-top: 40px;
    transition: transform 0.3s ease;
}

.steps-line {
    position: absolute;
    top: 55px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(169, 216, 236, 0.05),
        rgba(169, 216, 236, 0.8),
        rgba(169, 216, 236, 0.05)
    );
    box-shadow: 0 0 14px rgba(169, 216, 236, 0.25);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
}
.timeline-step:hover {
    transform: translateY(-6px);
}
.timeline-step::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 50%;
    width: 120px;
    height: 2px;
    transform: translateX(-50%);
    background: rgba(169, 216, 236, 0.15);
    transition: 0.3s ease;
    z-index: -1;
}
.timeline-step:hover::before {
    background: linear-gradient(
        90deg,
        transparent,
        #a9d8ec,
        transparent
    );
    background-size: 200% 100%;
    animation: flow 1.5s linear infinite;
}


.timeline-step:hover .timeline-dot {
    background: #fff;
    box-shadow:
        0 0 0 10px rgba(169, 216, 236, 0.12),
        0 0 25px rgba(169, 216, 236, 0.9);
}
.timeline-number {
    transition: 0.3s ease;
}

.timeline-step:hover .timeline-number {
    color: rgba(169, 216, 236, 0.35);
    text-shadow: 0 0 20px rgba(169, 216, 236, 0.3);
}
.timeline-dot {
    width: 18px;
    height: 18px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #a9d8ec;
    box-shadow:
        0 0 0 8px rgba(169, 216, 236, 0.08),
        0 0 18px rgba(169, 216, 236, 0.45);
}
.timeline-number {
    font-size: 7rem;
    line-height: 1;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.09);
    margin-bottom: 16px;
}
.timeline-step h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
}
.timeline-step p {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.7;
    color: #c8d5e4;
    max-width: 320px;
    margin-inline: auto;
}
/**/


/*Sekcja kontaktowa*/
.contact {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top left, rgba(87, 160, 255, 0.10), transparent 30%),
        linear-gradient(90deg, #020816 0%, #081224 50%, #020816 100%);
    color: #fff;
}

.contact .container {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: start;
}

/* LEWA STRONA */
.about__column {
    position: relative;
}

.about__text {
    padding: 42px 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(169, 216, 236, 0.14);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.about__title {
    margin: 0 0 24px;
    font-size: clamp(3.2rem, 4vw, 5rem);
    line-height: 1.08;
    font-weight: 700;
    color: #fff;
}

.about__subtitle {
    margin: 0 0 14px;
    font-size: 2rem;
    font-weight: 500;
    color: #d9e7f2;
    line-height: 1.5;
}

.about__subtitle:last-child {
    margin-bottom: 0;
}

/* PRAWA STRONA */
.services__proposal {
    padding: 42px 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(169, 216, 236, 0.16);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.24),
        0 0 30px rgba(87, 160, 255, 0.05);
    backdrop-filter: blur(12px);
}

.proposal__title {
    margin: 0 0 28px;
    font-size: 3rem;
    line-height: 1.15;
    color: #fff;
}

/* FORMULARZ */
.services__form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label,
.services__form > label {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #c8d5e4;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(169, 216, 236, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.6rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-control:focus {
    border-color: rgba(169, 216, 236, 0.6);
    box-shadow: 0 0 0 4px rgba(169, 216, 236, 0.10);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* checkbox */
.services__form input[type="checkbox"] {
    accent-color: lightblue;
    transform: translateY(1px);
    margin-right: 10px;
}

.services__form > label {
    display: block;
}

/* reCAPTCHA */
.g-recaptcha {
    margin-top: 8px;
}

/* błąd / sukces */
.error {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 82, 82, 0.12);
    border: 1px solid rgba(255, 82, 82, 0.28);
    color: #ffd3d3;
    font-size: 1.45rem;
}

.services__proposal h1 {
    margin: 0;
    font-size: 3rem;
    color: #fff;
}

/* przycisk */
.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    margin-top: 8px;
    padding: 15px 28px;
    border: 1px solid #a9d8ec;
    border-radius: 999px;
    background: transparent;
    color: #a9d8ec;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn--primary:hover {
    background: #a9d8ec;
    color: #081224;
    box-shadow: 0 0 24px rgba(169, 216, 236, 0.22);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact .container {
        grid-template-columns: 1fr;
    }

    .about__text,
    .services__proposal {
        padding: 32px 24px;
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 70px 16px;
    }

    .about__title {
        font-size: 3rem;
    }

    .about__subtitle {
        font-size: 1.75rem;
    }

    .proposal__title {
        font-size: 2.4rem;
    }

    .form-control {
        font-size: 1.55rem;
        padding: 14px 16px;
    }

    .btn--primary {
        width: 100%;
        min-width: 0;
    }
}
/**/


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 1rem 9%;
    background: rgba(0, 0, 0, 0.5); /* Zmniejsz, jeśli za ciemne */
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/* Stopka */
        .footer {
            background: rgba(0, 0, 0, 0.5);
    padding: 40px 8%;
    color: #d5d5d5;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 60px;
    margin-bottom: 10px;
    filter: brightness(1.2);
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    font-size: 1.4rem;
    color: #d5d5d5;
    transition: 0.2s;
}

.footer-socials a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 1.0rem;
    line-height: 1.4;
    opacity: 0.7;
}

.logo{
    font-size: 3rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}
.logo img {
            height: 100px;
            /* ZMIANA HEADERA PO SCROLLOWANIU (opcjonalne) */
        .scrolled {
        background: rgba(0, 0, 0, 0.8); /* Ciemne, półprzezroczyste */
        backdrop-filter: blur(10px); /* Efekt szkła */
        }
        }

.logo:hover{
    transform: scale(1.1);
}

/*HEADER*/
nav {
    display: flex;
    align-items: center;
}

nav a {
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
}

nav a:hover,
nav a.active {
    color: lightblue;
    border-bottom: 3px solid lightblue;
}
.nav-item {
    position: relative;
}

/* dropdown box */
.dropdown {
    position: absolute;
    top: 120%;
    left: 4rem; /* align z margin-left */

    background: #0b1020;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 100;
}

/* linki w dropdownie */
.dropdown a {
    display: block;
    margin: 0; /* 🔥 ważne – usuwa margin-left */
    padding: 10px 20px;
    font-size: 1.4rem;

    border-bottom: none; /* 🔥 usuwa underline z głównego nav */
}

/* hover w dropdownie */
.dropdown a:hover {
    color: lightblue;
    background: rgba(255,255,255,0.05);
}

/* pokazanie menu */
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-item > a::after {
    content: " ▼";
    font-size: 0.7em;
}

@media(max-width:995px){
    .hero {
        background-image: url('img/mainmobilki.svg');
    }
    .split-section {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        width: 100%;
    }

    .split-left {
        height: 300px;
    }
    .pricing-section h2 {
        font-size: 32px;
    }

    .pricing-card {
        padding: 32px 22px;
    }

    .pricing-card h3 {
        font-size: 24px;
    }

    .pricing-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid lightblue;
        border-bottom: 3px solid lightblue;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
    }

    nav.active{
        display: block;
    }

    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active{
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #b74b4b;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }

    .dropdown a {
        padding-left: 2rem;
    }
}
/* Ukrycie hamburgera na dużych ekranach */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2.4rem;
    color: white;
}

/* Panel menu w wersji mobilnej */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px; /* schowane poza ekranem */
    width: 250px;
    height: 100vh;
    background: rgba(20, 20, 40, 0.98);
    display: flex;
    flex-direction: column;
    padding-top: 6rem;
    padding-left: 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.mobile-menu.open {
    right: 0;
}

/* Linki w panelu mobilnym */
.mobile-menu a {
    font-size: 1.8rem;
    margin: 0;
}

/* Przyciemnienie tła */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 900;
}

.menu-overlay.show {
    display: block;
}

/* Mobilny widok */
@media (max-width: 1200px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 24px;
    }

    .steps-line {
        display: none;
    }
}
@media (max-width: 768px) {
    .steps-timeline-section {
        padding: 80px 16px;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 0;
    }

    .timeline-dot {
        margin-bottom: 18px;
    }

    .timeline-number {
        font-size: 5rem;
    }

    .timeline-step h3 {
        font-size: 1.8rem;
    }

    .timeline-step p {
        font-size: 1.6rem;
    }
}
@media (max-width: 900px) {

    nav { display: none; } /* ukryj zwykłe menu */

    .menu-toggle {
        display: block; 
        position: absolute;
        right: 2rem;
        font-size: 3rem;
        color: white;
        z-index: 1100;
    }

    .hamburger { display: block; }
    .close { display: none; }
}

/*///////////////////////////////////////////////////////////////////////*/

.number-img {
    max-width: 80px;  /* or use 50% if you prefer relative sizing */
  height: auto;
  display: block;
}

/*Stylizacja dla kolumn i wierszy*/
.about__column {
  display: flex;
  flex-direction: column;
  align-items: center;      /* vertically center text next to image */
  justify-content: center;  /* center the whole row in the container */
  gap: 2rem;                /* space between image and text */
  margin-bottom: 2rem;
}
.about__row {
  display: flex;
  align-items: center;      /* vertically center text next to image */
  justify-content: center;  /* center the whole row in the container */
  gap: 2rem;                /* space between image and text */
  margin-bottom: 2rem;
}
.about__text {
  display: flex;
  flex-direction: column;   /* h2 nad p */
  max-width: 800px;
  font-size: 2rem;
  text-align: center;
}
  .about__benefits {
    list-style: disc inside;
    margin: 1rem 0 2rem;
    line-height: 1.6;
    font-size:large;
  }
/*//////////////////////////////////////////////////////////////////////////////*/

  /* --- Formularz propozycji --- */
  .services__proposal {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .proposal__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .services__form {
    display: grid;
    gap: 1rem;
    text-align: left;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
  }

/*karuzela IMG*/
.carousel{
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

.carousel-track{
    display: flex;
    transition: transform .4s ease;
}

.slide{
    min-width: 100%;
}

.slide img{
    width: 100%;
    height: auto;
    display: block;
}

/* Strzałki */
.carousel-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,.4);
    padding: 10px 14px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    border-radius: 50%;
    z-index: 2;
}

.carousel-btn:hover{
    background: rgba(0,0,0,.7);
}

.carousel-btn.prev{ left: 10px; }
.carousel-btn.next{ right: 10px; }

/* Kropeczki */
.carousel-dots{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.dot.active{
    background: #fff;
    transform: scale(1.2);
}

/* Na telefonach – mniejszy cień, pełna szerokość */
@media (max-width: 600px){
    .carousel{
        max-width: 100%;
        border-radius: 0;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////*/

.naglowek{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.content{
    justify-content: center;
    align-items: center;
    gap: 8rem;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color: lightblue;
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p{
    font-size: 1.6rem;
}

.home-img {
    position: relative;
    width: 40vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* domyślnie pierwszy na lewo */
    gap: 20px; /* odstęp między obrazkami */
}

/* Wspólne style obrazków */
.home-img img {
    width: 100%;
    box-shadow: 0 0 25px #b74b4b;
    transition: 0.2s linear;
}

/* Górny obrazek – lekko w lewo */
.home-img .img-top-left {
    align-self: flex-start;
    transform: translateX(-20px);
}

/* Dolny obrazek – lekko w prawo */
.home-img .img-bottom-right {
    align-self: flex-end;
    transform: translateX(20px);
}

.home-img img:hover {
    transform: scale(1.05);
}


.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid lightblue;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: lightblue;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: lightblue;
    box-shadow: 0  0 25px lightblue;
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: transparent;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: lightblue;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid lightblue;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover{
    transform: scale3d(1.03);
    background-color: lightblue;
    color: black;
    box-shadow: 0 0 25px lightblue;
}

.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
    overflow: hidden;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "usługi";
    color: lightblue;
    animation: words 10s infinite;
}

.typing-text span::after{
    content: "";
    background-color: transparent;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    right: -8;
}


@keyframes words{
    0%, 25%{
        content: "Koncerty";
    }
    31%, 50%{
        content: "Kino plenerowe";
    }
    51%, 75%{
        content: "Spektakle profilaktyczne";
    }
    81%, 100%{
        content: "Spektakle teatralne dla szkół";
    }
}

@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width:995px){
    .home{
        flex-direction: column;
        width: 100%;
    }

     /* Zmiana kolejności */
    .home-img {
        order: 2; /* przenosi obrazek na dół */
    }

    .home-content {
        order: 1; /* treść idzie na górę */
    }

    .carousel{
        order: 2; /* treść idzie na górę */
    }

    .home .home-content h3{
        font-size: 2rem;
        width: 70vw;
    }

    .home .home-content h1{
        font-size: 4rem;
        width: 70vw;
    }

    .home-img {
        width: 100%;            /* << tu jest klucz */
        align-items: center;    /* wycentruje zawartość */
    }

    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about__row {
              flex-direction: column;  /* obrazek nad tekstem */
              align-items: center;    /* wyrównaj tekst do środka */
              gap: 1rem;
            }
}