﻿.franchseBTN {
    background-color: #e3000e !important;
    color: #fff !important;
    margin-left: 30px;
    line-height: 50px !important;
    height: auto !important;
    transition: 1s all;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: background-color 1s ease, box-shadow 1s ease;
}
    .franchseBTN:hover {
        background-color: #ff0010 !important;
        box-shadow: 0px 0px 10px #cf0000;
    }
    .header-bosluk{
    padding-left: 270px;
    padding-right:270px;
}

#about-1 {
    background-image: url('/upload/Resimler/hakkimizda_bg.jpg');
}

.footer {
 
    background-color: #000;
  
}

.page-hero-section {
 
    background-image: url(/Upload/resimler/ust_bg.jpg) !important;
}

.menu-5-txt h5, .menu-6-txt h5 {
    margin-top: 5px;
    margin-bottom: 5px;
    min-height: 35px;
    display: flex;
    align-items: center;
    font-size: 19px;
}
.menu-6-txt p {
    font-size: 0.95rem;
    margin-bottom: 0px;
    min-height: 90px;
}
.menu-6-txt {
    overflow: hidden;
    padding: 10px 15px;
}

#hero-carousel .item img {
    display: block;
    width: 100%;
  
    object-fit: cover;
}

/* Ok butonları için */
.owl-prev-btn, .owl-next-btn {
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        pointer-events: all;
    }

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.7);
}

    .owl-dot:hover,
    .owl-dot:focus {
        background: rgba(255, 255, 255, 0.7);
    }

    .owl-dot.active {
        background: #ffffff;
        width: 14px;
        height: 14px;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }
.scroll-down-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.scroll-link {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

.scroll-down-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 14px;
    position: relative;
    margin: 0 auto;
}

.scroll-down-indicator .wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelMove 1.5s infinite;
}

.scroll-down-indicator .scroll-text {
    margin-top: 8px;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
    opacity: 0.8;
}

@keyframes wheelMove {
    0% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0.5;
    }

    100% {
        top: 8px;
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

body {
    opacity: 0;
    transition: opacity 0.9s ease;
}

    body.loaded {
        opacity: 1;
    }