    
	
/* --- 1. ZMIENNE I FUNDAMENTY --- */
:root {
    /* Kolory Light (Domyślne) */
    --bg-body: #ffffff;
    --bg-light: #f9f9f9;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent-color: #c5a47e;
    --border-color: #f0f0f0;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Wariant Dark Mode */
[data-theme="dark"] {
    --bg-body: #0a0a0a;
    --bg-light: #121212;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: #222222;
    --glass-bg: rgba(0, 0, 0, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
	--bs-secondary-color: rgba(255, 255, 255, 0.7);
}

body {
    font-size: 1.1rem;
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.logo {
    filter: invert(0%);
    transition: filter 0.5s ease; /* Płynne przejście koloru przy zmianie trybu */
}

/* Logo w trybie ciemnym */
[data-theme="dark"] .logo {
    filter: invert(100%) brightness(200%);
}



h1, h2, h3, .navbar-brand, .realizacje-title, .philosophy-heading, .footer-headline {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--text-main);
}

.section-padding { padding: 100px 0; }
a { transition: var(--transition); text-decoration: none; }

/* --- 2. NAWIGACJA I DROPDOWN --- */
.navbar {
    padding: 1.5rem 0;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}
.navbar  .btn {font-size:1rem !important; padding-top:10px !important;}
.navbar  .btn b {font-weight:900;}
.navbar .nav-item  {margin:0 7px;}

.nav-link {
    color: var(--text-main) !important;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.custom-dropdown .dropdown-menu {
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    border-radius: 0;
    padding: 40px 20px 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    display: block; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown-plus {
    position: absolute;
    top: 0;
    left: 12px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-main);
}

.custom-dropdown .dropdown-item {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 10px 15px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.custom-dropdown .dropdown-item:hover {
    color: var(--text-main);
    background: transparent;
    padding-left: 20px;
}

@media (min-width: 992px) {
    .custom-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
.slick-dots li button:before {   font-size: 12px; }
.custom-arrows {font-size:1.8rem;}
.custom-arrows span {cursor:pointer; padding-left:5px;}

/* --- 3. HERO SLIDER Z PANELEM SZKLANYM --- */
.glass-hero {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Możesz zmienić na 100vh dla pełnego ekranu */
   
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: stretch; /* Rozciąga dzieci do pełnej wysokości */
    overflow: hidden;
}
.glass-hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    display: flex;
}

.hero-background-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.slide-item {
    height: 85vh;
    background-size: cover;
    background-position: center;
}
#subheader {
	background-size:cover !important;
	background-position:center !important;
	padding:40px 0 !important;
}

.glass-panel {
    position: relative;
    z-index: 10;
    width: 25%;
    min-width: 350px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}
#subheader .glass-panel {width: 100%;  min-width: 100px; padding: 30px 40px;}
 #subheader .glass-panel p ,  #subheader .glass-panel h1{color:#fff !important;}
 
.glass-hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: auto;
    z-index: 20;
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

.glass-hero-slider .slick-dots li {
    margin: 0 5px;
}

.glass-hero-slider .slick-dots li button:before {
    color: white !important; /* Kolor kropek */
    font-size: 12px;
    opacity: 0.5;
}

.glass-hero-slider .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}




.glass-panel h2 { color: #fff; font-size: 3rem; margin-bottom: 20px; }
.glass-panel p { color: rgba(255,255,255,0.8); margin-bottom: 30px; }

.btn-glass {
    padding: 12px 25px;
    background: white;
    color: black;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* --- 4. ELEMENTY HOVER (IMG BOX) --- */
.img-box-hover {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: var(--border-color);
}
.img-box-hover.bigger {padding-top: calc(200% + 1rem);}
.img-box-hover.large {padding-top: calc(150% + 1rem);}

.img-box-hover img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-box-hover:hover img { transform: scale(1.08); }

/* Styl dla wideo, aby wypełniało kontener tak jak obrazek */
.img-box-hover video,
.img-box-hover .video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kluczowe: zachowuje proporcje i wypełnia obszar */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

/* Efekt zoom dla wideo przy hoverze (opcjonalnie) */
.img-box-hover:hover .video-content {
    transform: scale(1.1);
}




.img-box-hover .badge-label {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--text-main);
    color: var(--bg-body);
    padding: 5px 15px;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.img-box-hover:hover .badge-label { opacity: 1; transform: translateY(0); }

.img-box-hover .plus-icon {
    position: absolute;
    bottom: 20px; right: 20px;
    width: 30px; height: 30px;
    z-index: 2;
	/* KLUCZOWY DODATEK: */
    transition: transform 0.4s ease-in-out;
}
.img-box-hover .box-title {
	 position: absolute;
    bottom: 10px; left: 20px;
    max-width: 80%; 
    z-index: 2;
	color:#fff;
	
}



.img-box-hover .plus-icon::before, .img-box-hover .plus-icon::after {
    content: '';
    position: absolute;
    background-color: white;
    transition: 0.3s;
}

.img-box-hover .plus-icon::before { width: 100%; height: 1px; top: 50%; left:0;}
.img-box-hover .plus-icon::after { width: 1px; height: 100%; left: 50%; }
.img-box-hover:hover .plus-icon { transform: rotate(180deg); }


.gallery-slider {margin:0 -10px;}
.gallery-slider .gall-item {padding:0 10px;}

/* --- 5. SEKCJA REALIZACJI I FILOZOFII --- */
.realizacje-section, .philosophy-section, .faq-section, section { background: var(--bg-body); }

.realizacja-text, .feature-text { color: var(--text-muted); font-size: 0.95rem; }

.quote-icon { font-size: 3rem; color: var(--text-main); display: block; margin-bottom: 10px; }

.slider-controls-bottom {
    position: absolute;
    bottom: 0; right: 0;
    display: flex; gap: 30px;
}

.feature-icon-wrapper svg {fill:var(--bg-body); stroke: var(--text-main); stroke-width: 1px; width: 40px; height: 40px;  margin-bottom:1rem;}

/* --- 6. AKORDEON FAQ --- */
.accordion-custom .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
}
.accordion-item {color: var(--text-main);}

.accordion-custom .accordion-button {
    background: transparent;
    color: var(--text-main);
    padding: 30px 0;
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) { color: var(--accent-color); }

.accordion-custom .accordion-button::after { content: '+'; background-image: none; color: var(--text-main); font-size: 1.8rem; }
.accordion-custom .accordion-button:not(.collapsed)::after { content: '−'; }

/* --- 7. FOOTER --- */

.footer-nav-link, .footer-contact-info a { color: var(--text-main); text-transform: uppercase; font-size: 0.8rem; }
.footer-socials a { color: var(--text-main); font-size: 1.2rem; margin-left: 20px; }

/* Formularz Kontaktowy */
       .contact-form .form-control {
            border-radius: 0;
            border: 1px solid var(--border-color);
            padding: 15px;
            background: var(--bg-light);
            color: var(--text-main);
            margin-bottom: 20px;
        }
       .contact-form  .form-control:focus {
            box-shadow: none;
            border-color: var(--text-main);
            background: var(--bg-body);
        }
		
		
/* Mapa */
        .map-container {
            filter: grayscale(100%);
            transition: 0.5s;
            line-height: 0;
        }
        .map-container:hover { filter: grayscale(0%); }
		

/* Stopka - Stylistyka Minnaro */
.site-footer {
    padding: 100px 0 50px 0;
     background: var(--bg-body);
    border-top: 1px solid var(--border-color);
    font-family: var(--font-main);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

.footer-nav-link {
    text-decoration: none;
    color:  var(--text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.footer-nav-link:hover {
    opacity: 0.5;
}

.footer-socials a {
    color:  var(--text-main);
    margin-left: 20px;
    font-size: 1.1rem;
    transition: transform 0.3s;
    display: inline-block;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 60px;
    margin-bottom: 40px;
}

.btn-outline-dark-custom {
    border: 1px solid #000;
        padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-outline-dark-custom:hover {
    background: #000;
    color: #fff;
}

.footer-contact-info {
    font-size: 0.9rem;
    line-height: 2;
}

.footer-contact-info a {
    color:  var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
}

.scroll-top-btn {
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.3s;
}
.scroll-top-btn svg {fill:  var(--text-main); stroke:var(--text-main); }
footer a.text-dark {color:var(--text-main) !important;}

.scroll-top-btn:hover {
    transform: translateY(-5px);
}

.footer-bottom-bar {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}


/* Kompozycja zdjęć (Stacked Images) */
.image-stack-container {
    position: relative;
    padding-bottom: 50%; /* Miejsce na przesunięte zdjęcie */
}

.image-main {
    width: 80%;
    z-index: 1;
    position: relative;
}

.image-sub {
    width: 80%;
    position: absolute;
    top: 30%; /* Przesunięcie o 50% w dół */
    right: 0;   /* Przesunięcie w prawo */
    z-index: 2;
}

.image-stack-container img {
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

.btn {padding: 12px 25px !important; font-size: 0.8rem;
    letter-spacing: 2px;
	     text-transform: uppercase;
		 height:45px; border-radius:0;}
.btn-custom {

border:solid 1px  var(--text-main);
color:  var(--text-main);
}
.btn-glass:hover, .btn-custom:hover {color: var(--bg-body); background:var(--text-main);}

a.text-black {color:  var(--text-main) !important;}


.realizacje-slider-container .slick-dots {top:0; right:0; bottom:auto; text-align:right; width:50%;}

/* --- 8. THEME SWITCHER WIDGET --- */
.theme-switcher {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--text-main);
    padding: 5px;
    border-radius: 30px;
}

.theme-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--bg-body);
    cursor: pointer;
    transition: 0.3s;
}

.theme-btn:hover { opacity: 0.7; }

/* Styl dla aktywnego przycisku w widgetcie */
.theme-btn.active {
    color: var(--text-main) !important; /* Zmieni kolor ikonki na złoty/beż */
    background: var(--bg-body) !important; /* Delikatne tło dla zaznaczenia */
    transform: scale(1.2); /* Lekkie powiększenie aktywnej ikonki */
}

/* Opcjonalnie: zmiana kursora dla aktywnego, by nie sugerował kliknięcia */
.theme-btn.active {
    cursor: default;
    pointer-events: none; /* Blokuje ponowne kliknięcie w ten sam tryb */
}




/* --- 9. SLICK DOTS CUSTOM --- */
.slick-dots li button:before { color: var(--text-main) !important; }

.text-uppercase.small.ls-2.mb-4 {	letter-spacing: 3px; font-size: 0.7rem;}
	
	 

        /* Reset zaokrągleń dla całego dokumentu wewnątrz modala */
        #valuationModal *, 
        #valuationModal,
        #successModal * {
            border-radius: 0 !important;
        }

        /* Specyficzne style ograniczone do ID modala */
        #valuationModal .modal-content {
            border: 1px solid #000;
           
        }

        #valuationModal .modal-header {
            background: #fff;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #000;
        }

        #valuationModal .nav-tabs {
            border-bottom: 1px solid var(--bs-secondary-color) !important;;
            gap: 0;
        }

        #valuationModal .nav-link {
            border: none !important;
            color: #000;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 1rem 1.5rem;
            transition: all 0.1s ease;
        }

        #valuationModal .nav-link.active {
            background-color: var(--bs-secondary-color)  !important;
            color: #fff !important;
        }

        #valuationModal .step-badge {
            width: 24px;
            height: 24px;
            background: #000;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.75rem;
            margin-right: 10px;
        }

        /* Stylowanie formularza */
        #valuationModal .form-control, 
        #valuationModal .form-select {
            padding: 0.75rem 1rem;
            border: 1px solid var(--bs-secondary-color) !important;
            background-color: #fff;
            color: #000;
            font-weight: 500;
        }

        #valuationModal .form-control:focus,
        #valuationModal .form-select:focus {
            background-color: #fff;
            border-color: #000;
            box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
            outline: none;
        }

        #valuationModal .selectable-card {
            cursor: pointer;
            transition: all 0.1s;
            border: 1px solid var(--bs-secondary-color) !important;
            background: #fff;
        }

        #valuationModal .selectable-card:hover {
            background: #f0f0f0;
        }

        #valuationModal .form-check-input:checked {
            background-color: #000;
            border-color: #000;
        }

        /* Przycisk główny */
        #valuationModal .btn-primary {
            background-color: #000;
            border: 1px solid #000;
            color: #fff;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 1px;
            padding: 1rem;
        }

        #valuationModal .btn-primary:hover {
            background-color: #fff;
            color: #000;
        }

        /* Style okna czatu */
        #valuationModal .chat-container {
            height: 520px;
            background: #fff;
            padding: 1.5rem;
            border: 1px solid var(--bs-secondary-color) !important;
            overflow-y: auto;
        }

        #valuationModal .message-bubble {
            max-width: 85%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.4;
            font-weight: 500;
            border: 1px solid #000;
			    border-bottom-left-radius: 10px !important;
				    border-top-left-radius: 10px !important;
					    border-top-right-radius: 10px !important;
        }

        #valuationModal .bubble-bot {
            background: #f8f8f8;
            color: #000;
        }

        #valuationModal .bubble-user {
            background: #000;
            color: #fff;
            margin-left: auto;
        }

        #valuationModal .btn-send {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background: #000;
            border: 1px solid #000;
        }

        #valuationModal .btn-send:hover {
            background: #333;
        }
		
		[data-theme="dark"] #valuationModal label, [data-theme="dark"] #valuationModal .fw-black {color:#000 !important;}
		
[data-theme="dark"] #valuationModal .form-control, [data-theme="dark"] #valuationModal .form-select {border-color:#333 !important;}
    [data-theme="dark"] #valuationModal .form-control::placeholder {color:#333 !important;}  
	
	[data-theme="dark"] #valuationModal  .btn {border-color:#000 !important; color:#000 !important;}
	[data-theme="dark"] #valuationModal  .btn:hover {background:#000 !important; color:#fff!important;}
	
	[data-theme="dark"] #valuationModal  .chat-disclaimer  {color:#000 !important;}
	
	[data-theme="dark"] #valuationModal .nav-tabs,
	[data-theme="dark"] #valuationModal .selectable-card {border-color:#333 !important; }
	
	[data-theme="dark"] #valuationModal .nav-link {color:#333 !important}
	[data-theme="dark"] #valuationModal .nav-link.active {background:#333 !important; color:#fff !important}
	