/* --- ZMIENNE CSS --- */
:root {
    --bg-color: #FAF8F5; /* Złamana biel / kość słoniowa */
    --bg-secondary: #FFFFFF;
    --bg-dark: #2A2A2A;
    --text-main: #333333; 
    --text-light: #777777;
    --accent-color: #D4A373; /* Zgaszone złoto / brzoskwinia */
    --line-color: #E8E2D9;
}

/* --- BAZA --- */
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-weight: 300;
}

h1, h2, h3, h4, h5, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-top: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- DEKORACJE --- */
.deco-line {
    width: 1px;
    height: 80px;
    background-color: var(--accent-color);
    margin: 0 auto 30px auto;
    opacity: 0.6;
}
.deco-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    margin: 0 auto;
}
.section-padding { padding: 120px 20px; }
.section-padding-small { padding: 60px 20px; }
.container { max-width: 1200px; margin: 0 auto; position: relative; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}
.section-header h2 { font-size: 3rem; color: var(--text-main); }

.btn-solid, .btn-outline {
    display: inline-block;
    padding: 15px 45px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--text-main);
}
.btn-solid {
    background-color: var(--text-main);
    color: white;
}
.btn-solid:hover {
    background-color: transparent;
    color: var(--text-main);
}
.btn-outline {
    background-color: transparent;
    color: var(--text-main);
}
.btn-outline:hover {
    background-color: var(--text-main);
    color: white;
}

/* --- NAWIGACJA --- */
header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--line-color);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; letter-spacing: 2px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-color); }

/* --- HERO --- */
.hero {
    padding-top: 180px;
    text-align: center;
    background-color: var(--bg-secondary);
}
.hero-subpage {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--line-color);
}
.hero h1, .hero-subpage h1 { font-size: 4.5rem; letter-spacing: 2px; line-height: 1.1; margin-bottom: 20px; }
.hero-subpage h1 { font-size: 3.5rem; }
.hero p, .hero-subpage p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; color: var(--text-light); }
.hero-image-wrapper {
    margin: 60px auto 0;
    width: 350px;
    height: 480px;
    border-radius: 175px 175px 0 0; 
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* --- O MNIE (STORY) --- */
.about-section { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.about-images {
    flex: 1; min-width: 300px; position: relative; height: 600px;
}
.img-main {
    width: 80%; border-radius: 150px 150px 0 0;
    position: absolute; left: 0; bottom: 0; z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.img-accent {
    width: 50%; position: absolute; right: 0; top: 50px; z-index: 1;
    border: 10px solid var(--bg-color);
}
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { font-size: 3rem; margin-bottom: 30px; }
.about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #555; }
.signature { font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic; margin-top: 40px; color: var(--accent-color); }

/* --- DLACZEGO JA (BÓL VS ROZWIĄZANIE) --- */
.why-section { background-color: var(--bg-secondary); text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.why-item { padding: 40px; }
.why-item h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--accent-color); }
.why-item p { color: var(--text-light); }

/* --- OFERTA (PAKIETY) --- */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.package-card {
    background: var(--bg-secondary);
    padding: 60px 40px;
    border: 1px solid var(--line-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.package-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.03); border-color: var(--accent-color); }
.package-card h3 { font-size: 2rem; margin-bottom: 10px; }
.package-price { font-style: italic; color: var(--accent-color); margin-bottom: 40px; font-size: 1.1rem; }
.package-features { list-style: none; padding: 0; margin: 0 0 50px 0; text-align: left; flex-grow: 1; }
.package-features li { margin-bottom: 15px; padding-left: 25px; position: relative; font-size: 1rem; color: #555; }
.package-features li::before { content: '✧'; position: absolute; left: 0; color: var(--accent-color); font-size: 0.9rem; top: 2px; }

/* --- JAK PRACUJEMY (KROKI) --- */
.process-section { background-color: var(--bg-secondary); }
.process-steps { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-top: 60px; }
.step { flex: 1; min-width: 200px; text-align: center; position: relative; }
.step-number { 
    font-family: 'Playfair Display', serif; font-size: 4rem; 
    color: var(--bg-color); text-shadow: -1px -1px 0 var(--accent-color), 1px -1px 0 var(--accent-color), -1px 1px 0 var(--accent-color), 1px 1px 0 var(--accent-color);
    margin-bottom: -20px; opacity: 0.5;
}
.step h4 { font-size: 1.3rem; margin-bottom: 15px; }

/* --- TIMELINE --- */
.timeline-section { border-top: 1px solid var(--line-color); }
.timeline-item { display: flex; margin-bottom: 50px; position: relative; max-width: 700px; margin-left: auto; margin-right: auto; }
.timeline-item::after { content: ''; position: absolute; left: 100px; top: 40px; bottom: -50px; width: 1px; background-color: var(--line-color); }
.timeline-item:last-child::after { display: none; }
.timeline-time { width: 100px; flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--accent-color); text-align: right; padding-right: 30px; position: relative; padding-top: 5px; }
.timeline-time::after { content: ''; position: absolute; right: -4px; top: 15px; width: 7px; height: 7px; background-color: var(--bg-color); border: 1px solid var(--accent-color); border-radius: 50%; z-index: 2; }
.timeline-content { padding-left: 40px; }
.timeline-content h4 { font-size: 1.3rem; margin-bottom: 10px; letter-spacing: 1px; }

/* --- GALERIA --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { overflow: hidden; height: 350px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; height: 720px; }

/* --- OPINIE (TESTIMONIALS) --- */
.testimonials { background-color: var(--bg-dark); color: white; text-align: center; }
.testimonials .section-header h2 { color: white; }
.testimonials .subtitle { color: var(--accent-color); }
.quote { max-width: 800px; margin: 0 auto; }
.quote p { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; margin-bottom: 30px; line-height: 1.6; }
.quote span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-color); }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--line-color); padding: 30px 0; max-width: 800px; margin: 0 auto; }
.faq-item h4 { font-size: 1.3rem; margin-bottom: 10px; cursor: pointer; display: flex; justify-content: space-between; }
.faq-item p { color: var(--text-light); margin: 0; }

