h3{
    font-family: var(--text-font);
    font-weight: var(--text-weight);
    font-size: var(--text-size);
    color: var(--text-color);
    max-width: var(--max-width);
}
#case-info-container {
    min-height: 874px;
    height: 874px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Stylizacja sekcji project-section */
.case-info-section {
    width: 100%;
    max-width: var(--max-width);
    min-height: 874px;
    height: 874px;
    margin: 0 auto;
    padding: 90px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
        opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.case-info-section.loaded {
    opacity: 1;
}
/* Kontener ze zdjęciem */
/* Kontener ze zdjęciem jako tło */
.case-image {
    width: 100%;
    height: 400px;
    border-radius: 28px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Kontener na informacje */
.case-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Pojedynczy box z ikoną i tekstem */
.info-box {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 32px;
    box-shadow: var(--shadow-offset-x) var(--shadow-offset-y) var(--shadow-blur) var(--shadow-color);
    padding: 10px;
    gap: 12px;
    width: 100%;
    height: 64px;
}

/* Ikony w kontenerach */
.info-icon {
    width: 32px;
    height: 35px;
}

/* Teksty w kontenerach */
.info-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 54px;
    padding: 10px 16px;
}
.info-text p {
    margin: 0px;
    text-align: end;
}
.info-text h3 {
    margin-bottom: 0px;
    text-align: end;
}

/* Przycisk przekierowujący */
.case-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 32px;
    height: 64px;
    width: 100%;
    box-shadow: var(--shadow-offset-x) var(--shadow-offset-y) var(--shadow-blur) var(--shadow-color);
    transition: background 0.3s ease;
    scale: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.case-button:hover{
    transform: scale(1.02);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
.case-button p {
    color: var(--white-color);
    margin: 0 10px;
}
.case-button img {
    width: 10px;
    height: 10px;
}

.case-button:hover {
    background-color: var(--primary-color);
}
/* Przycisk powrotu */
.back-button {
    display: flex;
    align-items: start;
    width: 100%;
    cursor: pointer;
}

.back-button img {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.back-button p {
    font-size: var(--text-size);
    color: var(--text-color);
    font-weight: var(--text-weight);
    margin: auto 10px;
}

.back-button:hover img {
    background-color: var(--primary-color);
}

