/* --- ZMIENNE I RESET --- */
:root {
    /* PALETA (wg kodów użytkownika): */
    --primary: #0477BF;
    /* Głęboki Niebieski */
    --secondary: #3C92A6;
    /* Morski/Teal */
    --accent: #048ABF;
    /* Niebieski/Cyjan */
    --sand: #BFB19F;
    /* Piaskowy */
    --light-blue: #AED3F2;
    /* Jasny błękit */
    --copper: #BF7B54;
    /* Miedziany - akcenty i napisy */

    --light: #F4F7F7;
    --white: #ffffff;
    --text-gray: #586e75;

    --border-radius: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- NAWIGACJA --- */
/* --- HEADER WRAPPER & TOP BAR --- */
.main-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.top-bar {
    height: 35px;
    background-color: #fff;
    /* Biały by border się wyróżniał delikatnie */
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    font-size: 12px;
    color: #888;
    /* Delikatny szary */
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item i {
    color: var(--secondary);
    /* Czy copper? Może secondary lepiej pasuje do tekstu, albo copper dla akcentu */
    /* User: "delikatnymi mniejszymi" -> szary tekst. Ikonki copper? Spróbujmy copper. */
    color: var(--copper);
    margin-right: 6px;
    font-size: 11px;
}

.top-fb-btn {
    color: var(--primary);
    font-size: 14px;
    padding: 0 5px;
    transition: color 0.3s;
}

.top-fb-btn:hover {
    color: var(--copper);
}

.top-res-btn {
    background-color: var(--primary);
    /* Mniejszy, może primary */
    color: #fff;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.top-res-btn:hover {
    background-color: var(--copper);
}

/* Mobile Action Logic */
@media (min-width: 901px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .top-bar {
        display: none;
    }
}

/* --- NAWIGACJA --- */
nav {
    width: 100%;
    height: 90px;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: relative;
    /* Static in wrapper */
    /* box-shadow removed */
}

.logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s;
    position: relative;
    /* Dla pozycjonowania linii */
    padding-bottom: 5px;
    /* Odstęp dla linii */
}

/* Animacja podkreślenia */
.nav-links a:not(.btn-nav):not(.fb-icon)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease-in-out;
}

.nav-links a:not(.btn-nav):not(.fb-icon):hover::after,
.nav-links a.active:not(.btn-nav):not(.fb-icon)::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

/* Grupa akcji (FB + Rezerwacja) */
.nav-actions-group {
    display: flex;
    align-items: center;
    /* Wyrównanie do wysokości linii */
    gap: 2px !important;
    /* Wymuszony odstęp 2px */
}

/* Przycisk FB - prostokąt zgodny z btn-nav */
.fb-btn {
    background-color: var(--primary);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    /* Szerokość zbliżona do wysokości, aby był kwadrat/prostokąt */
    height: 46px;
    /* Wysokość odpowiadająca btn-nav (zależy od fontu+paddingu) */
    /* Padding btn-nav to 10px góra/dół + line-height (ok 26px) = ~46px total */
    padding: 0 !important;
    border-radius: 0;
    transition: background 0.3s, transform 0.2s;
}

.fb-btn i {
    font-size: 18px;
}

.fb-btn:hover {
    background-color: var(--accent);
    color: #fff !important;
}

/* Wykluczenie animacji podkreślenia dla elementów w grupie */
.nav-links .nav-actions-group a::after {
    display: none;
}

.btn-nav {
    background-color: var(--primary);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
    display: flex;
    /* Flex dla pewności centrowania */
    align-items: center;
    justify-content: center;
    /* Wyśrodkowanie poziome */
    height: 46px;
    /* Ustalona wysokość dla spójności */
    /* padding-bottom: 10px !important; - usunięte na rzecz flexa */
}

.btn-nav:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    color: #fff !important;
    /* Utrzymanie bieli tekstu */
}

