/* =========================================
   DESIGN SYSTEM - GOLDEN NAILS (DARK MODE)
   ========================================= */
:root {
    --bg-main: #0B0B0B;        
    --bg-secondary: #141414;   
    --gold: #DDA74F;           
    --gold-light: rgba(221, 167, 79, 0.2); 
    
    --text-main: #BDBDBD;      
    --white: #FFFFFF;          
    
    /* ULTRA-PREMIUM FONTY */
    --font-heading: 'Cormorant Garamond', serif;
    --font-text: 'Jost', sans-serif;
    
    --easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Zmienne dla biblioteki Swiper */
    --swiper-theme-color: var(--gold);
    --swiper-pagination-bullet-inactive-color: rgba(255,255,255,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-text);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 400;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 8rem 0; }
@media (max-width: 768px) { .section { padding: 5rem 0; } }

.bg-secondary { background-color: var(--bg-secondary); }

/* --- TYPOGRAPHY UTILS --- */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
}
.title-primary {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--white);
    order: 1;
}
.subtitle-primary {
    font-family: var(--font-text);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    order: 2;
}

/* --- BUTTONS --- */
.btn-gold {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: var(--gold); 
    font-family: var(--font-text);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s var(--easing);
    border: 1px solid var(--gold);
}
.btn-gold:hover {
    background: var(--gold);
    color: var(--bg-main);
}

.btn-gold-small {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    background: transparent;
    transition: 0.3s;
}
.btn-gold-small:hover {
    background: var(--gold);
    color: var(--bg-main) !important;
}

/* =========================================
   NAVIGATION (DARK GLASSMORPHISM)
   ========================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--easing);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(221, 167, 79, 0.2); 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    mix-blend-mode: screen; 
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    .logo-img { height: 80px; }
}

.navbar.scrolled .logo-img {
    height: 70px;
}

.nav-links { display: none; }
@media (min-width: 992px) {
    .nav-links { display: flex; gap: 3rem; align-items: center; }
    .nav-links a {
        font-family: var(--font-text);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--white);
        transition: 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
}

.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1001;
    color: var(--white);
    font-size: 1.5rem;
    transition: 0.3s;
}
.hamburger.active { color: var(--gold); }
@media (min-width: 992px) { .hamburger { display: none; } }

.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s var(--easing);
    z-index: 999;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin: 1.5rem 0;
    transition: 0.3s;
}
.mobile-menu a:hover { color: var(--gold); font-style: italic; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-main);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Link do Twojego bg.jpg */
    background: url('https://images.pexels.com/photos/3997389/pexels-photo-3997389.jpeg') center/cover;
    animation: zoomBg 20s infinite alternate linear;
    z-index: 1;
    opacity: 0.4;
}
@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.5) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
}
.hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-content h1 i { color: var(--gold); font-style: italic; }
.hero-content p {
    font-family: var(--font-text);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
    color: var(--text-main);
}

/* =========================================
   KATALOG ZABIEGÓW
   ========================================= */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}
@media (min-width: 992px) {
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 8rem; }
}

.category-header { display: flex; align-items: center; gap: 20px; margin-bottom: 3rem; }
.category-header h3 { font-size: 2.5rem; color: var(--gold); margin: 0; }
.category-line { flex: 1; height: 1px; background: rgba(221, 167, 79, 0.3); }

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.menu-details {
    flex: 1;
    position: relative;
}
.menu-name {
    font-size: 1rem;
    color: var(--white);
    background: var(--bg-main); 
    padding-right: 15px;
    position: relative;
    z-index: 2;
}
.menu-dots {
    position: absolute;
    bottom: 6px; left: 0; width: 100%;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    z-index: 1;
}
.menu-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    background: var(--bg-main); 
    padding-left: 15px;
    position: relative;
    z-index: 2;
}

/* =========================================
   8. PORTFOLIO - PERFEKCYJNE PUZZLE
   ========================================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    grid-auto-flow: dense;
}

@media (min-width: 768px) {
    .gallery { 
        grid-template-columns: repeat(4, 1fr); 
        grid-auto-rows: 250px;
        gap: 15px; 
    }
    
    .gallery-item:nth-child(1) { 
        grid-column: span 2; 
        grid-row: span 2; 
    }
    
    .gallery-item:nth-child(4) { 
        grid-column: span 2; 
        grid-row: span 2; 
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--easing);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 11, 11, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--easing);
    pointer-events: none;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.4s var(--easing);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* =========================================
   OPINIE GOOGLE & KARUZELA (NAPRAWIONE)
   ========================================= */
.reviews-container { 
    display: flex; flex-direction: column; gap: 4rem; max-width: 900px; margin: 0 auto; 
}

.reviews-summary-card { 
    background: var(--bg-main); 
    border: 1px solid rgba(255,255,255,0.05); 
    padding: 3rem; display: grid; grid-template-columns: 1fr; gap: 3rem; 
    align-items: center; border-radius: 4px; 
}
@media (min-width: 768px) { 
    .reviews-summary-card { grid-template-columns: 1.5fr 2fr; padding: 4rem; } 
}
.rating-score { text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 2rem; }
@media (min-width: 768px) { 
    .rating-score { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.05); padding-bottom: 0; padding-right: 3rem; } 
}
.score-number { font-family: var(--font-heading); font-size: 5rem; color: var(--white); line-height: 1; display: block; margin-bottom: 0.5rem; }
.score-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 0.8rem; display: flex; justify-content: center; gap: 5px; }
.score-count { font-size: 0.8rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 2px; }

