:root {
    --bg-dark: #161013;        
    --bg-light: #22181c;       
    --pink-accent: #E58AA3;    
    --pink-hover: #f4a6bc;     
    --text-white: #ffffff;
    --text-gray: #b5b5b5;
    --border-color: rgba(229, 138, 163, 0.2); 
    --transition: all 0.4s ease-out;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Jost', sans-serif; background-color: var(--bg-dark); color: var(--text-gray); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.relative-z { position: relative; z-index: 10; }

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; font-weight: 600; }
h2.section-title { font-size: 45px; margin-bottom: 50px; color: var(--text-white); }
h2.section-title span { color: var(--pink-accent); font-style: italic; }
.text-center { text-align: center; }
.mt-2 { margin-top: 15px; }
.mt-4 { margin-top: 35px; }

.btn-primary, .btn-outline {
    display: inline-block; padding: 14px 32px; font-family: 'Jost', sans-serif; font-size: 14px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
    transition: var(--transition); cursor: pointer; border-radius: 3px;
}
.btn-primary { background-color: var(--pink-accent); color: var(--bg-dark); border: 1px solid var(--pink-accent); }
.btn-primary:hover { background-color: var(--pink-hover); border-color: var(--pink-hover); box-shadow: 0 0 20px rgba(229, 138, 163, 0.5); transform: translateY(-2px); }
.btn-outline { background-color: transparent; color: var(--pink-accent); border: 1px solid var(--pink-accent); }
.btn-outline:hover { background-color: var(--pink-accent); color: var(--bg-dark); }
.btn-large { padding: 18px 40px; font-size: 15px; }
.btn-massive { padding: 20px 50px; font-size: 18px; width: 100%; max-width: 600px; border-radius: 5px; }
.glow-effect { box-shadow: 0 0 20px rgba(229, 138, 163, 0.3); }

.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 138, 163, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(229, 138, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 138, 163, 0); }
}

