html {
    font-size: 14px;
}

@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%;
}

body {
    margin-bottom: 60px;
}
/* Navbar arka plan */


.custom-navbar {
    background-color: #212529;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C8A951;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Sadece anasayfada NAVBAR TRANSPARAN */
body.home .custom-navbar {
    background: rgba(0, 0, 0, 0.25) !important;
    /* backdrop-filter: blur(6px);  cam efekti */
    border-bottom: none;
}

body:not(.home) main,
body:not(.home) .content-wrap {
    padding-top: 100px !important;
}

/* Logo */
.nav-logo {
    height: 80px;
    margin-right: 20px;
    margin-left: 300px;
}

/* Marka yazısı */
.nav-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.custom-navbar {
    border-bottom: 2px solid #C8A951;
}


/* Menü itemleri */
.nav-menu {
    color: #fff !important;
    font-size: 20px;
    margin: 0 20px;
    transition: 0.3s;
}

    /* Hover efekti */
    .nav-menu:hover {
        color: #C8A951 !important; /* Altın rengi: emlak sektöründe premium havası verir */
    }

/* Mobil uyumluluk */
@media (max-width: 991px) {
    .nav-logo {
        height: 60px;
    }

    .nav-title {
        font-size: 24px;
    }

    .nav-menu {
        margin: 10px 0;
        font-size: 20px;
    }
}
.navbar-nav {
    margin-right: 275px; /* Menü bloğunun tamamını sola kaydırır */
}

/* Footer arka plan (navbar ile aynı renk) */
.footer-section {
    background-color: #212529;
    color: #fff;
    margin-top: 50px;
    position: relative;
    padding-top: 40px;
}

    /* Footer üstündeki altın çizgi */
    .footer-section::before {
        content: "";
        width: 100%;
        height: 2px; /* Çizgi kalınlığı */
        background-color: #C8A951; /* Altın rengi */
        position: absolute;
        top: 0;
        left: 0;
    }

/* Logo */
.footer-logo {
    height: 80px;
}

/* Paragraflar */
.footer-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Başlıklar */
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #C8A951;
}

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 17px;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #C8A951;
        }

/* Alt kısım */
.footer-line {
    border-color: #444;
}

.footer-copy {
    color: #aaa;
    margin-top: 10px;
    font-size: 15px;
}

.hero-video {
    
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu kırparak tam oturtur */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 91.5%;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

    .hero-overlay h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero-overlay p {
        font-size: 24px;
    }

.video-container {
    position: relative;
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

#mainVideo {
    width: 100%;
    height: 999px;
}

/* Alt butonlar */
.bottom-buttons {
    position: absolute;
    bottom: 110px; /* Videonun altına oturtur */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

/* Nokta şeklinde butonlar */
.btn-item {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-item.active {
        background: white;
        transform: scale(1.2);
    }


/* Video Slider */
/*.video-slider {
    background-color: #212529;
    padding: 20px 0;
    text-align: center;
}

.slider-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    padding: 0 20px;
}

.slider-thumb {
    width: 200px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

    .slider-thumb:hover {
        border-color: #C8A951; 
    }

    .slider-thumb.active {
        border: 2px solid #C8A951;
    }*/

.projects-section {
    padding: 60px 20px;
    background-color: #f8f9fa; /* açık gri arka plan */
}

.project-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

.project-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529; /* koyu gri / siyah */
}

.project-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.project-location {
    font-size: 20px;
    color: #6c757d; /* gri renk */
    
}

.project-card-link {
    text-decoration: none; /* link alt çizgisi kalkar */
    color: inherit; /* link yazısı renk değiştirmez */
    display: block;
}

.project-detail-gallery {
    text-align: center;
    margin: 40px 0;
}

.main-image img {
    width: 1000px;
    height: 600px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: opacity 0.3s;
}

.thumbnail-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    /*overflow-x: auto;*/
    padding: 0 10px;
}

.thumb {
    width: 100px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: transform 0.3s, border-color 0.3s;
}

    .thumb:hover {
        transform: scale(1.05);
    }

    .thumb.active {
        border-color: #C8A951; /* altın renk */
    }


/* Eğer Bootstrap gibi bir şey kullanıyorsan container padding'lerini sıfırla */
.no-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important; /* container etkisini sıfırlar */
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    margin-top: -100px; /* video yukarı çıksın */
    z-index: 1;
}

