
/* Iletisim stilleri */

#contact-h1 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #7D3F4C;
    text-decoration: underline; 
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    margin: 30px 15px 50px;
    padding: 50px;
    justify-content: center;
}

.contact-section-info { 
    align-items: center;
    text-align: left;
    padding: 30px;
    width: 450px;
    margin: -50px 0px;
    height: auto;
    border: 3px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.profile-container {
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
}

.profile {
    width: 100%;
    height: auto;
    border: solid 2px #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.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-section-info h2 {
    font-size: 18px;
    font-weight: bold;
    color: #7D3F4C;
    margin: 20px 0px;
    text-decoration: underline;
}

.contact-section-info p {
    font-size: 14px;
    line-height: 1.6;
}

.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);
}

#linkedin {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    color: inherit;
}

#linkedin:hover {
    transform: scale(1.1);
}

/* Iletisim mobil stilleri */

@media (max-width: 1080px) {
    #contact-h1 {
        font-size: 20px;
        margin-top: 30px;
    }

    .contact-info-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        margin-top: -30px;
    }

    .contact-section-info {
        width: 90%;
        margin: 0;
        padding: 20px;
    }

    .profile-container {
        justify-content: center;
        width: 100%;
    }

    .profile {
        width: 98%;
    }

    .contact-section-info h2 {
        font-size: 17px;
    }

    .contact-section-info p {
        font-size: 13px;
    }

    .contact-us-icon {
        width: 30px;
    }
}

/* --------------------------------------------------------- */

/* Konum stilleri */

.map-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin: 0px 15px 50px;
}

.map-box {
    text-align: center;
    width: 45%;
    min-width: 300px;
}

.map-box h2 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #7D3F4C;
    margin-bottom: 20px;
    text-decoration: underline; 
}

.map-icon {
    width: 50px;
    height: auto;
    vertical-align: middle;
    margin: 0px 10px 10px 0px;
}

iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Konum mobil stilleri */

@media (max-width: 1080px) {
    .map-container {
        flex-direction: column;
        align-items: center;
    }

    .map-box {
        width: 90%;
    }

    .map-icon {
        width: 35px;
        height: auto;
    }

    .map-box h2 {
        font-size: 20px;
    }
}

/* --------------------------------------------------------- */