/* --- Podstawowe Style --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfaf6;
    color: #646362;
    padding: 80px 20px 40px 20px; /* Dodatkowy padding na górze dla przycisku powrotu */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* --- Główny kontener profilu --- */
.exhibitor-profile {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    background: rgba(227, 226, 222, 0.4);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(132, 124, 125, 0.2);
}

/* --- Kontenery na zdjęcie i szczegóły --- */
.photo-container {
    flex: 1;
    max-width: 450px;
}

.photo-container img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.details-container {
    flex: 1.5; /* Więcej miejsca na tekst */
}

/* --- Typografia --- */
.details-container h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #847C7D;
    margin-top: 0;
    margin-bottom: 20px;
}

.details-container h2 {
    font-size: 1.5rem;
    color: #847C7D;
    margin-top: 30px;
    border-bottom: 1px solid rgba(132, 124, 125, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.details-container p, .details-container ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #646362;
}

.details-container ul {
    list-style-type: none;
    padding-left: 0;
}

.details-container ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.details-container ul li::before {
    content: '→';
    color: #847C7D;
    position: absolute;
    left: 0;
    font-weight: 600;
}

/* --- Przycisk Powrotu --- */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #847C7D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    z-index: 100;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #646362;
    transform: scale(1.05);
}

/* --- Responsywność --- */
@media (max-width: 900px) {
    body {
        padding: 80px 15px 30px 15px;
    }
    .exhibitor-profile {
        flex-direction: column;
        padding: 25px;
    }
    .photo-container {
        max-width: 100%;
    }
    .details-container h1 {
        font-size: 2.2rem;
    }
}
