

.contact-info {
    flex: 1;
    font-size: 1em;
    color: #333;
    min-width: 300px; 
}

.contact-section {
    background-color: #fdfdfd; 
    border-left: 1px solid #9FC2EE; 
    border-right: 1px solid #9FC2EE; 
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);*/
    color: #e0e0e0;
    padding: 10px;
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.contact-info h2 {
    margin-bottom: 15px;
    color: #0056b3;
}

.contact-info p,
.contact-info ul {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-info ul {
    padding-left: 20px;
    list-style: none;
}

.contact-info ul li strong {
    color: #0056b3;
}

.contact-info ul li a {
    color: #0056b3;
    text-decoration: none;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

.map {
    flex: 1; 
    max-width: 45%; 
    height: auto; 
}

.map iframe {
    width: 100%;
    height: 370px; 
    border-radius: 8px;
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-buttons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-buttons a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
    .contact-section {
        flex-direction: column; 
        align-items: center; 
    }
    .contact-info {
        text-align: center; 
    }
    .map {
        max-width: 100%; 
    }
    .social-buttons {
        justify-content: center;
    }
    .social-buttons a {
        margin: 0 auto;
    }
}



/* ciemny motyw */

.dark-theme .contact-section {
    background-color: #2B2B2B;
    border-left: 1px solid #bdbcbb;
    border-right: 1px solid #33364d;
    color: #e0e0e0; 
}

.dark-theme .contact-info {
    color: #e0e0e0; 
}

.dark-theme .contact-info h2 {

    color: #69b7ff; 
}


.dark-theme .contact-info ul li strong {
    color: #69b7ff; 
}

.dark-theme .contact-info ul li a {
    color: #69b7ff;

}

.dark-theme .map iframe {
    border: 1px solid #33364d; 
}