/* --- MOBILE MENU --- */
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
        z-index: 1001;
        /* Zawsze na wierzchu */
    }

    .nav-links {
        display: none;
        /* Domyślnie ukryte */
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        /* Pokaż jako Flex po dodaniu klasy active */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* Dopasowanie przycisku Rezerwuj na mobilu */
    .nav-actions-group {
        justify-content: center;
        margin-top: 10px;
    }
}

/* --- HERO --- */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* Usunięto margin-top */
    padding-top: 125px;
    /* 90px nav + 35px top-bar */
    color: var(--white);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Slider tła (Obrazkowy - Opcjonalny) */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    pointer-events: none;
    display: none;
    /* Ukryty na rzecz wideo */
}

/* Wideo Tło */
/* Wideo Tło */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reset do 100% dla stabilności */
    z-index: -2;
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    /* Wymuszenie szerokości */
    height: 100vh;
    /* Wymuszenie wysokości */
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: #000;
}

.hero-video.active {
    opacity: 1;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-content h1 .highlight {
    color: var(--light-blue);
    /* Kontrastowy akcent */
    display: inline-block;
}

.hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 0 30px;
    /* Left align on desktop */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Przyciski CTA w Hero */
.hero-cta {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 15px;
    margin-top: 20px;
}

.hero-cta a {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px !important;
    /* Override specific paddings */
    margin: 0 !important;
}

/* --- HERO SPLIT GRID --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

/* --- INFO BAR (NEW HERO OVERLAP) --- */
.info-bar-section {
    position: relative;
    /* margin-top will be handled by negative margin if needed, but here we used absolute/overlap logic before */
    /* Check previous .booking-section logic. It was likely transform: translateY(-50%) or margin-top: -XX */
    /* Let's keep .booking-section base styles but modify content layout */
    margin-top: -60px;
    /* Overlap effect */
    z-index: 20;
    padding: 0 20px;
    margin-bottom: 60px;
}

.info-bar-container {
    background: #fff;
    max-width: 1384px;
    margin: 0 auto;
    border-radius: 0px;
    /* Was 50px before? Keeping it cleaner */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.info-bar-item i {
    font-size: 2em;
    color: var(--primary);
    background: var(--light-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-bar-item h4 {
    margin: 0;
    font-size: 1.1em;
    color: var(--dark);
    font-weight: 700;
}

.info-bar-item p {
    margin: 0;
    font-size: 0.95em;
    color: #666;
}

.info-bar-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.info-bar-item a:hover {
    color: var(--primary);
}

.info-bar-btn-wrapper {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 150px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .info-bar-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        margin-top: 0;
        /* No overlap on mobile usually */
    }

    .info-bar-btn-wrapper {
        width: 100%;
        margin-top: 20px;
    }

    .info-bar-btn-wrapper .btn-check {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-cta {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .hero-cta a {
        height: 50px;
        font-size: 14px;
    }
}

/* Contact Panel in Hero */
.hero-contact-card {
    background: rgba(11, 46, 64, 0.4);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 0px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /* 0.3 shadow */
    max-width: 400px;
    margin-left: auto;
    text-align: center;
}

.hero-contact-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 15px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 500;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.hero-textarea {
    height: 80px;
    resize: none;
}

.btn-hero-submit {
    width: 100%;
    background: var(--copper);
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-hero-submit:hover {
    background: var(--secondary);
}

.wa-option {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: #25D366;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px;
    /* Pillow shape for WA button */
    transition: 0.3s;
}

.btn-wa:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.btn-hero-primary {
    background-color: var(--secondary);
    color: #fff;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-outline {
    background-color: transparent;
    color: #fff;
    padding: 16px 43px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-hero-wa {
    background-color: #25D366;
    color: #fff;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-wa:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-messenger {
    background-color: #0084FF;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-messenger:hover {
    background-color: #0064C1;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- BOOKING BAR --- */
/* Zmiana: Ograniczona szerokość (container), overlap na hero */
.booking-section {
    max-width: 1384px;
    /* Ograniczenie szerokości dopasowane do Hero */
    width: 100%;
    /* Pełna szerokość kontenera */
    padding: 0px;
    /* Padding zgodny z Hero */
    margin: -70px auto 0;
    /* Overlap (ujemny margines) i centrowanie */
    background: var(--white);
    position: relative;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Cień dla odseparowania od tła */
}

.booking-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    /* Brak odstępów, elementy stykają się */
}

.input-group {
    flex: 1;
    min-width: 200px;
    border-right: 1px solid #eee;
    /* Separatory */
}

.input-group:last-child {
    border-right: none;
}

.input-group label {
    display: block;
    font-size: 15px;
    /* ZMIANA: Zwiększono z 13px na 15px */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 25px 30px 10px;
    /* ZMIANA: Zwiększono padding góra/dół dla wyższego panelu */
    background: #fff;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 5px 30px 35px;
    /* ZMIANA: Zwiększono padding dolny dla wyższego panelu */
    border: none;
    border-radius: 0;
    font-family: inherit;
    font-weight: 500;
    color: var(--primary);
    outline: none;
    background-color: #fff;
    font-size: 16px;
}

.btn-check-wrapper {
    flex: 1;
    min-width: 200px;
}

.btn-check {
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    padding: 35px;
    /* ZMIANA: Zwiększono padding przycisku */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-check:hover {
    background-color: var(--primary);
}

/* --- COMPACT TEXT SECTION (Split 2) --- */
.compact-text {
    padding: 40px !important;
    /* Mniejszy padding niż standardowy text-block */
    justify-content: flex-start;
    /* Treść od góry */
}

.compact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.compact-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.compact-text .compact-header {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--copper);
    font-weight: 600;
}

.seo-list.compact-list {
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.seo-list.compact-list li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    /* Flex dla lepszego wyrównania checka */
    align-items: flex-start;
}

.seo-list.compact-list li .check-mark {
    margin-right: 8px;
    line-height: 1.5;
    /* Dopasowanie do tekstu */
}

/* --- OFERUJEMY SECTION --- */
.offers-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
    /* Jasnoszare tło dla odróżnienia od białego kontaktu */
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 kolumn na desktopie */
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.offer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.offer-item i {
    font-size: 3rem;
    color: var(--primary);
    /* Niebieski kolor ikon */
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.offer-item:hover i {
    transform: translateY(-5px);
}

.offer-item p {
    font-weight: 700;
    color: var(--copper);
    /* Ciemny tekst */
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsywność Oferujemy */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 w rzędzie na mniejszych ekranach */
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 w rzędzie na mobilkach */
        gap: 30px;
    }

    .offer-item i {
        font-size: 2.5rem;
    }
}

/* --- GALLERY HOME SECTION (Random Full Width) --- */
.gallery-home-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    /* Usuwa zbędne odstępy pod img */
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 miniatury w rzędzie */
    gap: 0;
    /* Brak odstępów */
    width: 100%;
}

.gallery-item-tile {
    position: relative;
    height: 300px;
    /* Stała wysokość kafelka */
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item-tile:hover img {
    transform: scale(1.1);
    /* Zoom na hover */
}

.gallery-item-tile .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 119, 191, 0.4);
    /* Półprzezroczysty niebieski */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Kluczowe: przepuszcza kliknięcia do IMG */
}

.gallery-item-tile:hover .overlay {
    opacity: 1;
}

.gallery-item-tile .overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s;
}

.gallery-item-tile:hover .overlay i {
    transform: scale(1);
}

/* Responsywność Galerii */
@media (max-width: 900px) {
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kafelki na mniejszych */
    }

    .gallery-item-tile {
        height: 250px;
    }
}

.contact-section-home {
    padding-top: 80px;
    padding-bottom: 0;
    background-color: var(--white);
    width: 100%;
}

.section-header-container {
    padding-bottom: 60px;
    /* Zwiększony odstęp od tytułu */
    text-align: center;
}

.contact-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 równe kolumny */
    width: 100%;
    margin: 0;
    min-height: 550px;
}

/* Kolumny */
.contact-split-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 8%;
    /* Wewnętrzny padding */
}

.info-col {
    background-color: #f9f9f9;
    /* Jasne tło dla danych */
}

.form-col {
    background-color: var(--primary);
    /* Niebieskie tło dla formularza */
}

.contact-content-inner {
    max-width: 500px;
    width: 100%;
}

/* Karta Kontaktowa (w nowym układzie) */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item .box-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--primary);
    border-radius: 0;
    /* SHARP STYLE */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.info-col .box-icon {
    /* Dla lewej kolumny background icon może być primary */
    background-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: none;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Formularz FLAT (bez ramki, tło przezroczyste bo kolumna ma tło) */
.home-contact-form-flat {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.home-contact-form-flat h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #fff;
}

.home-contact-form-flat .input-group {
    margin-bottom: 20px;
}

.home-contact-form-flat .row-inputs {
    display: flex;
    gap: 20px;
}

.home-contact-form-flat input,
.home-contact-form-flat textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    /* SHARP STYLE */
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background-color: #fcfcfc;
    transition: border-color 0.3s;
}

