/* --- STYLE.CSS - WERSJA FINALNA (ALL-IN-ONE + MOBILE BAR) --- */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* --- KOLORY --- */
    --primary-violet: #8E7F9F; 
    --primary-dark: #5D4E6D;   
    
    /* ZIELEŃ DLA PRZYCISKÓW (ACTION) */
    --btn-green: #5E8C61; 
    --btn-green-hover: #4A704D;
    
    /* ZŁOTO DLA DETALI (PREMIUM) */
    --accent-gold: #D4C6AA;
    
    /* TŁA I TEKST */
    --bg-cream: #FDFCF9;       
    --bg-white: #FFFFFF;
    --text-main: #2C2C2C;       
    --text-light: #666666;
    
    /* CIENIE */
    --shadow-soft: 0 15px 35px rgba(93, 78, 109, 0.08);
    --shadow-hover: 0 25px 50px rgba(93, 78, 109, 0.15);
}

/* --- ANIMACJE --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- PRZYCISKI (OGÓLNE) --- */
.btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* PRZYCISK GŁÓWNY - ZAWSZE ZIELONY */
.btn-primary {
    background-color: var(--btn-green); 
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(94, 140, 97, 0.3);
}

.btn-primary:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(94, 140, 97, 0.5);
}

/* PRZYCISK DRUGORZĘDNY (OBRAMOWANIE) */
.btn-secondary {
    background-color: transparent;
    color: var(--primary-violet);
    border: 1px solid var(--primary-violet);
}

.btn-secondary:hover {
    background-color: var(--primary-violet);
    color: white;
    box-shadow: 0 5px 15px rgba(142, 127, 159, 0.3);
}

/* --- HEADER --- */
header {
    background-color: rgba(253, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.logo a { display: flex; align-items: center; gap: 15px; }
.logo img { height: 55px; width: auto; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}
@media (max-width: 400px) { .logo-text { font-size: 1.2rem; } }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-main); font-weight: 500; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background-color: var(--primary-violet); transition: 0.3s;
}
.nav-links a:hover { color: var(--primary-violet); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 15px; align-items: center; }

/* --- HERO --- */
.hero {
    padding: 100px 0 120px 0;
    display: flex; align-items: center; gap: 60px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #F3EFF6 100%);
}
.hero-text { flex: 1; animation: fadeInUp 1s ease-out; }
.hero h1 { font-size: 3.5rem; margin-bottom: 25px; color: #2a2a2a; line-height: 1.15; }
.hero p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; }
.hero-image { flex: 1; animation: fadeInUp 1s ease-out 0.3s backwards; }
.hero-image img { border-radius: 80px 5px 80px 5px; box-shadow: 25px 25px 0px rgba(212, 198, 170, 0.4); }

/* --- SEKCJE OGÓLNE --- */
.about, .services, .testimonials, .pricing-section { padding: 120px 0; }
.about { background-color: var(--bg-white); }
.subtitle { 
    color: var(--primary-violet); 
    text-transform: uppercase; 
    font-weight: 700; 
    font-size: 0.85rem; 
    letter-spacing: 3px; 
    margin-bottom: 15px; 
    display: block;
}
.section-header { text-align: center; margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* --- SEKCJA BIO (UKŁAD DWUKOLUMNOWY) --- */
.bio-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 30px;
}

.bio-content {
    flex: 1; /* Tekst */
    text-align: left;
}
.bio-content p { margin-bottom: 25px; }

.bio-image-wrapper {
    flex: 0 0 250px; /* Sztywne miejsce na zdjęcie */
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Styl dla okrągłego zdjęcia */
.about-portrait-round {
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 4px solid var(--accent-gold) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- USŁUGI --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.service-card { 
    background: white; 
    padding: 50px 30px; 
    border-radius: 20px; 
    box-shadow: var(--shadow-soft); 
    text-align: center; 
    transition: 0.4s; 
    border: 1px solid transparent; 
}
.service-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-hover); 
    border-color: rgba(142, 127, 159, 0.2); 
}
.service-card h3 { margin: 20px 0 15px 0; font-size: 1.4rem; color: var(--primary-dark); }

