*

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.site-header {
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;
    background-color: #c6b7e2;
    position: sticky;      
    top: 0;                
    z-index: 999; 
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px; /* większy odstęp między linkami i menu */
}

.header-btn {
    text-decoration: none; /* usuwa podkreślenie */
    color: #000; /* czarny */
    font-weight: 600;
    font-family: 'Dancing Script', cursive; /* czcionka */
    font-size: 28px; /* większe litery */
    padding: 5px 10px;
    transition: background 0.2s;
}

.header-btn:hover {
    background-color: rgba(0,0,0,0.05); /* delikatny efekt hover */
    border-radius: 6px;
}

.header-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 10px;
}

.header-menu span {
    display: block;
    width: 30px;   
    height: 4px; 
    background-color: #000; 
}

.split-right {
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

.logo span {
    font-family: 'Dancing Script', cursive;
    font-size: 48px;
    color: black;
}

.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #111;
}

.hero {
    padding: 100px 40px;
    text-align: center;
}

.site-footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #eee;
    margin-top: 80px;
}


.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;

}

.snap-section {
    height: 100vh;
    scroll-snap-align: start;

    display: flex;
    align-items: flex-start;
    justify-content: center;
	padding-top: 40px;

    color: white;
    font-size: 48px;
}

.section-home {
    display: flex;
    background-color: #1e2a78;
    align-items: flex-start; /* klucz: trzyma całość u góry */
}


.home-split {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 120px;
    box-sizing: border-box;
}

.home-center-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px; /* wyrównanie z sliderami */
    flex: 0 0 200px; /* stała szerokość środka */
}

.home-center-logo img {
    width: 300px;   /* możesz zmienić */
    height: auto;
    object-fit: contain;
}


.split-left,
.split-right {
    width: 662px;
    display: flex;
    flex-direction: column;

    justify-content: flex-start; /* 🔥 TO NAPRAWIA ŚRODEK */
    align-items: center;
}

.promo-slider {
    position: relative;
    width: 662px;
    height: 222px;
    background-color: #3c5195;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.promo-slider {
    position: relative;
    width: 662px;
    height: 222px;
    background-color: #3c5195;
    border-radius: 25px;
    overflow: hidden;

    box-shadow: 0 12px 28px rgba(0,0,0,0.65);
}

/* zdjęcia */
.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

/* LINK (klikalna warstwa) */
.slides a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;          /* 🔥 najważniejsze */
    cursor: pointer;
}

/* obraz */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

/* kropki */
.dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3; /* żeby były nad wszystkim */
}

.dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #fff;
}

/* strzałki */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    font-size: 28px;
    color: white;

    background: rgba(0,0,0,0.3);
    padding: 8px 12px;
    border-radius: 50%;

    cursor: pointer;

    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;

    z-index: 4;
}

/* lewa */
.arrow.left {
    left: 10px;
}

/* prawa */
.arrow.right {
    right: 10px;
}

/* pojawiają się na hover */
.promo-slider:hover .arrow {
    opacity: 1;
}

/* lekki efekt hover */
.arrow:hover {
    background: rgba(0,0,0,0.6);
}



.section-shop {
    background-image: url("../img/shop-bg.jpg");
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.section-handmade {
    background-color: #4b1d63;
}
.section-3d {
    background-color: #2f6b5f;
}

.section-about {
    background-color: #111;
    scroll-snap-align: start;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px;
    box-sizing: border-box;
}
.about-wrapper {
    width: 60%;
    max-width: 900px;
    color: #fff;
}
.about-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    font-family: Lilita+One;
}
.about-content {
    max-height: 70vh;
    overflow-y: auto;
    text-align: justify;
    line-height: 1.7;
    font-size: 24px;
    padding-right: 16px;
    scrollbar-width: thin;
}
.about-content::-webkit-scrollbar {
    width: 8px;
}
.about-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}


@media (max-width: 768px) {
    .section-about {
    padding: 40px 0;
    }
    .about-wrapper {
        width: 90%;  
    }
    .about-title {
        font-size: 52px;
        margin-bottom: 40px;
        text-align: center;
    }
    .about-content {
        font-size: 24px;
        line-height: 1.8;
        max-height: 65vh;
        padding-right: 10px;
        margin-top: 36px;
    }

}