.home-contact-form-flat input:focus,
.home-contact-form-flat textarea:focus {
    border-color: var(--primary);
    outline: none;
    background-color: #fff;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1rem;
    border-radius: 0;
    /* SHARP STYLE */
    cursor: pointer;
    background-color: #AED3F2;
    /* Jasnoniebieski */
    color: var(--secondary);
    border: none;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: #fff;
    color: var(--primary);
}

/* Mapa Full Width */
.full-width-map {
    width: 100%;
    height: 450px;
    display: block;
    line-height: 0;
    margin-top: 0;
    /* Bez odstępu od split wrapper */
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsywność */
@media (max-width: 900px) {
    .contact-split-wrapper {
        grid-template-columns: 1fr;
    }

    .home-contact-form-flat .row-inputs {
        flex-direction: column;
        gap: 0;
    }

    .contact-split-col {
        padding: 40px 20px;
    }
}

/* --- SEKCJE OGÓLNE - RESET --- */
section {
    padding: 0;
    /* Usunięcie domyślnego paddingu */
    margin: 0;
    width: 100%;
}

/* Kontener tylko dla nagłówków sekcji tekstowych, jeśli potrzebny */
.text-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.section-header span {
    color: var(--copper);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

/* --- ATUTY (FULL WIDTH GRID) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 równe kolumny */
    gap: 0;
    /* Elementy stykają się */
    width: 100%;
}

.feature-item {
    padding: 80px 40px;
    text-align: center;
    transition: background 0.3s;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    /* Wysokość kafelka */
}

/* Kolory kafelków */
.feature-item:nth-child(1) {
    background-color: #AED3F2;
}

.feature-item:nth-child(2) {
    background-color: #0477BF;
}

.feature-item:nth-child(2) h3,
.feature-item:nth-child(2) p,
.feature-item:nth-child(2) i {
    color: #fff;
}

.feature-item:nth-child(3) {
    background-color: #3C92A6;
}

.feature-item:nth-child(3) h3,
.feature-item:nth-child(3) p,
.feature-item:nth-child(3) i {
    color: #fff;
}

.feature-item:nth-child(4) {
    background-color: #048ABF;
}

.feature-item:nth-child(4) h3,
.feature-item:nth-child(4) p,
.feature-item:nth-child(4) i {
    color: #fff;
}

.feature-item:hover {
    filter: brightness(95%);
    /* Subtelny efekt hover zamiast przesunięcia */
}

.feature-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 300px;
}


