* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-primary: #7B2CBF;
    --purple-light: #9D4EDD;
    --purple-dark: #5A189A;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-text: #495057;
    --gray-dark: #212529;
    --text: #333;
    --bg: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    max-height: 10%;
    box-shadow: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 100%;
    max-height: -webkit-fill-available;
    margin: 0 auto;
}

#imglogo {
    width: 50%;
    margin-top: 0; /* na wszelki wypadek, żeby start był czysty */
    transition: width 0.4s ease, margin-top 0.4s ease; /* kluczowa linia! */
}
#imglogo.scrolled {
    width: 18%;
    margin-top: -5%
}

/* Menu mobilne – wysuwane z prawej */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    margin-right: 5%;
    height: -webkit-fill-available;

}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: color 0.3s;
}

.nav-menu a:hover { color: var(--pink); }

/* Po scrollu – pojawia się tło */
header.scrolled {
    background: rgb(255 255 255 / 74%);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header.scrolled .logo,
header.scrolled .nav-menu a {
    color: var(--purple-primary);
    text-shadow: none;
}

header.scrolled .hamburger span { background: var(--text); }

/* Hamburger → X z płynną animacją */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
}

/* Animacja: hamburger → X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
}
/* Gdy menu jest otwarte → krzyżyk staje się czarny */
.hamburger.active span {
    background: #333 !important;           /* czarny po kliknięciu */
}

/* Po scrollu (gdy pasek jest biały) – hamburger też czarny, nawet gdy zamknięty */
header.scrolled .hamburger span {
    background: #333;
}

/* Gdy pasek jest biały, a menu otwarte → krzyżyk zostaje czarny (już mamy !important wyżej) */
header.scrolled .hamburger.active span {
    background: #333 !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1) 0%, rgba(157, 78, 221, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
    z-index: 0;
    background-image: url('../image/cudozniebatlo.png');
    background-repeat: no-repeat;
    background-size: cover;
}

/* Delikatna nakładka przyciemniająca – dzięki temu tekst będzie zawsze czytelny */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);        /* możesz zmienić na 0.3 – jaśniej, 0.6 – ciemniej */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-light);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--purple-light);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--purple-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.cta-button:hover {
    background-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--purple-primary);
    color: var(--gray-light);
    margin-left: 1rem;
}

