﻿#main-content {
    background-color: whitesmoke;
}

html {
    font-size: 14px;
    font-family: "Playfair Display", serif;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    font-family: "Playfair Display", serif;
}

.img-thumbnail {
    padding: .25rem !important;
    background-color: #fff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: .25rem !important;
    max-width: 100% !important;
    height: 50px !important;
    width: 80px !important;
}

@media (max-width: 991px) {
    .img-thumbnail {
        height: 40px !important;
        width: 50px !important;
    }
}

.custom-link {
    display: inline-block;
    padding: 10px 70px;
    border: 2px solid #C2926B;
    color: #C2926B;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    margin-right: 10px;
}

    .custom-link:hover {
        background-color: #C2926B;
        color: white;
    }

.vh100 {
    height: 100vh;
    max-height: 100vh;
}

.main_color {
    color: #B97448
}

.main_colordark {
    color: saddlebrown
}


.entry_hover:hover {
    transform: scale(1.1);
    cursor: pointer;
}


@media(max-width:1200px) {
    .entry_logo {
        height: 50%;
    }

    .entry_project {
        height: 43%;
    }

    .entry_p {
        color: #c2926b;
        font-size: 35px;
        text-align: center;
    }

        .entry_p span {
            color: #c2926b;
            font-size: 24px;
        }
}


@media(min-width:1200px) {
    .entry_logo {
        height: 100%;
    }

    .entry_project {
        height: 98%;
    }

    .entry_p {
        color: #c2926b;
        font-size: 35px;
        text-align: center;
    }

        .entry_p span {
            color: #c2926b;
            font-size: 24px;
        }
}

.about-text {
    font-size: 20px; /* Varsayılan yazı boyutu */
}

@media (max-width: 992px) {
    .about-text {
        font-size: 18px; /* Tablet görünümü için */
    }
}

@media (max-width: 768px) {
    .about-text {
        font-size: 16px; /* Mobil görünüm için */
    }
}



.entry_logo,
.ustten_yukleme,
.alttan_yukleme {
    opacity: 0; /* Baþlangýçta öðeler görünmez olacak */
    transform: translateX(0); /* Baþlangýçta konumda kalacak */
    animation-duration: 1s; /* Animasyon süresi */
    animation-fill-mode: both; /* Animasyon tamamlandýðýnda son halini korur */
}

/* Soldan yüklenme */
.soldan_yukleme {
    animation-name: soldanYukleme;
}

/* Üstten yüklenme */
.ustten_yukleme {
    animation-name: usttenYukleme;
}

/* Alttan yüklenme */
.alttan_yukleme {
    animation-name: alttanYukleme;
}

/* Soldan kayma animasyonu */
@keyframes soldanYukleme {
    0% {
        transform: translateX(-100%); /* Sol dýþarýda */
        opacity: 0;
    }

    100% {
        transform: translateX(0); /* Orijinal pozisyon */
        opacity: 1;
    }
}

/* Üstten kayma animasyonu */
@keyframes usttenYukleme {
    0% {
        transform: translateY(-100%); /* Üst dýþarýda */
        opacity: 0;
    }

    100% {
        transform: translateY(0); /* Orijinal pozisyon */
        opacity: 1;
    }
}

/* Alttan kayma animasyonu */
@keyframes alttanYukleme {
    0% {
        transform: translateY(100%); /* Alt dýþarýda */
        opacity: 0;
    }

    100% {
        transform: translateY(0); /* Orijinal pozisyon */
        opacity: 1;
    }
}
/*********************Navbar**********************/




.align-content {
    align-content: center;
}




.navbar {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    background-color: #B97448;
}


    .navbar .nav-link {
        font-size: 1.3rem;
        font-weight: 500;
        color: white;
    }



        .navbar .nav-link.active {
            color: rgba(255, 225, 185, 1);
            border-bottom: 2px solid #F5EFE7;
        }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    #mobileMenu {
        align-items: center;
        width: 100%;
    }
}

ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.fs-6 {
    font-size: 40px !important;
    margin-bottom: 10px;
}



.btn-warning {
    background-color: #B97448;
    color: white;
    border: 1px solid #B97448;
}

    .btn-warning:hover {
        color: #B97448;
        background-color: white;
        border: 1px solid #B97448;
    }



.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    color: #e1306c;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: #e1306c;
        color: black;
        border-color: white;
    }

.social-icon1 {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    color: yellow;
    background-color:;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon1:hover {
        background-color: yellow;
        color: black;
        border-color: white;
    }

#projectSlider::-webkit-scrollbar {
    display: none; /* Kaydırma çubuğunu gizle */
}

.property-container {
    background-color: rgba(166, 124, 102, 0.7);
    transition: 0.3s;
}

    .property-container:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transform: scale(1.02);
    }

.px_600 {
    width: 500px;
}


.bg-kahverengi {
    background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('../img/2d37ef63-1548-44fd-b296-9962a165ab58.png');
}


.text-orange {
    color: #B97448;
}

.car-box {
    background-color: #F6F1ED;
}

.car-box1 {
    background-color: #F6F1ED;
    border: 2px solid black;
}

.section-title h2 {
    font-weight: 800;
    font-size: 2rem;
    color: #1e1e1e;
}

.title-underline {
    width: 120px;
    height: 2px;
    background-color: #B97448;
    margin-top: 10px;
}

.detail-item {
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px dashed #e0d6cb;
}

.detail-item1 {
    font-size: 1.1rem;
}

    .detail-item1 .label {
        color: #B87333;
        font-weight: 600;
        min-width: 110px;
        display: inline-block;
    }

.detail-item .label {
    color: #B87333;
    font-weight: 600;
    min-width: 110px;
    display: inline-block;
}

.detail-item .value {
    color: #333;
}




.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-color:rgba(0,0,0,0.7) !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}