.project-hero-logo {
    width: 130px; /* Logo boyutu */
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery img {
    width: 100%;
    height: 250px; /* Tüm görseller için sabit yükseklik */
    object-fit: cover; /* Görseli taşmadan doldurur */
    border-radius: 10px;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .accordion-button {
        font-weight:bold;
    }


/* WhatsApp floating button */
#whatsapp-float {
    position: fixed;
    right: 20px; /* sağ kenardan uzaklık */
    bottom: 20px; /* alt kenardan uzaklık */
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #25D366, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    z-index: 99999; /* navbar üzerine gelmesin diye yeterince yüksek */
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
    text-decoration: none;
}

    #whatsapp-float:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
    }

    /* SVG rengi beyaz olmak için */
    #whatsapp-float .wh-icon {
        width: 30px;
        height: 30px;
        color: #fff;
        display: block;
    }

/* Küçük ekranlarda biraz küçült */
@media (max-width: 480px) {
    #whatsapp-float {
        width: 56px;
        height: 56px;
        right: 14px;
        bottom: 14px;
    }

        #whatsapp-float .wh-icon {
            width: 26px;
            height: 26px;
        }
}

/* Eğer navbar veya başka bir fixed öğe ile çakışma varsa:
   Butonun navbar'ın altına kalmaması için z-index'i navbar'dan yüksek yap.
   Ayrıca navbar ile tam çakışmayı önlemek için bottom veya right değerini değiştir. */

.contact-header {
    background: linear-gradient(135deg, #0d2b45, #174a73);
    color: white;
}

.contact-info-card a {
    color: #174a73;
    text-decoration: none;
    font-weight: 500;
}

    .contact-info-card a:hover {
        text-decoration: underline;
    }

.btn-golden {
    background-color: #d4af37;
    color: white;
    border: none;
    transition: 0.3s;
}

    .btn-golden:hover {
        background-color: #b8952f;
    }

.contact-form-card,
.contact-info-card {
    background: #ffffff;
}

.dropdown-menu {
    background-color: #212529;
    border: none;
    padding: 8px 0;
}

    .dropdown-menu .dropdown-item {
        color: #fff;
        font-size: 18px;
        padding: 10px 20px;
    }

        .dropdown-menu .dropdown-item:hover {
            background-color: #C8A951; /* gold hover */
            color: #000;
        }


.whatsapp-link i {
    font-size: 24px;
    color: #25D366;
    transition: 0.25s;
}

.whatsapp-link:hover i {
    color: #1EBE56;
    transform: scale(1.15);
}


.phone-link i {
    font-size: 22px;
    color: #ffffff; /* beyaz ikon */
    transition: 0.25s ease;
}

.phone-link:hover i {
    color: #C8A951; /* senin navbar hover rengin ile uyumlu */
    transform: scale(1.15);
}

.about-section p {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    line-height: 1.4;
}

@media(max-width: 768px) {
    .about-section p {
        font-size: 22px;
        padding: 0 15px;
    }
}
/* ANASAYFA CAROUSEL CSS */

.carousel-item {
    position: relative; /* Logo için gerekli */
}

.project-logo {
    position: absolute;
    top: 20px; /* Yukarıdan boşluk */
    right: 20px; /* Sağdan boşluk */
    width: 180px; /* Logonun boyutu */
    height: auto;
    z-index: 10; /* Üste gelsin */
    opacity: 0.9; /* İstersen kaldırabilirsin */
    background: rgba(255,255,255,0.6);
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .project-logo {
        width: 120px; /* Mobilde daha küçük */
        top: 10px;
        right: 10px;
    }
}

#projectsCarousel {
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-img {
    width: 100%;
    height: 60vh; /* Dilersen artır: 80vh yapabilirsin */
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    right: 20px; /* köşeye yaklaşır */
    bottom: 20px;
    left: auto; /* sola sabitlenmesin */
    text-align: right;
    background: rgba(0, 0, 0, 0.4); /* yarı şeffaf koyu arka plan */
    backdrop-filter: blur(6px); /* blur efekti */
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 300px; /* kutu çok büyümesin */
}

@media(max-width: 768px) {
    .carousel-img {
        height: 45vh;
    }

    .carousel-caption h5 {
        font-size: 24px;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}

.slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* captionın altı */
}



/* ------------ */