/* Main stylesheet for Wycena Nieruchomości */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f5f6; /* Lighter pinkish gray or very light pink */
}

.container {
    width: 90%; /* Adjusted for better responsiveness */
    max-width: 1100px; /* Max width for larger screens */
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #fff; /* Changed to white for a cleaner look */
    color: #333;
    padding-top: 15px; /* Reduced padding */
    padding-bottom: 15px;
    min-height: 70px;
    border-bottom: 3px solid #E91E63; /* Main Pink */
    position: relative; /* For positioning nav toggle */
}

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

.logo a {
    color: #E91E63; /* Main Pink for logo */
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

/* Navigation Menu Styles */
.nav-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex; /* Horizontal menu on desktop */
}

.nav-menu li {
    margin-left: 25px; /* Spacing between menu items */
}

.nav-menu a {
    color: #555; /* Darker gray for menu text */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500; /* Slightly bolder */
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #E91E63; /* Main Pink for underline */
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D11395; /* Main Pink for hover and active */
}

/* Hamburger Menu Icon */
.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1000; /* Ensure it's above other content */
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #E91E63; /* Main Pink */
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #E91E63; /* Main Pink */
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hamburger animation when menu is open */
.nav-open .hamburger {
    background-color: transparent; /* Hide middle bar */
}

.nav-open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}


/* Hero Section */
.hero-section {
    min-height: 400px;
    /* background: url('../images/hero_placeholder.jpg') no-repeat 0 -400px; */ 
    background-color: #AD1457; /* Darker Pink, or a pink gradient */
    background-size: cover;
    background-position: center center;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.hero-section h1 {
    font-size: 55px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn_pink, .button-link {
    display: inline-block;
    background: #D11395; /* Main Pink */
    color: #fff;
    padding: 12px 25px; /* Increased padding */
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn_pink:hover, .button-link:hover {
    background: #AD1457; /* Darker Pink */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Sections */
.main-content-section, .about-us-section, .services-section, .why-us-section, .collaboration-steps-section {
    padding: 50px 0; /* Increased padding */
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #fce4ec; /* Light Pink border */
}

section h2 {
    text-align: center;
    margin-bottom: 40px; /* Increased margin */
    font-size: 32px; /* Increased font size */
    color: #AD1457; /* Darker Pink for headings */
    font-weight: 600;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-6, .col-md-4, .col-md-3 {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px; /* Increased margin */
    box-sizing: border-box; 
}

.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }


.about-us-section ul {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}
.about-us-section ul li strong { color: #AD1457; } /* Darker Pink for strong text */

.service-item, .why-us-item {
    text-align: center;
    padding: 25px; /* Increased padding */
    border: 1px solid #f8bbd0; /* Lighter Pink border */
    border-radius: 8px; /* Increased border-radius */
    background-color: #fff5f7; /* Very Light Pink background */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-item:hover, .why-us-item:hover {
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2); /* Pinkish shadow */
    transform: translateY(-5px);
}

.service-item h4, .why-us-item h5 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #E91E63; /* Main Pink */
    font-size: 1.2em;
}

.steps-list {
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px; /* Increased padding */
    border: 1px solid #f8bbd0; /* Lighter Pink border */
    border-radius: 8px;
    background-color: #fff5f7; /* Very Light Pink background */
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #E91E63; /* Main Pink */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h6 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    color: #AD1457; /* Darker Pink */
}

/* Dokumenty & Cennik - Shared Styles */
.content-category-block {
    margin-bottom: 30px;
    padding: 25px; /* Increased padding */
    border: 1px solid #f8bbd0; /* Lighter Pink border */
    border-radius: 8px;
    background-color: #fff;
}

.content-category-block h3 {
    color: #E91E63; /* Main Pink */
    border-bottom: 2px solid #fce4ec; /* Light Pink border, slightly thicker */
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px; /* Increased margin */
    font-size: 1.5em;
}

.section-introduction, .section-conclusion {
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #444;
}

.category-notes.notes {
    font-size: 0.9em;
    color: #555;
    margin-top: 15px;
    background-color: #fff5f7; /* Very Light Pink background */
    padding: 15px;
    border-left: 4px solid #E91E63; /* Main Pink */
    border-radius: 4px;
}

/* Cennik Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.data-table th, .data-table td {
    border: 1px solid #f8bbd0; /* Lighter Pink border */
    padding: 12px 15px; /* Increased padding */
    text-align: left;
}

.data-table th {
    background-color: #fce4ec; /* Light Pink background for table header */
    color: #AD1457; /* Darker Pink text */
    font-weight: 600;
}

.data-table tr:nth-child(even) td {
    background-color: #fff5f7; /* Very light pink for even rows */
}

/* Dokumenty List */
.data-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    color: #555;
}

.data-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #fce4ec; /* Light pink dashed border */
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
}

.data-list li::before {
    content: "\f058"; /* FontAwesome check-circle icon or similar */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #E91E63; /* Main Pink */
    position: absolute;
    left: 0;
    top: 9px;
}

.data-list li:last-child {
    border-bottom: none;
}

.pricing-notes {
    margin-top: 30px;
    padding: 20px;
    background-color: #fce4ec; /* Light Pink background */
    border: 1px solid #f8bbd0; /* Lighter Pink border */
    border-radius: 8px;
}
.pricing-notes h4 { margin-top: 0; color: #AD1457; /* Darker Pink */ font-size: 1.2em;}
.pricing-notes ul { padding-left: 20px; color: #555; }

/* Kontakt */
.contact-details-row {
    margin-top: 30px;
}
.contact-info p { margin-bottom: 15px; }
.contact-info strong { color: #AD1457; /* Darker Pink */ }
.contact-info a { color: #E91E63; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.map-container {
    margin-top: 40px;
}
.map-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #AD1457; /* Darker Pink */
}

/* Footer */
footer {
    padding: 30px 20px; /* Increased padding */
    margin-top: 20px;
    color: #e0e0e0; /* Lighter text for footer */
    background-color: #333; /* Keeping footer dark */
    text-align: center;
}

footer p {
    margin: 5px 0;
}

/* Placeholders */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fce4ec; /* Light Pink background */
    color: #AD1457; /* Darker Pink text */
    text-align: center;
    border: 2px dashed #f8bbd0; /* Lighter Pink dashed border */
    border-radius: 8px;
    padding: 20px;
}
.icon-placeholder {
    border-radius: 50%;
}

.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Nie uciąga obrazka */
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media(max-width: 768px){
    .container {
        width: 95%;
    }

    .logo a {
        font-size: 20px;
    }

    .nav-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .nav-menu {
        display: none; /* Hide menu by default on mobile */
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        right: 0;
        background-color: #fff; /* White background for dropdown */
        width: 100%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

    .nav-menu.nav-open {
        display: block; /* Show menu when open */
    }

    .nav-menu ul {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center;
    }

    .nav-menu li {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px; /* Larger touch targets */
        border-bottom: 1px solid #fce4ec; /* Separator for items */
    }
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    .nav-menu a::after {
        display: none; /* Remove underline animation on mobile */
    }

    .hero-section h1 {
        font-size: 35px;
    }
    .hero-section p {
        font-size: 18px;
    }

    .col-md-6, .col-md-4, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