.cta-button-secondary:hover {
    background-color: var(--purple-primary);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

.section-title span {
    color: var(--purple-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--white);
    max-width: 1200px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Birth Records Examples */
.birth-records-examples {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.birth-record-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.birth-record-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.record-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
}

.record-preview {
    text-align: center;
}

.record-content h3 {
    color: var(--purple-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.record-content p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.record-content strong {
    color: var(--gray-dark);
    font-weight: 600;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--purple-primary);
    margin-bottom: 1rem;
}

.about-image {
    /* background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%); */
    background-image: url('../image/ramki3DOMnie.png');
    background-size: cover;        /* wypełnia cały obszar, przycinając jeśli trzeba */
    background-position: center;   /* wyśrodkowuje zdjęcie */
    background-repeat: no-repeat;
    border: solid 5px #7B2CBF;
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

/* Offer Section */
.offer {
    background-color: var(--gray-light);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    justify-self: center;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.gallery-image {
    width: 100%;
    height: 550px;
    /* background-image: url('../image/leon.jpeg'); */
    /* background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-content h3 {
    color: var(--purple-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-content p {
    color: var(--gray-text);
    line-height: 1.6;
}
.leon{
    background-image: url('../image/leon.jpeg');
    background-size: cover;        /* wypełnia cały obszar, przycinając jeśli trzeba */
    background-position: center;   /* wyśrodkowuje zdjęcie */
    background-repeat: no-repeat;
    border: solid 5px #7B2CBF;
}

.lila{
    background-image: url('../image/lila.jpeg');
    background-size: cover;        /* wypełnia cały obszar, przycinając jeśli trzeba */
    background-position: center;   /* wyśrodkowuje zdjęcie */
    background-repeat: no-repeat;
    border: solid 5px #7B2CBF;
}

.iga{
    background-image: url('../image/ramki3dzlampkami.jpeg');
    background-size: cover;        /* wypełnia cały obszar, przycinając jeśli trzeba */
    background-position: center;   /* wyśrodkowuje zdjęcie */
    background-repeat: no-repeat;
    border: solid 5px #7B2CBF;
}

#childPhotoField {
    display: none;
}
.order-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.steps-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.steps-horizontal .step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
}

.step h3 {
    color: var(--purple-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Order Form Section */
.order-form-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding: 100px 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed var(--gray-medium);
    background-color: var(--gray-light);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--purple-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.submit-button:hover {
    background-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    display: none;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Footer */
.footer-dark {
    background: #2a1c3b; /* ciemny fiolet */
    color: #fff;
    padding: 3.8rem 2rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-left p,
.footer-center p,
.footer-center a {
    margin: 0.2rem 0;
}

.footer-left a,
.footer-center a {
    color: #c69bff;
    text-decoration: none;
}

.footer-left a:hover,
.footer-center a:hover {
    text-decoration: underline;
}

.footer-left i {
    margin-right: 0.5rem;
    color: #c69bff;
    transition: transform 0.3s ease;
}

.footer-left i:hover {
    transform: scale(1.2);
    color: #fff;
}


/* Ikony prawa strona */
.footer-right {
    display: flex;
    gap: 1.2rem;
}

.footer-right a {
    color: #c69bff;
    transition: 0.3s ease;
}

.footer-right a:hover {
    transform: scale(1.15);
    color: #e4caff;
}

/* OSOBNY PASEK NA DOLE */
.footer-designer-bar {
    background: #1e112b; /* jeszcze ciemniejszy fiolet */
    color: #d7b3ff;
    text-align: center;
    padding: 0.9rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Naturalne kolory ikon FB i IG */
.footer-right a i.fa-facebook {
    color: #1877F2; /* oficjalny niebieski Facebooka */
}

.footer-right a i.fa-instagram {
    /* gradientowy efekt Instagrama */
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover (delikatne powiększenie, bez zmiany koloru) */
.footer-right a:hover i {
    transform: scale(1.2);
}

.footer-designer-bar-link {
    color: #9c43ff;
    text-decoration: none;
}

/* Responsywność */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .cta-button { padding: 0.8rem 2rem; font-size: 1rem; }
    .footer-designer-bar { font-size: 0.8rem; }
    .footer-designer-bar-link { font-size: 0.8rem; }
    .footer-right a { font-size: 0.8rem; }
    .footer-right a i { font-size: 0.8rem; }
    .footer-right a i.fa-facebook { font-size: 2rem; }
    .footer-right a i.fa-instagram { font-size: 2rem; }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Frames Section */
.frames-3d {
    background-color: var(--white);
}

.event-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* margin-bottom: 4rem; */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-types {
        grid-template-columns: repeat(1, 1fr);
    }
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .birth-record-item {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .record-image {
                height: 250px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .form-container {
                padding: 2rem 1.5rem;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
        }

        
        @media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .event-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hamburger { display: block; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.91);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        padding: 100px 20px 50px;
    }

    .nav-menu.active {
        right: 0;
        backdrop-filter: blur(1px);
        background-color: rgb(255 255 255 / 91%);
    }

    .nav-menu a {
        font-size: 1.8rem;
        color: #7b2cbf;
        margin: 1.2rem 0;
        text-shadow: none;
    }
}

.event-type-card {
    background-color: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-type-card:hover {
    border-color: var(--purple-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.event-type-card.selected {
    border-color: var(--purple-primary);
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-type-card h3 {
    color: var(--purple-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-type-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.event-select-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--purple-primary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-select-btn:hover {
    background-color: var(--purple-dark);
    transform: scale(1.05);
}

.frames-gallery {
    margin-top: 4rem;
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.frame-sample {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frame-sample:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.2);
}

.frame-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.frame-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.sample-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--purple-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.frame-sample p {
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-dark);
    font-weight: 600;
}

/* Dynamic Form Fields */
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--purple-primary);
}

.dynamic-field-group {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Polityka prywatnosci */
.privacy {
    margin-top: 120px;
}

.privacy-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section h2 {
    margin-top: 40px;
    font-size: 1.4rem;
}

.privacy-section p,
.privacy-section ul {
    line-height: 1.8;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-date {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}

/*cookies*/
/* Ikonka cookies – zawsze widoczna */
.cookie-icon-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    background: #000;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 10000;
    transition: transform 0.25s ease;
}

.cookie-icon-fixed:hover {
    transform: scale(1.1);
}

/* Banner cookies */
.cookie-banner {
    position: fixed;
    bottom: 90px;
    left: 20px;
    max-width: 360px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    font-size: 0.9rem;
    z-index: 9999;
    animation: fadeUp 0.4s ease;
}

.cookie-banner p {
    margin: 0 0 12px;
    line-height: 1.4;
}

.cookie-banner a {
    color: #7B2CBF;
    font-weight: 600;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions button {
    flex: 1;
    padding: 8px 12px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

#accept-cookies {
    background: #7B2CBF;
    color: #fff;
}

#reject-cookies {
    background: #e0e0e0;
    color: #333;
}

#reject-cookies:hover {
    background: #d5d5d5;
}

.hidden {
    display: none;
}

/* Animacja */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: unset;
    }
}

#imglogoRODO
{
    width: 10%;
    margin-top: 0;
    transition: width 0.4s ease, margin-top 0.4s ease;
}