.rating-bars { display: flex; flex-direction: column; gap: 1.2rem; }
.bar-row { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; }
.bar-label { color: var(--white); display: flex; align-items: center; gap: 5px; min-width: 35px; }
.bar-label i { color: var(--gold); font-size: 0.8rem; }
.bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.bar-count { color: var(--text-main); min-width: 35px; text-align: right; font-family: var(--font-text); }

/* Karuzela Swiper - Równe wysokości */
/* Karuzela Swiper - Równe wysokości */
.reviews-swiper {
    padding-bottom: 60px !important; 
}

.review-card {
    background: var(--bg-main);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 4px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    min-height: 320px; /* Dodajemy min-height, aby puste karty nie były mniejsze */
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.review-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6; /* Stały interlinia */
    margin-bottom: 0.5rem;
    
    /* KLUCZOWA POPRAWKA: UCINANIE DO 2 LINIJEK */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Zmieniono z 4 na 2 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Rezerwujemy miejsce na dokładnie 2 linie, żeby stopki się nie ruszały */
    height: 3.2em; 
    transition: all 0.3s ease;
}

/* Rozwinięcie tekstu po kliknięciu */
.review-text.expanded {
    -webkit-line-clamp: unset; 
    height: auto;
    margin-bottom: 1rem;
}

.read-more-btn {
    color: var(--gold);
    font-size: 0.7rem; /* Nieco mniejszy, by był bardziej elegancki */
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-bottom: 1.5rem;
    border: none;
    background: none;
    font-family: var(--font-text);
    padding: 0;
    text-align: left;
    transition: 0.3s ease;
    font-weight: 500;
}

.read-more-btn:hover {
    color: var(--white);
}

.review-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    margin-top: auto; /* To zawsze zepchnie stopkę na sam dół karty */
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.review-date {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   STANDARDY
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 992px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.feature-card {
    text-align: center; padding: 4rem 2.5rem; 
    background: #121212; 
    border: 1px solid rgba(255,255,255,0.03); 
    transition: var(--easing);
}
.feature-card:hover { border-color: rgba(221, 167, 79, 0.3); }
.feature-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--white); }
.feature-card p { font-family: var(--font-text); font-size: 0.95rem; color: var(--text-main); line-height: 1.8; }


/* =========================================
   KONTAKT I REZERWACJA
   ========================================= */
.contact-wrap {
    display: grid; grid-template-columns: 1fr; 
    border: 1px solid rgba(255,255,255,0.05); 
    background: var(--bg-main);
}
@media (min-width: 992px) { .contact-wrap { grid-template-columns: 1fr 1fr; } }

.contact-left {
    padding: 5rem 2rem; display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 992px) {
    .contact-left { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.05); padding: 6rem 4rem; }
}

.contact-left h2 { font-size: clamp(2.6rem, 4vw, 3.5rem); margin-bottom: 3rem; line-height: 1.2; color: var(--white); }
.contact-left h2 i { color: var(--white); font-style: italic; }

.booking-widget-box {
    width: 100%; max-width: 400px; padding: 3rem 1.5rem;
    border: 1px dashed var(--gold); 
}
.booking-widget-box i { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; }
.booking-widget-box p { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); }

.contact-right { padding: 4rem 2rem; }
@media (min-width: 992px) { .contact-right { padding: 6rem 4rem 6rem 5rem; } }

.contact-right h2 { font-size: clamp(2.2rem, 3vw, 3rem); margin-bottom: 3.5rem; color: var(--white); }
.contact-right h2 i { color: var(--gold); font-style: italic; }

.info-group { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 3.5rem; }
.info-row { display: flex; align-items: flex-start; gap: 1.5rem; }
.info-row i { color: var(--gold); font-size: 1.3rem; margin-top: 0.2rem; }
.info-text span {
    display: block; font-family: var(--font-text); font-size: 0.8rem; 
    text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 0.5rem;
}
.info-text p { font-size: 1.05rem; color: var(--text-main); line-height: 1.6; }

.socials { display: flex; gap: 1.5rem; }
.socials a { color: var(--white); font-size: 1.3rem; transition: 0.3s; }
.socials a:hover { color: var(--gold); }

/* =========================================
   DOJEBANA STOPKA PREMIUM
   ========================================= */
.premium-footer {
    background: #070707; 
    padding: 6rem 0 2rem 0;
    border-top: 1px solid rgba(221, 167, 79, 0.2);
}

.footer-top {
    display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 4rem;
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; } }

.footer-brand .footer-logo { height: 80px; margin-bottom: 1.5rem; opacity: 0.9; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; color: var(--text-main); line-height: 1.8; }

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-text); font-size: 0.95rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold); margin-bottom: 1.5rem;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: var(--text-main); font-size: 0.95rem; transition: 0.3s; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-contact li { color: var(--text-main); font-size: 0.95rem; display: flex; align-items: center; }
.footer-contact li i { color: var(--gold); margin-right: 12px; font-size: 1.1rem; }

.footer-bottom {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; font-size: 0.85rem;
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-socials-bottom { display: flex; gap: 1rem; }
.footer-socials-bottom a {
    width: 38px; height: 38px; border: 1px solid rgba(221, 167, 79, 0.3); display: flex; align-items: center; 
    justify-content: center; border-radius: 50%; color: var(--gold); transition: 0.3s;
}
.footer-socials-bottom a:hover { background: var(--gold); color: var(--bg-main); }

/* =========================================
   STRZAŁKI KARUZELI (SWIPER)
   ========================================= */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    transition: 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important; /* Mniejsze, subtelniejsze strzałki */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--white) !important;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}