/* GENEL */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #222;
}

/* NAVBAR */
.navbar {
    background: #111 !important;
    border-bottom: 4px solid #ffc107;
}

.navbar-brand {
    color: #ffc107 !important;
    font-size: 22px;
}

/* TELEFON BUTONU */
.btn-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: bold;
}

.btn-warning:hover {
    background: #e0a800;
}


/* BÖLÜM BAŞLIKLARI */
.section-title {
    font-weight: 800;
    position: relative;
    margin-bottom: 40px;
    color: #111;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 5px;
    background: #ffc107;
    display: block;
    margin: 15px auto;
}


/* HİZMET KUTULARI */
.icon-box {
    background: white;
    border-radius: 15px;
    border-top: 5px solid #ffc107;
    transition: .3s;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.15)!important;
}

.icon-box h4 {
    font-weight:700;
}


/* DAMALI TAKSİ DETAYI */
.icon-box::before {
    content:"";
    display:block;
    height:8px;
    margin:-16px -16px 20px;
    background:
    repeating-linear-gradient(
        45deg,
        #111,
        #111 10px,
        #ffc107 10px,
        #ffc107 20px
    );
}


/* ARAÇ KARTLARI */
.car-card {
    overflow:hidden;
    border:none;
    border-radius:20px;
}

.car-card img {
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.4s;
}

.car-card:hover img {
    transform:scale(1.05);
}

.car-card .card-body {
    background:#111;
    color:#ffc107;
}


/* FİLO ARKA PLAN */
#filo {
    background:#f5f5f5 !important;
}


/* HARİTA */
iframe {
    width:100%;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}


/* FOOTER */
footer {
    background:#111;
    color:white;
    border-top:5px solid #ffc107;
}


/* TAKSİ VURGUSU */
#hizmet::before {
    display:block;
    background:#ffc107;
    color:#111;
    text-align:center;
    padding:12px;
    font-size:20px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:40px;
}

.hero{
    min-height:520px;
    padding-top:90px;
    background:
        linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
        url("/img/hero.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero h1{
    font-weight:700;
    align-items: center;
}

.hero p{
    max-width:550px;
    font-size:1.2rem;
}
/* MOBİL */
@media(max-width:768px){

.car-card img{
    height:250px;
}

.navbar-brand{
    font-size:18px;
}

@media (max-width:768px){

    .hero{
        height:430px;
        text-align:center;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

}

}