/* --- CENNIK --- */
.pricing-table { width: 100%; border-collapse: collapse; background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); margin: 0 auto;}
.pricing-table th { background-color: var(--primary-violet); color: white; padding: 25px; text-align: left; font-size: 1rem; letter-spacing: 1px; }
.pricing-table td { padding: 25px; border-bottom: 1px solid #f0f0f0; }
.price-value { font-weight: 700; color: var(--primary-dark); text-align: right; font-size: 1.1rem; }

/* --- OPINIE --- */
.testimonials { background-color: var(--bg-cream); }
.testimonials-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.testimonial-card { 
    background: white; 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: var(--shadow-soft); 
    flex: 1; 
    min-width: 300px; 
    max-width: 400px; 
    border-left: 4px solid var(--accent-gold); 
}
.testimonial-text { font-style: italic; color: #555; margin-bottom: 25px; line-height: 1.8; }
.testimonial-author { font-weight: 700; color: var(--primary-violet); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }

/* --- APPROACH (DOLNA SEKCJA CTA) --- */
.approach { 
    background: linear-gradient(135deg, #8E7F9F 0%, #6D5E7A 100%);
    padding: 100px 0; 
    text-align: center; 
    color: white; 
}
.approach h2 { color: white; margin-bottom: 20px; font-size: 2.5rem; }
.approach p { color: rgba(255,255,255,0.9); margin-bottom: 40px; font-size: 1.2rem; }

/* --- WYMUSZENIE ZIELONEGO PRZYCISKU NA DOLE --- */
.approach .btn-primary {
    background-color: #5E8C61 !important; 
    color: white !important;
    border: 2px solid white !important; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    padding: 18px 50px !important;
    font-size: 1.1rem !important;
}

.approach .btn-primary:hover {
    background-color: #4A704D !important;
    transform: translateY(-5px) scale(1.05) !important;
}

/* --- FOOTER --- */
footer { background-color: #222; color: #ccc; padding: 70px 0 30px 0; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 50px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h4 {
    color: #fff; font-size: 1.3rem; margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block; padding-bottom: 5px;
}
.footer-col p { margin-bottom: 10px; }
.footer-col a { display: block; color: #bbb; margin-bottom: 12px; }
.footer-col a:hover { color: var(--accent-gold); padding-left: 5px; }

/* --- MOBILNY PASEK "STICKY" --- */
.mobile-sticky-bar { display: none; }

/* --- MEDIA QUERIES (MOBILE) --- */
@media (max-width: 850px) {
    .hero, .about-content { flex-direction: column; text-align: center; }
    .hero-image img { max-width: 90%; margin: 0 auto; border-radius: 50px 5px 50px 5px; }
    .nav-links, .nav-cta { display: none; } /* Ukrywamy górne menu */
    .hero h1 { font-size: 2.5rem; }
    .pricing-table th, .pricing-table td { padding: 15px; font-size: 0.9rem; }
    
    /* Układ BIO na telefonie */
    .bio-container { flex-direction: column-reverse; align-items: center; gap: 30px; }
    .bio-content { text-align: center; }
    .bio-content ul { display: inline-block; text-align: left; }
    
    /* Pasek Dolny */
    body { padding-bottom: 80px; }
    .mobile-sticky-bar {
        display: flex; align-items: center; justify-content: space-between;
        position: fixed; bottom: 0; left: 0; width: 100%; height: 70px;
        background-color: rgba(255, 255, 255, 0.98);
        border-top: 1px solid #eee; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        z-index: 9999; padding: 0 20px; backdrop-filter: blur(5px);
    }
    .mobile-icon-link {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        color: var(--text-light); font-size: 0.75rem; font-weight: 600;
        text-decoration: none; gap: 3px; width: 60px;
    }
    .mobile-icon-link:hover { color: var(--primary-violet); }
    .mobile-btn-reserve {
        background-color: var(--btn-green); color: white; font-weight: 700;
        text-transform: uppercase; font-size: 0.9rem; padding: 10px 25px;
        border-radius: 50px; box-shadow: 0 4px 15px rgba(94, 140, 97, 0.4);
        letter-spacing: 0.5px; border: 2px solid white;
    }
}