/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 31 2026 | 18:50:02 */
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        .hero-section {
            min-height: 100vh;
            max-width: 1920px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 80px;
            position: relative;
            background: linear-gradient(135deg, #faf8f9 0%, #f5f0f3 100%);
        }

        /* TUTAJ DODAJ TŁO - zamień 'none' na url('sciezka-do-twojego-tla.jpg') */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: none;
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            z-index: 1;
            padding-right: 40px;
        }

        .hero-title {
            font-family: 'Square Peg', cursive;
            font-size: 120px;
            line-height: 1.1;
            color: #8b6b9e;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease;
            max-width: 300px;
        }

        /* TUTAJ DODAJ URL PRZYCISKU - zamień 'none' na url('sciezka-do-przycisku.png') */
        .cta-button {
            width: 280px;
            height: 70px;
            background-image: url('https://21w.pl/wp-content/uploads/2026/01/przycisk-zapytaj-o-oferte-cta.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            max-width: 700px;
        }

        .wreath-container {
            position: relative;
            width: 600px;
            height: 600px;
        }

        .wreath-frame {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .couple-photo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 360px;
            height: 360px;
            border-radius: 50%;
            object-fit: cover;
            /* TUTAJ DODAJ ZDJĘCIE PARY - zamień 'none' na url('sciezka-do-zdjecia-pary.jpg') */
            background-image: none;
            background-size: cover;
            background-position: center;
            background-color: #f0f0f0;
            box-shadow: 0 10px 40px rgba(139, 107, 158, 0.15);
        }

        /* Responsywność */
        @media screen and (max-width: 1400px) {
            .hero-section {
                padding: 60px 60px;
            }

            .hero-title {
                font-size: 100px;
            }

            .wreath-container {
                width: 500px;
                height: 500px;
            }

            .couple-photo {
                width: 300px;
                height: 300px;
            }
        }

        @media screen and (max-width: 1024px) {
            .hero-section {
                flex-direction: column;
                padding: 60px 40px;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 60px;
                max-width: 100%;
            }

            .hero-title {
                font-size: 90px;
            }

            .hero-description {
                font-size: 16px;
            }

            .wreath-container {
                width: 450px;
                height: 450px;
            }

            .couple-photo {
                width: 270px;
                height: 270px;
            }
        }

        @media screen and (max-width: 768px) {
            .hero-section {
                padding: 40px 30px;
            }

            .hero-title {
                font-size: 70px;
            }

            .hero-description {
                font-size: 15px;
                margin-bottom: 30px;
            }

            .cta-button {
                width: 240px;
                height: 60px;
            }

            .wreath-container {
                width: 380px;
                height: 380px;
            }

            .couple-photo {
                width: 230px;
                height: 230px;
            }
        }

        @media screen and (max-width: 480px) {
            .hero-section {
                padding: 30px 20px;
            }

            .hero-title {
                font-size: 50px;
            }

            .hero-description {
                font-size: 14px;
            }

            .cta-button {
                width: 200px;
                height: 50px;
            }

            .wreath-container {
                width: 300px;
                height: 300px;
            }

            .couple-photo {
                width: 180px;
                height: 180px;
            }
        }
    </style>/* Dodaj tutaj swój kod CSS.

Na przykład:
.example {
    color: red;
}

Aby odświeżyć swoją wiedzę na temat CSS, sprawdź http://www.w3schools.com/css/css_syntax.asp

Koniec komentarza */ 

