main {
    margin-top: 90px;
    padding: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    background: transparent;
}

.h-wrapper {
    text-align: center;
}

h1 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    color: #222;
    padding: 20px 0;
    display: inline-block;
    z-index: 1;
}

h1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 12px;
    background-color: #f2b600;
    z-index: -1;
    opacity: 0.4;
    border-radius: 4px;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-shadow: 0 0 2px #f2b600;
    color: #333;
}

.realizacje-opis {
    margin: 20px auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    text-align: left;
    font-family: 'Georgia', serif;
    padding-left: 5%;
    padding-right: 5%;
    font-style: italic;
}

.toggle-more {
    color: #d09c3c;
    cursor: pointer;
    text-decoration: underline;
}

.mobile-full {
    display: inline;
}

.mobile-short {
    display: none;
}

.galeria-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 10px;
    padding: 0 5%;
}

.galeria-panel {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #f2b600;
    background-color: #fff8e1;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.galeria-panel h2 {
    font-size: 1.6rem;
    color: #333;
    text-shadow: 0 0 2px #f2b600;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Georgia', serif;
}

.galeria-zdjecia {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.zdjecie-item {
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #878787;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.zdjecie-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zdjecie-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #f2b600;
}

.zdjecie-item p {
    margin-top: 5px;
    font-size: 14px;
    font-family: 'Georgia', serif;
    color: #222;
    padding: 5px 5px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 0;
}

.modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 10px #f2b600;
    margin: auto;
    scale: 1.5;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 12px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.4rem;
    }

    .galeria-panel h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        text-shadow: 0 0 2px #f2b600;
        color: #333;       
    }

    .realizacje-opis {
        text-align: center;
        cursor: pointer;
    }
        
    .mobile-full {
        display: none;
    }
        
    .mobile-short {
        display: inline;   
    }

    .galeria-zdjecia {
        flex-direction: column;
        align-items: center;
    }

    .zdjecie-item {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
                
    .zdjecie-item img {
        height: auto;
        max-height: 250px;
    }

    .modal img {
        scale: 1;                               
    }
}