﻿ 
/* Carousel styles */
#heroCarousel .carousel-item {
    height: 90vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

#heroCarousel .carousel-caption {
    bottom: 20%;
  
    opacity: 0;
  
    transition: all .6s ease;
}

    #heroCarousel .carousel-caption.animate {
        opacity: 1;
        transform: translateY(0);
    }
/* Floating buttons */
.action-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1100;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 50%;
}

    .action-btn + .action-btn {
        left: 80px;
    }
/* Section titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: .5rem;
}

    .section-title::after {
        content: '';
        width: 50px;
        height: 3px;
        background: #dc3545;
        position: absolute;
        bottom: 0;
        left: 0;
    }
/* Gallery icons */
.gallery-item {
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: auto;
    }

.icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 2.5rem;
    opacity: .8;
}
/* Google review section */
#googleReviewSection {
    background: #4285f4;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

    #googleReviewSection img {
        height: 40px;
        margin-right: 15px;
    }
/* Video section */
#videoTanitim {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

    #videoTanitim .video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://picsum.photos/1920/600?random=20') center/cover no-repeat;
        z-index: -1;
    }

    #videoTanitim .play-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

/* 1) Topbar sabit */
.sticky-topbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    background-color: rgb(157 19 8) !important;
    border-bottom: 2px solid #f34949;
}
/* 2) Navpill wrapper */
.nav-pills-wrapper {
    position: sticky;
    top: 60px; /* topbar yüksekliği kadar */
    z-index: 1030;
    pointer-events: none; /* wrapper’ın arka planına tıklamayı engelle */
}
/* 3) Navpills */
.nav-pills {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    pointer-events: auto;
}
/* 4) Slider’ı nav’in altına çek */
#heroCarousel {
    margin-top: -60px; /* nav-pills-wrapper’in biraz üstüne taşır */
    z-index: 1;
}

    #heroCarousel .carousel-item {
        height: 90vh;
        background-size: cover;
        background-position: center;
    }

    #heroCarousel .carousel-caption {
        color: #fff;
    }
/* Floating butonlar */
.action-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 50%;
}

    .action-btn + .action-btn {
        left: 80px;
    }

 