/* --- SPLIT SECTIONS (FULL WIDTH) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50% / 50% */
    gap: 0;
    width: 100%;
    margin: 0;
    min-height: 600px;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse .text-block {
    direction: ltr;
}

.img-block {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.text-block {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.text-block>span {
    color: var(--copper);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.text-block h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.text-block p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.text-block ul {
    margin-bottom: 40px;
}

.text-block ul li {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.text-block ul li i {
    color: var(--secondary);
    font-size: 14px;
}


/* --- POKOJE (FULL WIDTH GRID) --- */
.rooms-section {
    background-color: var(--light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 karty obok siebie na full width */
    gap: 0;
    width: 100%;
}

.room-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: z-index 0s, transform 0.3s;
    position: relative;
    border-right: 1px solid #f0f0f0;
    /* Separator wizualny */
}

.room-card:last-child {
    border-right: none;
}

.room-card:hover {
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.room-img {
    height: 350px;
    /* Wyższe zdjęcia */
    width: 100%;
    object-fit: cover;
}

.room-details {
    padding: 40px;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.room-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.room-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 25px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--copper);
    color: var(--copper);
    font-weight: 600;
    border-radius: 0;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--copper);
    color: #fff;
}

/* --- CTA (FULL WIDTH) --- */
.cta-section {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 100px 5%;
}

.cta-form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 0;
    /* Połączone inputy */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form input {
    flex: 1;
    padding: 20px;
    border-radius: 0;
    border: none;
    outline: none;
}

.btn-subscribe {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 0 40px;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-subscribe:hover {
    background-color: var(--accent);
}

/* --- FOOTER --- */
footer {
    background-color: #0b2e40;
    /* Ciemniejsza wersja primary */
    color: #ecf0f1;
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
        /* Center on mobile */
    }

    .hero-contact-card {
        margin: 0 auto;
        width: 100%;
    }

    .booking-bar {
        flex-direction: column;
    }

    .input-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .btn-check-wrapper {
        width: 100%;
    }

    /* Dostosowanie overlap na mobile */
    .booking-section {
        width: 95%;
        margin-top: -50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .text-block {
        padding: 50px 20px;
    }

    .img-block {
        min-height: 300px;
    }

    .nav-links {
        display: none;
    }

    /* TODO: Hamburger menu implementation */
    .cta-form {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- TABLES (Cennik) --- */
.price-table,
.dynamic-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-table th,
.price-table td,
.dynamic-content th,
.dynamic-content td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.price-table th,
.dynamic-content th {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.price-table tr:hover,
.dynamic-content tr:hover {
    background-color: #f9f9f9;
}

.price-table .price-val {
    font-weight: 700;
    color: var(--secondary);
    text-align: right;
    font-size: 1.1rem;
}

/* --- CONTACT --- */
.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(20%);
    /* Lekko stonowana mapa */
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: inline-block;
}

.contact-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}


/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- LIGHTBOX (Popup Galerii) --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    padding: 0 20px;
    user-select: none;
    z-index: 2002;
    transition: color 0.3s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 0 10px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}

/* --- AVAILABILITY CALENDAR --- */
.availability-section {
    padding: 60px 0;
    text-align: center;
    background: #fdfdfd;
}

.availability-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.dot.free {
    background-color: #2ecc71;
    opacity: 0.8;
}

.dot.busy {
    background-color: #e74c3c;
    opacity: 0.8;
}

.gantt-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.gantt-table {
    width: 100%;
    min-width: 800px;
    /* Wymuszenie scrolla na małych ekranach */
    border-collapse: collapse;
}

.gantt-table th,
.gantt-table td {
    border: 1px solid #eee;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    vertical-align: middle;
}

.gantt-table th.month-header {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.gantt-table th.room-col {
    min-width: 140px;
    width: 15%;
    text-align: left;
    padding-left: 15px;
    font-weight: 600;
    background: #fff;
    color: var(--secondary);
    position: sticky;
    left: 0;
    z-index: 10;
    border-right: 2px solid #ddd;
}

.day-cell {
    width: 100%;
    height: 25px;
    display: block;
    background-color: #eee;
    border-radius: 2px;
}

.day-cell.free {
    background-color: #2ecc71;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.day-cell.busy {
    background-color: #e74c3c;
    opacity: 0.7;
}

.day-cell.free:hover {
    opacity: 1;
    transform: scale(1.1);
}

.calendar-cta {
    margin-top: 30px;
}

/* --- COOKIES BAR --- */
.cookies-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookies-bar.visible {
    bottom: 0;
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.85rem;
}

.cookies-content p {
    margin: 0;
}

.btn-cookie {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
}