
/* Red Brown #A52A2A , Off White #FAF9F6 , Logodaki Beyaz #FEFEFE , Ç deki kırmızı #E51B27 , M deki kırmızı #E51A1E , V deki mavi süet #474D60 */
.contact-bar {
    background: linear-gradient(45deg, #E51A1E 50%, #FEFEFE 50%);
    height: 45px;
    margin: 0;
    color: #FEFEFE;
    font-family: 'Roboto Slab', Arial, sans-serif;
}

.contact-bar .contact-info {
    display: flex;
    height: 45px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.contact-bar .contact-info .phone-numbers-and-email {
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-left: 270px;
}

.contact-info .address {
    flex: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
}

.contact-info .address p {
    padding: 0 0 0 120px;
}

.contact-bar .contact-info a {
    color: #FEFEFE;
    text-decoration: none;
    font-weight: 300;
}

.contact-bar .contact-info a:hover {
    color: #00C73C;
    text-decoration: underline;
}

.contact-bar .contact-info .address a {
    color: #E51A1E;
    font-size: 16px;
    margin-right: 10px;
}

.contact-bar .contact-info .address a:hover {
    color: #B71C1C;
}
.contact-info .phone-numbers-and-email .fa-phone {
    margin-left: 10px;
}

.contact-info .address i {
    color: #E51A1E;
}

/* Top Bar (Navigation Bar) */
.top-bar {
    background-color: rgba(254, 254, 254, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    font-family: 'Roboto Slab', Arial, sans-serif;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    flex: 3;
    display: flex;
    justify-content: center;
}

.logo a img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menü */
.hamburger {
    display: none; /* Masaüstünde gizli */
    font-size: 24px;
    cursor: pointer;
    color: #E51A1E;
}

.nav-links {
    flex: 6;
    margin: 0 10px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    justify-content: center;
}

/* Navigasyon Yazıları */
.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.nav-links a:hover {
    color: #E51A1E;
}

/* Hemen Arayın Butonu */
.call-now {
    display: none; /* Masaüstünde gizli */
}

.call-btn {
    background-color: #E51B27;
    color: #FEFEFE;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.call-btn:hover {
    background-color: #c4422f;
}

.call-dropdown {
    display: none; /* Varsayılan olarak gizli */
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #FEFEFE;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    z-index: 100;
}

.call-dropdown a {
    display: block;
    color: #E51A1E;
    text-decoration: none;
    padding: 5px 0;
}

.call-dropdown a:hover {
    color: #B71C1C;
}

/* Responsive Tasarım */

@media (max-width: 1080px) {
    .contact-bar {
        display: none;
    }

    .logo a img {
        height: 45px;
        width: auto;
    }

    .nav-links a {
        color: black;
        text-decoration: none;
        font-size: 16px;
        display: flex;
        align-items: center;
        font-weight: 400;
    }

}

@media (max-width: 768px) {
    .contact-bar {
        display: none; /* Mobilde contact-bar gizli */
    }

    .top-bar {
        padding: 10px 5%;
        justify-content: space-between;
    }

    .hamburger {
        display: block; /* Mobilde görünür */
        flex: 1;
        text-align: left;
    }

    .logo {
        flex: 1;
        justify-content: center;
    }

    .logo a img {
        height: 30px; /* Mobilde logo boyutunu küçülttük */
    }

    .call-now {
        display: block; /* Mobilde görünür */
        flex: 1;
        text-align: right;
    }

    .call-dropdown {
        top: 45px;
        right: 5%;
    }

    .nav-links {
        display: none; /* Varsayılan olarak gizli */
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        margin: 0 0;
        background-color: #FEFEFE;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }

    .nav-links.active {
        display: block; /* Hamburger tıklandığında açılır */
    }

    .nav-links ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .nav-links a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .top-bar {
        padding: 10px 5%;
        justify-content: space-between;
    }

    .hamburger {
        display: block; /* Mobilde görünür */
        flex: 1;
        text-align: left;
    }

    .logo {
        flex: 1;
        justify-content: center;
    }

    .logo a img {
        height: 30px; /* Mobilde logo boyutunu küçülttük */
    }

    .call-now {
        display: block; /* Mobilde görünür */
        flex: 1;
        text-align: right;
        padding-left: 10px;
    }

    .call-btn {
        padding: 8px 10px;
    }

    .call-dropdown {
        top: 45px;
        right: 5%;
    }

    .nav-links {
        display: none; /* Varsayılan olarak gizli */
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        margin: 0 0;
        background-color: #FEFEFE;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }

    .nav-links.active {
        display: block; /* Hamburger tıklandığında açılır */
    }

    .nav-links ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .nav-links a {
        font-size: 16px;
    }
}

@media (max-width: 430px){

}