 body {
    margin: 0;
    padding: 0;
    background-image: url('wp2641150.webp');
    background-size: cover; /* Arka planı tam ekran kapla */
    background-repeat: no-repeat; /* Arka plan tekrarlanmasın */
    background-attachment: fixed; /* Arka plan kaydırma sırasında sabit kalsın */
    background-position: center; /* Arka planı ortala */
    font-family: 'Merriweather', serif;
}
        .header-logo {
            width: 150px;
            height: auto;
        }

        .contact-info {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }

        .flags img {
            width: 30px;
            height: auto;
            cursor: pointer;
        }
        .floating-contact .contact-item:hover {
            width: 256px;
        }

        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .contact-item {
            display: flex;
            align-items: center;
            position: relative;
            gap: 10px;
        }

        .qr-code {
            position: absolute;
            display: none;
            width: 256px;
            height: 256px;
            background-color: white;
            padding: 5px;
            border: 1px solid #ccc;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            z-index: 2000;
            top: 50%;
            transform: translateY(-50%);
            right: 100%;
        }

        .contact-item:hover .qr-code {
            display: block;
        }
        /* Font için Google Fonts */
/* Font için Google Fonts */
/* Font için Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap');

.section-header {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    text-align: left;
    padding: 15px 0;
    background: rgba(192, 192, 192, 0.1); /* Çok hafif metalik gri arka plan */
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
}

.section-header::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -5px;
    height: 3px;
    width: 100px; /* Çizgi uzunluğu */
    border-radius: 2px;
}
/* Responsive tasarım için ayarlar */
@media (max-width: 768px) {
    .section-header {
        font-size: 1.3rem;
    }
}


.advertisement-section .section-header::before {
    background: #007bff; /* Mavi renk */
}

.suggestion-section .section-header::before {
    background: #28a745; /* Yeşil renk */
}

.contact-section .section-header::before {
    background: #dc3545; /* Kırmızı renk */
}

.products-section .section-header::before {
    background: #ffc107; /* Sarı renk */
}section {
    background-color: #fff; /* Beyaz arka plan */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Kutu gölgesi */
    margin: 30px auto; /* Üst ve alt boşluk */
    padding: 30px;
    border-radius: 8px; /* Hafif yuvarlatılmış köşeler */
    max-width: 1200px; /* İçerik genişliği sınırlı */
}

/* Footer alanı tam genişlik için */
/* Footer alanı */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    /*width: 100vw;*/
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

/* Footer başlıkları */
/* Footer başlıkları */
footer h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    color: #F8F9FA;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 10px;
    padding-bottom: 5px;
    display: inline-block;
}

/* Başlıkların altına çizgi ekleme */
footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px; /* Çizgi uzunluğu */
    height: 4px; /* Çizgi kalınlığı */
    background-color: #e63946; /* Varsayılan kırmızı renk */
    border-radius: 2px;
    z-index: 1;
}

/* Başlıkların renklendirilmesi */
footer h5.company::after {
    background-color: #007bff; /* Mavi tonunda bir renk */
}

footer h5.auto-parts::after {
    background-color: #28a745; /* Yeşil tonunda bir renk */
}

footer h5.news::after {
    background-color: #ffc107; /* Sarı tonunda bir renk */
}

footer h5.contact::after {
    background-color: #dc3545; /* Kırmızı tonunda bir renk */
}



/* Footer linkler */
.footer-links a {
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.
.site-header {
    background-color: #2C2C2C;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 0px 20px;
}

/* Logo ayarları */
.site-logo {
    width: 120px;
    height: auto;
}

/* İletişim bilgileri ve bayraklar için flex column düzeni */
.d-flex.flex-column.align-items-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* İletişim bilgileri */
.contact-info {
    font-size: 0.9rem;
    color: #F8F9FA;
    display: flex;
    gap: 15px;
}

/* İkon ayarları */
.contact-info i {
    margin-right: 5px;
}

/* Bayrak ikonları */
.flags {
    display: flex;
    gap: 10px;
}

.flags img {
    width: 35px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flags img:hover {
    transform: scale(1.2);
}
/* Diğer CSS kodlarınız burada... */
        .site-title {
            font-family: 'EB Garamond', serif;
            font-weight:bold;
            color: #FFFFFF; /* Beyaz renk */
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            margin-left: 15px; /* Logodan biraz uzaklaştırmak için boşluk ekledik */
        }

        .site-title h1 {
            margin: 0;
            font-size: 2.4rem; /* "Maisuda" için font boyutu */
            line-height: 1.2; /* Satır yüksekliği */
        }

        .site-title h2 {
            margin: 0;
            font-size: 1.2rem; /* "Auto" için font boyutu */
            line-height: 1.2; /* Satır yüksekliği */
        }

        .logo-container {
            display: flex;
            align-items: center;
        }
        @media (max-width: 768px) {
            .flags img {width: 24px;}
        }
@media (max-width: 980px) {
    .floating-contact {display: none;}
            .contact-info{
                display: none !important;
            }
.flags {
                display: none;
            }
            .mobile-contact-info {
                display: block;
                padding-top: 10px;
                text-align: center;
                font-size: 0.9rem;
                color: #F8F9FA;
                background-color: #2C2C2C;
                padding-bottom: 10px;
            }

            .mobile-contact-info .flags {
                display: flex;
                justify-content: center;
                gap: 10px;
                padding-top: 10px;
            }
        }

        @media (min-width: 981px) {
            .mobile-contact-info {display: none;}
        }
.floating-contact {
    position: fixed;
    right: 0;
    top: 46%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-contact .contact-item {
    width: 48px;
    height: 48px;
    background-color: #343a40;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: width 0.4s ease, transform 0.4s ease;
    color: white;
    overflow: hidden;
}

.floating-contact .contact-item img {
    opacity: 1 !important;  
    transition: none !important;
}

.floating-contact .contact-item span {
    opacity: 0;
    white-space: nowrap;
    color: white;
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-left: 10px;
}

/* Fareyle bir ikona gelindiğinde tüm ikonlar genişler */
.floating-contact:hover .contact-item {
    width: 200px;
}

/* Fareyle bir ikona gelindiğinde tüm metinler görünür hale gelir */
.floating-contact:hover .contact-item span {
    opacity: 1;
    transform: translateX(0);
}