/* STYLE DLA STRONY WYBORU BARU */
/* Skopiowane z formularz_style.css aby uzyskać identyczny wygląd */

.bar-selection-content {
    background: var(--color-background);
    padding: 15px 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.hero-section h2 {
    color: var(--color-accent);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero-subtitle {
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Bar Type Selection */
.bar-type-selection-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.bar-type-card {
    background: var(--color-section);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
    transition: transform .22s, box-shadow .22s;
    cursor: pointer;
}

.bar-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(206, 179, 107, 0.2);
}

/* Bar Type Visual */
.bar-type-visual {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.bar-type-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .3s;
}

.bar-type-card:hover .bar-type-background {
    transform: scale(1.05);
}

/* OBRAZY DLA BARÓW */
.led-background {
    background-image: url('https://drinkbary.pl/wp-content/uploads/2024/01/bary-digital_02.jpg');
    background-size: cover;
    background-position: center;
}

.tv-background {
    background-image: url('https://drinkbary.pl/wp-content/uploads/2023/03/01_bar-modulowy.jpg');
    background-size: cover;
    background-position: center;
}

.bar-type-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bar-type-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bar-type-overlay p {
    color: #fff;
    font-size: 1.05rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Bar Type Details */
.bar-type-details {
    padding: 30px;
    background: var(--color-section);
}

.bar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: inline-block;
    text-align: left;
}

.bar-features li {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.bar-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Przycisk w karcie baru */
.bar-type-card button {
    width: 100%;
}

.bar-type-card button svg {
    margin-right: 8px;
}

/* Responsywność */
@media (max-width: 900px) {
    .bar-type-selection-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-section h2 {
        font-size: 1.8rem;
    }

    .bar-type-visual {
        height: 200px;
    }

    .bar-type-overlay h3 {
        font-size: 1.4rem;
    }
}
