@font-face {
    font-family: 'NunitoSans-Regular';
    src: url('../fonts/NunitoSans_10pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.contact-body {
    font-family: NunitoSans-Regular;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0)!important; /* Saydam arka plan */
    color: white;
    padding: 10px 20px;
    z-index: 1000;
}

.language-select select {
    color: rgba(0, 0, 0, 1); /* Saydam arka plan */
}

.navbar .menu-items a {
    color: black;
}

.navbar .menu-items a:hover::before,
.navbar .menu-items a.active::before {
    background-color: black; /* Çizginin rengi */
    transform: scaleY(1); /* Çizgiyi yavaşça göster */
}

.navbar .logo {
    color: black;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
}

form .form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

form .form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 10px 0;
}

form .form-control::placeholder {
    color: #aaa;
}

form .btn-primary {
    background-color: #000;
    border: none;
    padding: 10px 20px;
}

form .btn-primary:hover {
    background-color: #333;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5em;
    margin-right: 10px;
    color: #000;
}

.contact-item p {
    margin: 0;
}

.mt-5 {
    margin-top: 5rem !important;
}

.text-center a {
    color: #000;
    margin: 0 10px;
    font-size: 1.5em;
}

.text-center a:hover {
    color: #333;
}

.submit-button {
    font-size: 20px !important;
    padding: 8px 35px !important;
    border: 1px solid black !important;
    background: linear-gradient(to right, white 50%, black 50%) !important;
    background-size: 200% 100% !important;
    background-position: left bottom !important;
    color: black !important;
    cursor: pointer !important;
    transition: background-position 0.4s ease, color 0.4s ease !important;
    border-radius: 0 !important;
}

.submit-button:hover {
    background-position: right bottom !important;
    color: white !important;
}

/* Masaüstü ve büyük ekranlar için padding */
.body-con {
    margin-left: 40px;
    margin-right: 40px;
}

.form-area {
    height: 600px;
}

/* Mobil cihazlar için padding: 20px */
@media (max-width: 768px) {
    h2 {
        padding-top: 60px;
        padding-bottom: 10px;
        font-size: 40px!important;
        text-align: center;

    }
    .body-con {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 20px;
    }

    .body-con p{
        padding: 20px 0;
    }

    .form-area {
        height: 1200px;
    }

    form .form-control::placeholder {
        color: #aaa;
        font-size: 20px;
    }

    form {
        align-items: center;
        text-align: center;
    }

    .row{
        --bs-gutter-x: 0;
    }

    .submit-button {
        padding-top: 20px;
    }

}

/* Varsayılan yüksekliği (masaüstü ve tabletler için) */
iframe {
    height: 600px; /* Varsayılan yüksekliği koruyoruz */
    width: 100%;
}

.icon {
    height: 36px;
    margin: 20px;
}

/* Mobil cihazlar için yüksekliği %40 yapalım */
@media (max-width: 768px) {
    iframe {
        height: 40vh; /* Yüksekliği %40 olarak ayarlıyoruz */
    }

    .icon {
        height: 30px;
        margin: 5px;
    }

    .contact-text {
        font-size: 16px;
    }
}