/* --- BLOKI INFORMACYJNE DO PODSTRON --- */
.info-block {
    background: var(--bg-secondary);
    padding: 60px;
    margin-bottom: 40px;
    border: 1px solid var(--line-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.info-block h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--accent-color); }
.info-block p { font-size: 1.1rem; color: var(--text-light); }
.info-block ul { list-style: none; padding: 0; margin-top: 30px; }
.info-block ul li { margin-bottom: 15px; padding-left: 30px; position: relative; font-size: 1.05rem; }
.info-block ul li::before { content: '✧'; position: absolute; left: 0; color: var(--accent-color); }

/* --- FOOTER / KONTAKT --- */
footer { background-color: var(--bg-secondary); padding: 100px 20px 50px; text-align: center; border-top: 1px solid var(--line-color); }
.footer-content h2 { font-size: 3rem; margin-bottom: 20px; }
.footer-content p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; }
.contact-links { margin-bottom: 60px; }
.contact-links a { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; margin-bottom: 10px; transition: color 0.3s; }
.contact-links a:hover { color: var(--accent-color); }
.copyright { font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 2px; }

/* Responsywność */
@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .about-images { height: auto; display: flex; flex-direction: column; gap: 20px; }
    .img-main, .img-accent { position: static; width: 100%; border-radius: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.tall { grid-row: span 1; height: 350px; }
    .nav-container { flex-direction: column; gap: 15px; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
    .timeline-item { flex-direction: column; }
    .timeline-item::after { left: 15px; top: 40px; }
    .timeline-time { text-align: left; padding-left: 30px; margin-bottom: 10px; }
    .timeline-time::after { left: 11px; right: auto; }
    .timeline-content { padding-left: 30px; }
    .info-block { padding: 30px 20px; }
}