@charset "UTF-8";
@import url('font/proxima-nova.css');
.das-footer {
    background-color: #1b49cb; /* Resimdeki canl� turuncu */
    color: white;
    padding: 25px 0 15px 0; /* �� bo�lu�u iyice daraltt�k */
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
}

.das-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ��eleri dikeyde ortalar */
    flex-wrap: wrap;
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
}

/* Logo Boyutu */
.das-footer-logo img {
    height: 45px; /* Logoyu k���ltt�k */
    width: auto;
}

/* Navigasyon Linkleri */
.das-footer-nav .nav-col {
    display: flex;
    gap: 25px; /* Linkleri yan yana dizmek i�in gap ekledik */
    font-family: "proxima-nova-extra-wide";
    font-weight: 700;
}

.das-footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
    text-transform: uppercase;
}

/* Sosyal Medya ve �leti�im Yan Yana */
.das-footer-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* �nstagram butonu ile yaz�lar aras�ndaki bo�luk */
}

.round-btn {
    width: 38px;
    height: 38px;
    background: white;
    color: #ff4500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
}

/* �leti�im Paneli */
.contact-info-block {
    text-align: left;
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
}

.contact-line {
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
}

    .contact-line span {
        opacity: 0.8;
    }

    .contact-line a {
        color: white;
        text-decoration: none;
        margin-left: 5px;
    }

/* Ay�r�c� �izgi */
.das-footer-sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0 10px 0;
}

/* Alt K�s�m */
.das-footer-bottom {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.9;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .das-footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        font-family: "proxima-nova-extra-wide";
        font-weight: 400;
    }

    .das-footer-nav .nav-col {
        justify-content: center;
    }

    .das-footer-actions {
        flex-direction: column;
    }
}
/* Butonun kendisi */
.round-btn {
    width: 40px;
    height: 40px;
    background-color: #ffffff !important; /* Arka plan kesin beyaz */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    /* Butonun i�indeki ikon */
    .round-btn i {
        color: #ff4500 !important; /* �kon rengi turuncu */
        font-size: 24px !important; /* �kon boyutu */
        display: block;
    }

    /* Hover efekti (iste�e ba�l�) */
    .round-btn:hover {
        transform: scale(1.1);
    }

/* �leti�im blo�u ile ikonun yan yana durmas� i�in */
.das-footer-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* �kon ile yaz�lar aras�ndaki bo�luk */
}

/* Yaz�lar�n stili */
.contact-line {
    font-size: 11px;
    font-family: "proxima-nova-extra-wide";
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .contact-line a {
        color: white;
        text-decoration: none;
    }
