/* ==========================================================================
   Blok_01.css - OFERTA DLA BIZNESU: KONFERENCJE (Przedrostek biz-conf-)
   ========================================================================== */

.biz-conf-container {
    font-family: 'Inter', sans-serif;
    background-color: #090a0c; /* Bardzo głęboka, luksusowa czerń/grafit */
    color: #d1d5db;
    max-width: 1250px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
    box-sizing: border-box;
}

.biz-conf-container * {
    box-sizing: border-box;
}

/* Hero Section */
.biz-conf-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #11141a 0%, #06080b 100%);
    border: 1px solid rgba(212, 154, 106, 0.15); /* Akcent miedziowego złota */
    border-radius: 4px;
    margin-bottom: 60px;
}

.biz-conf-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d49a6a; /* Miedź/Złoto */
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 154, 106, 0.3);
    padding: 4px 12px;
    border-radius: 2px;
    background: rgba(212, 154, 106, 0.05);
}

.biz-conf-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.biz-conf-lead {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #b0b7c0;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Nagłówki sekcji */
.biz-conf-section-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biz-conf-section-desc {
    font-family: 'Lora', serif;
    text-align: center;
    color: #9ca3af;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Układy sal - CSS Grid */
.biz-conf-grid-layouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.biz-conf-layout-card {
    background: #11141a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.biz-conf-layout-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 154, 106, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.biz-conf-icon-box {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.biz-conf-layout-card h3 {
    font-family: 'Playfair Display', serif;
    color: #d49a6a;
    font-size: 1.35rem;
    margin: 0 0 15px 0;
}

.biz-conf-layout-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* Atuty i Oferta (Infrastruktura + Catering) */
.biz-conf-amenities {
    background: #11141a;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.biz-conf-amenities-wrap {
    display: flex;
    gap: 50px;
}

.biz-conf-amenities-block {
    flex: 1;
}

.biz-conf-amenities-block h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 25px;
    border-left: 3px solid #d49a6a;
    padding-left: 15px;
}

.biz-conf-amenities-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.biz-conf-amenities-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 0.98rem;
    color: #ced4da;
}

.biz-conf-amenities-block ul li::before {
    content: "✓";
    color: #d49a6a;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.biz-conf-amenities-block ul li strong {
    color: #ffffff;
}

/* Stopka biznesowa CTA */
.biz-conf-cta {
    border: 1px solid #d49a6a;
    background: linear-gradient(180deg, #11141a 0%, #090a0c 100%);
    padding: 55px 40px;
    text-align: center;
    border-radius: 4px;
}

.biz-conf-cta h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biz-conf-cta p {
    font-family: 'Lora', serif;
    color: #9ca3af;
    max-width: 750px;
    margin: 0 auto 35px auto;
    font-size: 1.05rem;
}

.biz-conf-contacts-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.biz-conf-link {
    color: #ffffff;
    font-family: 'Lora', serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s;
}

.biz-conf-link:hover {
    color: #d49a6a;
}

.biz-conf-btn-submit {
    display: inline-block;
    background: #d49a6a;
    color: #090a0c;
    font-family: 'Inter', sans-serif;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.biz-conf-btn-submit:hover {
    background: #ffffff;
    color: #090a0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 154, 106, 0.25);
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
    .biz-conf-amenities-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .biz-conf-amenities {
        padding: 35px 20px;
    }
    .biz-conf-hero h1 {
        font-size: 2rem;
    }
    .biz-conf-contacts-row {
        flex-direction: column;
        gap: 15px;
    }
}