.header { position: fixed; top: 0; left: 0; width: 100%; padding: 25px 0; z-index: 1000; transition: all 0.3s ease; }
.header.scrolled { padding: 15px 0; background: rgba(22, 16, 19, 0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; color: var(--text-white); text-decoration: none; letter-spacing: 3px; }
.logo span { color: var(--pink-accent); }
.nav-menu ul { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-menu a { color: var(--text-white); text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s; }
.nav-menu a:hover { color: var(--pink-accent); }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 32px; height: 3px; background-color: var(--pink-accent); transition: 0.3s; }

.hero { height: 100vh; display: flex; align-items: center; position: relative; padding: 0 5%; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(22,16,19,0.97) 0%, rgba(22,16,19,0.7) 50%, rgba(22,16,19,0.2) 100%); }
.hero-content { max-width: 650px; position: relative; z-index: 2; }
.hero-content h1 { font-size: 75px; color: var(--text-white); line-height: 1.1; margin-bottom: 25px; }
.hero-content h1 span { color: var(--pink-accent); font-style: italic; }
.hero-content p { font-size: 18px; margin-bottom: 40px; color: #e0e0e0; }

/* PASEK ZAUFANIA */
.trust-bar { background-color: var(--pink-accent); padding: 12px 0; overflow: hidden; white-space: nowrap; width: 100%; display: flex; }
.trust-content.marquee { display: inline-block; white-space: nowrap; animation: scrollInfinite 20s linear infinite; }
.trust-content span { color: var(--bg-dark); font-weight: 600; font-size: 14px; letter-spacing: 2px; padding-right: 50px; }
@keyframes scrollInfinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* O MNIE - ZMIENIONE WYMIARY ZDJĘCIA */
.about-section { padding: 120px 0; background-color: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
    filter: brightness(0.9);
    aspect-ratio: 4/5; /* Zmusza zdjęcie do idealnych pionowych proporcji */
    object-fit: cover; /* Wypełnia ramy bez deformacji */
    max-height: 600px; /* Nie pozwala zdjęciu być większym niż 600px */
}
.experience-badge { position: absolute; bottom: -30px; right: -30px; background: var(--pink-accent); color: var(--bg-dark); padding: 30px; text-align: center; border-radius: 50%; width: 160px; height: 160px; display: flex; flex-direction: column; justify-content: center; box-shadow: 0 10px 30px rgba(229, 138, 163, 0.3); }
.experience-badge span { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; line-height: 1; }

/* UDOGODNIENIA */
.amenities-section { padding: 80px 0; background-color: var(--bg-dark); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.amenities-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.amenities-box { background: rgba(22, 16, 19, 0.6); padding: 40px; border-radius: 8px; border: 1px solid var(--border-color); }
.amenities-title { font-size: 26px; color: var(--text-white); margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.amenities-title span { color: var(--pink-accent); font-style: italic; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.check-list li { position: relative; padding-left: 30px; color: #e0e0e0; font-size: 15px; }
.check-list li::before { content: '✔️'; position: absolute; left: 0; top: 0; color: var(--pink-accent); font-size: 14px; }
.icon-grid { display: flex; gap: 30px; justify-content: center; align-items: center; height: 100%; padding-bottom: 20px;}
.icon-item { text-align: center; }
.icon-circle { width: 70px; height: 70px; border-radius: 50%; background: rgba(229, 138, 163, 0.1); color: var(--pink-accent); font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; border: 1px solid var(--pink-accent); }
.icon-item span { color: var(--text-white); font-weight: 500; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* GALERIA */
.gallery-section { padding: 120px 0; background-color: var(--bg-light); }
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 15px; }
.gallery-item { border-radius: 5px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* CENNIK */
.pricing-section { padding: 120px 0; background-color: var(--bg-light); position: relative; overflow: hidden; }
.pricing-overlay-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-attachment: fixed; filter: blur(8px) brightness(0.35); transform: scale(1.1); z-index: 1; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.pricing-category { background-color: rgba(22, 16, 19, 0.92); padding: 40px; border-radius: 8px; border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.pricing-category h3 { font-size: 28px; color: var(--text-white); margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.pricing-category h3 span { color: var(--pink-accent); }
.price-list li { display: flex; justify-content: space-between; margin-bottom: 18px; font-size: 15px; color: #e0e0e0; border-bottom: 1px dashed rgba(255,255,255,0.05); padding-bottom: 8px; }
.price-list .service-price { color: var(--pink-accent); font-weight: 600; margin-left: 15px; white-space: nowrap; }
.small-info { font-size: 12px; font-style: italic; }
.cta-pricing-wrapper { margin-top: 60px; }

/* OPINIE */
.reviews-section { padding: 100px 0; background-color: var(--bg-light); position: relative; overflow: hidden; }
.slider-container { max-width: 800px; margin: 0 auto; position: relative; display: grid; align-items: center; }
.review-slide { grid-area: 1 / 1; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; padding: 20px 0 40px 0; display: flex; flex-direction: column; align-items: center; }
.review-slide.active { opacity: 1; pointer-events: auto; position: relative; z-index: 2; }
.review-text { font-size: clamp(18px, 5vw, 24px); font-family: 'Playfair Display', serif; font-style: italic; color: var(--text-white); margin-bottom: 20px; line-height: 1.4; }
.stars-pink { color: var(--pink-accent); font-size: 24px; margin-bottom: 20px; letter-spacing: 5px; }
.review-author { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
.slider-controls button { background: transparent; color: var(--pink-accent); border: 1px solid var(--pink-accent); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; margin: 0 10px; }
.slider-controls button:hover { background: var(--pink-accent); color: var(--bg-dark); }

/* BANNER CTA */
.cta-banner { padding: 120px 0; position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(22, 16, 19, 0.75); }
.cta-banner p { margin-bottom: 40px; color: #f0f0f0; }

/* KONTAKT */
.contact-mega-section { padding: 120px 0; background-color: var(--bg-dark); }
.contact-mega-grid { display: grid; grid-template-columns: 1fr 1.5fr; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.contact-details-box { background-color: var(--pink-accent); color: var(--bg-dark); padding: 40px 30px; display: flex; flex-direction: column; justify-content: center; }
.contact-details-box h3 { font-size: 26px; color: var(--bg-dark); margin-bottom: 15px; }
.contact-details-box h3 span { color: #fff; }
.address-big { font-size: 18px; font-weight: 500; color: var(--bg-dark); }
.phone-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 5px;}
.phone-number { font-size: 24px; color: var(--bg-dark); font-weight: 700; text-decoration: none; word-break: break-word; }
.phone-number:hover { color: #fff; }
.map-box { min-height: 450px; background-color: #333; }

/* =========================================
   NOWA ROZBUDOWANA STOPKA (ZAAWANSOWANA)
========================================= */
.complex-footer { 
    background-color: #0c080a; 
    padding: 80px 0 20px; 
    border-top: 1px solid var(--border-color); 
    color: var(--text-gray); 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 60px; 
    align-items: center; 
}

.footer-col h4 { 
    color: var(--text-white); 
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    margin-bottom: 20px; 
    letter-spacing: 1px; 
}

.footer-col p { 
    font-size: 14px; 
    margin-bottom: 15px; 
    line-height: 1.6; 
}

.footer-nav { 
    list-style: none; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    margin-top: 20px; 
}

.footer-nav li a { 
    color: var(--pink-accent); 
    text-decoration: none; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: color 0.3s; 
}

.footer-nav li a:hover { 
    color: var(--text-white); 
}

/* Środkowa kolumna (Logo i Sociale) z eleganckimi ramkami */
.center-col { 
    text-align: center; 
    border-left: 1px dashed rgba(229,138,163,0.2); 
    border-right: 1px dashed rgba(229,138,163,0.2); 
    padding: 0 20px; 
}

.footer-logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 32px; 
    color: var(--text-white); 
    text-decoration: none; 
    letter-spacing: 4px; 
    display: block; 
    margin-bottom: 20px; 
}

.footer-logo span { 
    color: var(--pink-accent); 
}

.footer-socials { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
}

.fs-icon { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    border: 1px solid var(--pink-accent); 
    border-radius: 50%; 
    color: var(--pink-accent); 
    text-decoration: none; 
    font-size: 13px; 
    text-transform: uppercase; 
    font-weight: 600; 
    transition: all 0.3s; 
}

.fs-icon:hover { 
    background-color: var(--pink-accent); 
    color: var(--bg-dark); 
    transform: translateY(-3px); 
}

/* Prawa kolumna (Kontakt) */
.right-col p { margin-bottom: 5px; }
.footer-phone { 
    font-size: 22px; 
    color: var(--text-white); 
    text-decoration: none; 
    font-weight: 600; 
    display: inline-block; 
    margin-top: 10px; 
    margin-bottom: 20px; 
    transition: color 0.3s;
}
.footer-phone:hover { color: var(--pink-accent); }

.footer-hours { 
    margin-top: 15px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 15px; 
    font-size: 13px; 
}
.footer-hours p { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 5px; 
}
.footer-hours span { color: var(--pink-accent); }

/* Pasek na samym dole */
.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    font-size: 12px; 
}
.footer-legal a { 
    color: var(--text-gray); 
    text-decoration: none; 
    margin-left: 15px; 
    transition: color 0.3s; 
}
.footer-legal a:hover { color: var(--pink-accent); }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* PŁYWAJĄCY PASEK BOCZNY */
.sticky-social-bar { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.sticky-icon { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; color: white; text-decoration: none; border-radius: 5px 0 0 5px; transition: all 0.3s ease; overflow: hidden; white-space: nowrap; }
.sticky-icon span { display: none; padding-left: 10px; font-weight: 600; font-size: 14px; }
.sticky-icon.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sticky-icon.booksy { background-color: #008eb4; }
.sticky-icon:hover { width: 150px; }
.sticky-icon:hover span { display: inline; }


/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .contact-mega-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .map-box { min-height: 350px; }
    
    /* Responsywność dla Nowej Stopki */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .center-col { border: none; border-top: 1px dashed rgba(229,138,163,0.2); border-bottom: 1px dashed rgba(229,138,163,0.2); padding: 40px 0; }
    .footer-nav { justify-content: center; }
    .footer-hours p { justify-content: center; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 768px) {
    .trust-content span { font-size: 11px; padding-right: 30px; }
    .container { padding: 0 15px; }
    .nav-menu { position: fixed; top: 0; left: -100%; width: 100vw; height: 100vh; background: var(--bg-dark); display: flex; align-items: center; justify-content: center; transition: 0.4s; }
    .nav-menu.active { left: 0; }
    .nav-menu ul { flex-direction: column; gap: 40px; }
    .nav-menu a { font-size: 20px; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    .hero-content h1 { font-size: 45px; }
    .about-grid { grid-template-columns: 1fr; }
    .check-list { grid-template-columns: 1fr; }
    
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 20px; }
    .gallery-item { height: auto; }
    .gallery-item img { width: 100%; height: auto; object-fit: contain; border-radius: 8px; }
    .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
    
    .contact-details-box { padding: 40px 20px; text-align: center; }
    .phone-number { font-size: 26px; }
}

@media (max-width: 480px) {
    .sticky-social-bar { display: none; }
}