﻿/* Genel */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Üst Çubuk */
.topbar {
    background: #222;
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .topbar .topbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .topbar .contact-info span {
        margin-right: 20px;
        font-weight: 500;
    }

    .topbar .social-links a {
        margin-left: 15px;
        display: inline-flex;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

        .topbar .social-links a:hover {
            text-decoration: underline;
        }

    .topbar .social-links .icon {
        width: 28px;
        height: 28px;
        margin-right: 5px;
        background-color: #fff;
        border-radius: 50%;
        padding: 2px;
    }

/* Menü Çubuğu */
.menu-bar {
    background: #ffc107; /* Altın sarısı */
    padding: 15px 0;
    position: sticky;
    top: 50px;
    width: 100%;
    z-index: 9998;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .menu-bar .container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .menu-bar ul.menu {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 25px;
    }

        .menu-bar ul.menu li a {
            color: #222;
            font-weight: bold;
            padding: 8px 15px;
            transition: 0.3s;
            border-radius: 4px;
        }

            .menu-bar ul.menu li a:hover {
                background: #e0a800;
                color: #fff;
            }

/* Mobil Menü */
.mobile-menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #222;
}

@media (max-width: 768px) {
    .topbar .topbar-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topbar .contact-info {
        margin-bottom: 10px;
    }

    .menu-bar ul.menu {
        flex-direction: column;
        display: none;
        width: 100%;
        text-align: center;
    }

        .menu-bar ul.menu.show {
            display: flex;
        }

    .mobile-menu-icon {
        display: block;
        position: absolute;
        right: 20px;
        top: 12px;
    }
}

/* WhatsApp Floating */
.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s;
}

    .whatsapp-floating:hover {
        transform: scale(1.1);
    }

    .whatsapp-floating img {
        width: 55px;
        height: 55px;
    }

/*.hero-slider .carousel-inner img {
    width: 50%;*/ /* genişliği alanına uyarlar */
    /*height: 5%;*/ /* yüksekliği orantılı yapar */
    /*object-fit: cover;*/ /* alanı doldurur, bazı kısımları kırpılabilir */
/*}*/

.hero-slider .carousel-inner img {
    width: 100%;
    height: 650px;
     object-fit: cover;
}

@media (max-width: 768px) {
    .hero-slider .carousel-inner img {
        height: 250px;  Mobilde daha kısa 
    }
}

/* İleri / Geri Butonları Stil */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

/* HİZMET PANELİ */
.service-panel {
    width: 100%;
    display: none;
    background: #fff4c4;
    padding: 30px;
    border-top: 2px solid #f1c40f;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* 3 kolon (3 yan yana), 6 kutu */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-panel {
    width: 100%;
    display: none; /* Başlangıçta kapalı */
    background: #fff4c4;
    padding: 30px;
    border-top: 2px solid #f1c40f;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 yan yana */
    gap: 20px;
}

.service-box {
    background: #f7c301;
    padding: 20px;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}

    .service-box:hover {
        background: #e5af00;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .service-box h4 {
        margin-bottom: 8px;
    }

    .service-box p {
        margin: 0;
    }

/* Mobilde tek sütun */
@media(max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}
.hashtagler {
    display: none;
}

