/* Project inner pages — loaded only on /projects/ and /tr/projeler/ pages */

/* Navbar: slider image background (non-sticky state only) */
.menu-area:not(.sticky-menu) {
    background-image: url('/assets/img/slider/01.jpg');
    background-size: cover;
    background-position: center top;
}
/* Brand and links readable on image */
.menu-area:not(.sticky-menu) .navbar-brand {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.menu-area:not(.sticky-menu) .navbar-brand:hover {
    color: #fff;
}

/* Page Header: solid blue */
.page-header-area {
    background-color: #3f8ed9;
    padding: 80px 0 40px;
    color: #fff;
}
.page-header-area .breadcrumb-nav {
    font-size: 13px;
    margin-bottom: 12px;
}
.page-header-area .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.page-header-area .breadcrumb-nav a:hover {
    color: #fff;
    text-decoration: underline;
}
.page-header-area .breadcrumb-nav span {
    color: #fff;
}
.page-header-area h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}
.page-header-area p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

/* Project Image Carousel */
.project-img-carousel {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
}
.project-img-carousel .carousel-inner > .item > img {
    width: 100%;
    height: auto;
    display: block;
}
.project-img-carousel .left.carousel-control,
.project-img-carousel .right.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(63, 142, 217, 0.72);
    background-image: none;
    opacity: 1;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.project-img-carousel .left.carousel-control {
    left: 12px;
}
.project-img-carousel .right.carousel-control {
    right: 12px;
}
.project-img-carousel .carousel-control:hover,
.project-img-carousel .carousel-control:focus {
    background: #f05f40;
    background-image: none;
    opacity: 1;
}
.project-img-carousel .carousel-control .fa {
    font-size: 18px;
    color: #fff;
    text-shadow: none;
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}

/* Reduce top padding on project detail section */
.project-detail-area.section-big {
    padding-top: 40px;
}
.project-img-carousel .carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}
.project-img-carousel .carousel-indicators .active {
    background-color: #fff;
}

/* Project Detail Content */
.project-detail-area p {
    text-align: justify;
}
.project-detail-area h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
    border-left: 3px solid #3f8ed9;
    padding-left: 12px;
}
.project-detail-area ul.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-detail-area ul.feature-list li {
    padding: 7px 0 7px 24px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}
.project-detail-area ul.feature-list li:before {
    content: '\f058';
    font-family: FontAwesome;
    color: #3f8ed9;
    position: absolute;
    left: 0;
}

/* Sidebar */
.project-sidebar {
    background: #f8f9fa;
    border-left: 3px solid #3f8ed9;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 4px 4px 0;
}
.project-sidebar h4 {
    color: #3f8ed9;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
}
.project-sidebar p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.project-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-sidebar ul li {
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
}
.project-sidebar ul li:last-child {
    border-bottom: none;
}
.project-sidebar ul li a {
    color: #555;
    font-size: 14px;
}
.project-sidebar ul li a:hover {
    color: #3f8ed9;
}
.project-sidebar ul li.active-project span {
    color: #f05f40;
    font-weight: 600;
}
