@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lora-v36-latin-ext-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lora-v36-latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/lora-v36-latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/montserrat-v30-latin-ext-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/montserrat-v30-latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/montserrat-v30-latin-ext-600.woff2') format('woff2');
}

:root {
    --bg-color: #FDFBF8;
    --text-color: #434343;
    --accent-color: #D3AFA2;
    --accent-dark-color: #b79183;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    --header-height: 80px;
    --header-height-mobile: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body { font-family: var(--font-body); color: var(--text-color); background-color: var(--bg-color); line-height: 1.6; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; margin-bottom: 20px; }
h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }

main { 
    display: block; 
    padding-top: var(--header-height);
}

section { 
    width: 100%;
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    padding: 100px 5%;
    min-height: 90vh;
}

#hero { 
    padding: 0; 
    margin-top: calc(-1 * var(--header-height));
    height: 100vh;
    height: 100svh;
}
.section-content { max-width: 1200px; width: 100%; margin: 0 auto; text-align: center;}

header { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 5%; 
    background-color: rgba(253, 251, 248, 0.8); 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); 
    z-index: 1000; 
    height: var(--header-height);
}
.header-brand {
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; }
.motto {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
}
.nav-links ul { list-style: none; display: flex; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--text-color); font-size: 1rem; position: relative; padding-bottom: 5px; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--accent-color); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }

.hamburger { 
    display: none; 
    cursor: pointer; 
    background: none; 
    border: none; 
    padding: 0;
    z-index: 1001;
}
.hamburger .line { width: 25px; height: 2px; background-color: var(--text-color); margin: 5px; transition: all 0.3s ease; }

#hero { color: white; text-align: center; background-color: #2c2c2c; }
.hero-carousel { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
}
.hero-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
    pointer-events: none;
}
.hero-carousel .swiper-slide { transition: filter 0.5s ease; filter: brightness(0.9) saturate(0.9); }
.hero-carousel .swiper-slide-active { filter: brightness(1) saturate(1); }
.hero-carousel .swiper-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}
.hero-text { 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3; 
    padding: 40px 5% 60px 5%;
    box-sizing: border-box;
}
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 0px 1px 5px rgba(0,0,0,0.5); }
.icon-svg { width: 32px; height: 32px; fill: currentColor; }

/* --- TWOJE ORYGINALNE, DZIAŁAJĄCE STYLE Z POPRAWKAMI --- */
/* Te style zapewniają poprawne centrowanie kontenera */
.swiper-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    z-index: 10;
}

/* Zwiększamy specyficzność, dodając .hero-carousel, aby nadpisać domyślne style Swipera */
.hero-carousel .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0.8;
    margin: 0 5px !important;
    transition: width 0.4s ease, border-radius 0.4s ease, background-color 0.4s ease;
}

.hero-carousel .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--accent-color); /* Twój kolor boho */
    opacity: 1;
}
/* --- KONIEC POPRAWIONYCH STYLI --- */

.btn { display: inline-block; padding: 12px 30px; background-color: var(--accent-dark-color); color: white; text-decoration: none; border-radius: 5px; transition: background-color 0.3s ease; font-weight: 600; }
.btn:hover { background-color: var(--accent-color); }
.btn-outline { display: inline-block; padding: 12px 30px; border: 1px solid var(--accent-color); color: var(--accent-color); text-decoration: none; border-radius: 5px; transition: all 0.3s ease; font-weight: 600; }
.btn-outline:hover { background-color: var(--accent-color); color: white; }

.o-mnie-content { display: flex; align-items: center; gap: 50px; max-width: 1000px; width: 100%; text-align: left;}
.o-mnie-img { flex: 1; max-width: 350px; }
.o-mnie-img img { width: 100%; height: auto; max-height: 60vh; object-fit: cover; border-radius: 10px; display: block; }
.o-mnie-text { flex: 1.5; max-width: 35em; }
#o-mnie h2 { margin-bottom: 30px; }
.intro-paragraph { margin-bottom: 1.5em; }
.signature { font-family: 'Lora', serif; font-style: italic; font-size: 1.5rem; text-align: right; margin-top: 20px; color: var(--accent-color); }

.oferta-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.pakiet { background-color: var(--bg-color); border: 1px solid #eee; padding: 40px; border-radius: 10px; text-align: center; width: 320px; transition: transform 0.3s, box-shadow 0.3s; }
.pakiet:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.pakiet.polecany { border: 2px solid var(--accent-color); transform: scale(1.05); }
.pakiet h3 { font-size: 1.5rem; }
.pakiet .cena { font-size: 2.5rem; font-weight: 600; color: var(--accent-color); margin-bottom: 20px; }
.pakiet ul { list-style: none; margin-bottom: 30px; text-align: left; }
.pakiet li { margin-bottom: 10px; display: flex; align-items: center; }
.icon-check { width: 18px; height: 18px; fill: var(--accent-color); margin-right: 10px; flex-shrink: 0; }

#kontakt .section-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
#kontakt p { max-width: 600px; margin: 0 auto 30px auto; }
.kontakt-info p { font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; justify-content: center;}
.kontakt-info a { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.kontakt-info a:hover { color: var(--accent-color); }
.icon-contact { width: 22px; height: 22px; fill: var(--accent-color); margin-right: 15px; flex-shrink: 0; }
.social-media { margin-top: 40px; }
.social-media a { text-decoration: none; margin: 0 15px; }
.icon-social { width: 32px; height: 32px; fill: var(--text-color); transition: fill 0.3s; }
.social-media a:hover .icon-social { fill: var(--accent-color); }

footer {
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

a:focus-visible, button:focus-visible, [tabindex="0"]:focus-visible {
    outline: 2px solid var(--accent-dark-color);
    outline-offset: 3px;
    border-radius: 3px;
}
.nav-links a:focus-visible { outline-offset: 5px; }
.social-media a:focus-visible { border-radius: 50%; }

@media (max-width: 768px) {
    main {
        padding-top: var(--header-height-mobile);
    }
    #hero {
        margin-top: calc(-1 * var(--header-height-mobile));
    }
    header {
        height: var(--header-height-mobile);
        flex-direction: row;
        justify-content: center;
        padding: 10px 5%;
    }
    .header-brand {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .logo { font-size: 1.3rem; }
    .motto { font-size: 0.8rem; }
    .nav-links { position: fixed; right: -100%; top: 0; height: 100vh; width: 60%; background-color: var(--bg-color); box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: right 0.5s ease-in-out; }
    .nav-links.nav-active { right: 0; }
    .nav-links ul { flex-direction: column; }
    .nav-links li { margin: 20px 0; }
    .hamburger { display: block; position: absolute; top: 50%; right: 5%; transform: translateY(-50%); }
    .hero-text p { font-size: 1rem; margin-bottom: 20px; }
    .hero-text .btn { padding: 10px 24px; font-size: 0.9rem; }
    h2 { font-size: 2rem; }
    .o-mnie-content { flex-direction: column; }
    footer { position: relative; padding: 40px 5%; }
}