﻿/* ==========================================================================
   /* ==========================================================================
   1. ZMIENNE I RESET
   ========================================================================== */
:root {
    --corten: #b87333;
    --corten-hover: #d2691e;
    --antracyt: #2a2a2a;
    --black: #1a1a1a;
    --white: #ffffff;
    --bg-light: #f4f4f4;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   2. NAWIGACJA I HEADER
   ========================================================================== */
.main-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img2/lodka4.jpg') center/cover no-repeat;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.navigation-bar { background: url('../img/tlonav.jpg') center/cover no-repeat; position: fixed; top: 0; width: 100%; z-index: 2000; border-bottom: 2px solid rgba(255,255,255,0.2); }

.hamburger {
    display: none; /* Ukrywamy hamburger na komputerach */
}
.header-content {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 20px; height: 90px;
}

.logo img { max-height: 60px; }

/* Menu Desktop */
.main-ul { display: flex; list-style: none; }
.main-ul li { position: relative; }
.main-ul li a {
    color: var(--white); text-decoration: none; padding: 35px 20px;
    display: block; font-weight: 700; font-size: 1.3rem; text-transform: uppercase;
    transition: var(--transition);
}

.main-ul li a:hover, .main-ul li.selected > a { color: var(--corten); }

/* Dropdown */
.dropdown {
    position: absolute; top: 90px; left: 0; background: var(--black);
    min-width: 220px; display: none; list-style: none; border-top: 3px solid var(--corten);
}
.dropdown li a { padding: 15px 20px; text-transform: none; border-bottom: 1px solid #222; }
.has-sub:hover .dropdown { display: block; }

/* Hero Text */
.hero-text-container {
    max-width: 1200px; margin: 150px auto 0; padding: 0 20px; color: var(--white);
}
.hero-text-container .captionTitle h1{ font-size: clamp(2.8rem, 5vw, 4.2rem) !important; font-weight: 900; line-height: 1.1; margin-bottom: 20px; } .hero-text-container .header-seo-text { font-size: 1.5rem !important; max-width: 600px; line-height: 1.6; }

/* ====/* Główne kontenery */
.boat-page {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Intro */
.intro-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.intro-section h1 {
    font-size: 2.8em;
    color: #004a99;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
}

/* Siatka zalet */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
}

.benefit-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Specyfikacja */
.specs-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.specs-content {
    max-width: 800px;
    margin: 0 auto;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.specs-list li:last-child {
    border-bottom: none;
}
/* Styl dla sekcji Łodzie innoVal */
/* UKŁAD GALERII */
.galeria-lodzi {
    padding: 50px 20px;
    background: #ffffff;
    text-align: center;
}

.gallery-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gallery-bottom {
    display: flex;
    justify-content: center;
}

.photo-card {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.photo-card img {
    width: 100%;
    display: block;
}

/* TWOJE ZDJĘCIE - Większe i pod spodem */
.hero-photo {
    width: 620px; /* Szersze, żeby ładnie wyglądało pod trzema mniejszymi */
    border: 3px solid #004a99;
}

@media (max-width: 768px) {
    .hero-photo { width: 100%; } /* Na telefonie na całą szerokość */
}

/* FIX DLA FOOTERA - Wymuszamy czerń */
.main-footer {
    background-color: #1a1a1a !important; /* Przywracamy głęboką czerń */
    color: #999 !important;
    padding: 60px 0 20px !important;
    display: block !important;
}

.footer-bottom {
    background-color: #111 !important;
}
/* Baner Kontaktowy */
/* Baner Kontaktowy */
.cta-banner {
    text-align: center;
    padding: 60px 20px;
    background: #004a99;
    color: white;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #004a99;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

/* Tabela Porównawcza */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
/* ... reszta tabeli bez zmian ... */
.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #004a99;
    color: white;
    text-transform: uppercase;
    font-size: 0.9em;
}

.comparison-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.comparison-table td:nth-child(2) {
    color: #004a99; /* Podkreślamy Twoje zalety kolorem */
    font-weight: 600;
}
}======================================================================

/* ==========================================================================
   5. FOOTER I IKONY
   ========================================================================== */
.main-footer { background: var(--black); color: #999; padding: 60px 0 0; margin-top: 100px; }
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px 40px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
}
.footer-column h3 { color: var(--white); margin-bottom: 20px; border-left: 3px solid var(--corten); padding-left: 15px; }

.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-icon {
    width: 40px; height: 40px; background: #333; color: white;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; border-radius: 50%; transition: 0.3s;
}
.social-icon:hover { background: var(--corten); transform: translateY(-3px); }

.footer-bottom { background: #111; padding: 20px; text-align: center; font-size: 1.2rem; }

/* ==========================================================================
   6. RWD (MOBILNE)
   ========================================================================== */
@media (max-width: 1100px) {
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 30px; height: 3px; background: white; transition: 0.3s; }
   .hamburger { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        cursor: pointer; 
        z-index: 2100; /* Musi być wyżej niż nav-menu */
        padding: 10px;
        position: relative;
    }

    .hamburger span { 
        width: 30px; 
        height: 3px; 
        background: white; /* Kolor kresek gdy menu jest zamknięte */
        transition: all 0.3s ease-in-out; 
        display: block;
        transform-origin: center;
    }
    
    /* KLUCZ: Zmiana koloru na czarny po otwarciu, żeby widzieć krzyżyk na białym tle menu */
    .hamburger.active span {
        background: #000; 
    }

    /* Tworzenie krzyżyka (X) */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--white); padding-top: 100px; transition: 0.4s; z-index: 1999;
    }
    .nav-menu.active { right: 0; box-shadow: -5px 0 15px rgba(0,0,0,0.3); }
    .main-ul { flex-direction: column; }
    .main-ul li a { color: var(--black); padding: 15px 30px; border-bottom: 1px solid #eee; }
    
    .dropdown { position: static; display: none; background: #f9f9f9; }
    
    .product-row, .product-row.reverse { grid-template-columns: 1fr; gap: 30px; }
    .info-grid { grid-template-columns: 1fr; }
}
/* Pokazywanie submenu na mobile po kliknięciu */
    .nav-menu .has-sub.open .dropdown {
        display: block !important;
        width: 100%;
    }
/* Profesjonalna strzałka V przy submenu */
    .has-sub > a::after {
        content: "\f078"; /* Kod ikony chevron-down w FontAwesome */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1rem;
        margin-left: 8px;
        display: inline-block;
        transition: transform 0.3s ease; /* Animacja obrotu */
    }

    /* Obrót strzałki po otwarciu menu */
    .has-sub.open > a::after {
        transform: rotate(180deg);
        color: var(--corten);
    }
    
