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

        :root {
            --pink: #e91e63;
            --pink-dark: #c2185b;
            --yellow: #ffc107;
            --blue: #2196f3;
            --green: #4caf50;
            --orange: #ff9800;
            --purple: #9c27b0;
            --white: #ffffff;
            --light-bg: #fff9fb;
            --text-dark: #333333;
            --text-light: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
        }

        /* NAWIGACJA */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--pink);
            text-decoration: none;
        }

        .logo span {
            color: var(--yellow);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--pink);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--pink);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 60px;
            background: linear-gradient(135deg, #fff9fb 0%, #ffe8f0 50%, #fff3e0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(233,30,99,0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--pink);
            text-shadow: 2px 2px 0 var(--yellow);
        }

        .hero h1 span {
            color: var(--yellow);
            text-shadow: 2px 2px 0 var(--pink);
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--pink);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(233,30,99,0.3);
        }

        .btn:hover {
            background: var(--pink-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233,30,99,0.4);
        }

        .btn-secondary {
            background: var(--yellow);
            color: var(--text-dark);
            margin-left: 1rem;
            box-shadow: 0 4px 15px rgba(255,193,7,0.3);
        }

        .btn-secondary:hover {
            background: #ffb300;
            box-shadow: 0 8px 25px rgba(255,193,7,0.4);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* SEKCJE */
        section {
            padding: 80px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--pink);
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* O NAS */
        .about {
            background: var(--white);
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1rem;
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 15px;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .feature h4 {
            color: var(--pink);
            margin-bottom: 0.3rem;
        }

        .feature p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* OFERTA */
        .offer {
            background: linear-gradient(135deg, #fff9fb 0%, #e8f5e9 100%);
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .offer-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .offer-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .offer-card-content {
            padding: 1.5rem;
        }

        .offer-card h3 {
            color: var(--pink);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .offer-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .offer-card-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: var(--yellow);
            color: var(--text-dark);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 1rem;
        }


		/* Główne tło modala (ukryte domyślnie) */
		.modal {
			display: none; 
			position: fixed; 
			z-index: 10000; /* Bardzo wysoki zindex */
			left: 0;
			top: 0;
			width: 100%; 
			height: 100%; 
			overflow: auto; /* Włącza przewijanie jeśli opis jest długi na telefonie */
			background-color: rgba(0,0,0,0.85); 
			align-items: center;
			justify-content: center;
			padding: 20px;
		}

		/* Białe pudełko wewnątrz modala */
		.modal-content {
			background-color: white;
			margin: auto;
			padding: 20px;
			border: 1px solid #888;
			width: 90%;
			max-width: 800px; /* Maksymalna szerokość na komputerze */
			border-radius: 15px;
			position: relative;
			box-shadow: 0 4px 20px rgba(0,0,0,0.5);
		}

		/* Przycisk zamknięcia (X) */
		.close-modal {
			color: #aaaaaa;
			position: absolute;
			top: 10px;
			right: 20px;
			font-size: 30px;
			font-weight: bold;
			cursor: pointer;
		}

		.close-modal:hover {
			color: #ff6b6b;
		}

		/* Układ wewnątrz modala oferty - opis pod zdjęciem */
		.modal-body {
			display: flex;
			flex-direction: column; /* To sprawia, że opis jest POD zdjęciem */
			gap: 20px;
			margin-top: 20px;
		}

		.offer-image-container {
			position: relative;
			width: 100%;
			max-width: 500px; /* Możesz dostosować szerokość zdjęcia */
			margin: 0 auto;   /* Wyśrodkowanie zdjęcia */
		}

		#offerModalTitle {
			color: #ff6b6b;
			margin-top: 0;
		}

		#offerModalImg {
			width: 100%;
			height: auto;
			display: block;
			border-radius: 10px;
		}

		/* Przyciski na zdjęciu */
		.offer-nav-btn {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			background: rgba(233, 30, 99, 0.8);
			color: white;
			border: none;
			width: 45px;
			height: 45px;
			border-radius: 50%;
			cursor: pointer;
			font-size: 24px;
			z-index: 10;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: 0.3s;
		}

		.offer-nav-btn:hover { background: #c2185b; }
		.offer-prev { left: -22px; } /* Lekko wystają poza zdjęcie dla lepszej widoczności */
		.offer-next { right: -22px; }

		.offer-nav-btn.hidden { display: none; }







        /* GALERIA */
        .gallery {
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(233,30,99,0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* DLACZEGO MY */
        .why-us {
            background: linear-gradient(135deg, #e3f2fd 0%, #fff9fb 100%);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .why-card {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .why-card:nth-child(1) .why-icon { background: rgba(233,30,99,0.1); }
        .why-card:nth-child(2) .why-icon { background: rgba(33,150,243,0.1); }
        .why-card:nth-child(3) .why-icon { background: rgba(76,175,80,0.1); }
        .why-card:nth-child(4) .why-icon { background: rgba(255,152,0,0.1); }

        .why-card h3 {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .why-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }
		
		
		.gallery-item {
			cursor: pointer;
		}

		.gallery-item img {
			transition: transform 0.3s ease;
		}

		.gallery-item:hover img {
			transform: scale(1.05); /* Delikatne powiększenie przy najechaniu myszką */
		}
		
		

        /* KONTAKT */
        .contact {
            background: var(--white);
        }

        .contact-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info h3 {
            color: var(--pink);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-item-text h4 {
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .contact-item-text p,
        .contact-item-text a {
            color: var(--text-light);
            text-decoration: none;
        }

        .contact-item-text a:hover {
            color: var(--pink);
        }

        .contact-map {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: none;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--pink-dark);
            transform: translateY(-3px);
        }

        /* FOOTER */
        footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 2rem 5%;
        }

        footer p {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        footer a {
            color: var(--yellow);
            text-decoration: none;
        }

        /* MOBILE MENU */
        .nav-links.active {
            display: flex;
        }

        /* RESPONSYWNOŚĆ */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1rem 5%;
                gap: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-secondary {
                margin-left: 0;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }