
/* Iletisim stilleri */

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;   
}

#contact-h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: bold;
    color: #00645f;
    text-decoration: underline;
}

#contact-section-info {
    flex: 1;
    align-items: center;
    text-align: left;
    padding: 30px;
    max-width: 50%;
    height: auto; 
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);  
}

#contact-section-info h2 {
    font-size: 20px;
    font-weight: bold;
    color: #00645f;
    margin: 20px 0px;
}

#contact-section-info p {
    font-size: 14px;
    line-height: 1.6;
}

.profile-container {
    display: flex;
    justify-content: center;
}

.profile {
    min-width: 175px;
    max-width: 500px;
    height: auto;
    border: solid 3px #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.profile:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-us-icon {
    vertical-align: middle;
    width: 35px;
    height: auto;
    margin-right: 10px;
    filter: brightness(0) invert(0);
}

.contact-us-icon:hover {
    opacity: 0.8;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform: scale(1.2) rotate(20deg);
}

/* Konum stilleri */

.map-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 40px 0 100px;
}

#map-container-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}

#map-container-info h2 {
    margin: 20px 0px;
    font-size: 25px;
    font-weight: bold;
    color: #00645f;
    text-decoration: underline;
}

#map-container-info iframe {
    width: 90%;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-icon {
    vertical-align: middle;
    width: 35px;
    height: auto;
    margin-right: 10px;
    filter: brightness(0) invert(0);
}

/* Mobil stili */

@media (max-width: 1080px) {
    .contact-info-container {
        flex-direction: column;
        align-items: center;
    }

    #contact-section-info {
        max-width: 90%;
        padding: 15px;
        margin: 0px 20px 30px;
    }

    #contact-section-info h2 {
        font-size: 18px;
        margin: 15px 0;
    }

    #contact-section-info p {
        font-size: 13px;
    }

    .profile {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-us-icon {
        width: 25px;
        height: auto;
    }

    .map-container {
        flex-direction: column;
        align-items: center;
    }

    #map-container-info iframe {
        width: 90%;
        height: 250px;
    }

    #map-container-info h2 {
        font-size: 18px;
    }
}

/* --------------------------------------------------------- */



