

/* Görseldeki renk tonlarına en yakın renk kodları */
.location-icon {
    color: #c4a982; /* İkonların altın/kahve rengi */
    transition: color 0.3s ease;
}

.location-text {
    color: #6c5b53; /* Açıklama yazılarının grimsi kahve rengi */
    font-size: 1rem;
}

.location-time {
    color: #5a4b41; /* Süre (Dakika) yazılarının koyu kahve rengi */
}

/* Mouse üzerine gelince hafif büyüme efekti */
.hover-scale {
    transition: transform 0.3s ease;
    cursor: default;
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

        .hover-scale:hover .location-icon {
            color: #9d835e; /* Hover durumunda ikon biraz koyulaşır */
        }
/* Takip boşluğu */
.tracking-widest {
    letter-spacing: 0.15em;
}

/* Hover yukarı kaldırma efekti */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-up:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

/* Form elemanlarına tıklandığında beliren hafif gölge (Focus efekti) */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15) !important;
    background-color: #fff;
}
/*--

Author: W3layouts (Refactored for Bootstrap 5)
--*/
/* Kartların üzerine gelince yukarı kalkma efekti */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-up:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

    /* Kart içindeki resimlerin hafifçe büyümesi */
    .hover-up img {
        transition: transform 0.5s ease;
    }

    .hover-up:hover img {
        transform: scale(1.05);
    }
:root {
    --main-bg-color: #f8f9fa;
    --main-heading-color: #212129d6;
    --heading-color: #594d41;
    --para-color: #555a64;
    --theme-color: #3369e7; /* Temanızın ana mavisi */
    --theme-hover-color: #013ca6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--para-color);
    background-color: #fff;
}

a {
    text-decoration: none;
    transition: 0.3s all;
    color: var(--heading-color);
}

    a:hover {
        color: var(--theme-color);
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 600;
}

/* --- Bootstrap Override & Özel Butonlar --- */

/* Özel Tema Butonu */
.btn-theme {
    background-color: var(--theme-color);
    color: #fff;
    border: 2px solid var(--theme-color);
    padding: 10px 30px;
    transition: 0.5s ease-out;
}

    .btn-theme:hover {
        background-color: var(--theme-hover-color);
        border-color: var(--theme-hover-color);
        color: #fff;
    }

.btn-outline-theme {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 30px;
}

    .btn-outline-theme:hover {
        background-color: #fff;
        color: var(--theme-color);
    }

/* --- Navbar (Bootstrap Navbar Özelleştirme) --- */
.navbar-brand {
    color: var(--theme-color) !important;
    font-weight: 700;
    font-size: 30px;
}

.nav-link {
    color: var(--heading-color) !important;
    font-weight: 500;
    font-size: 16px;
}

    .nav-link:hover, .nav-link.active {
        color: var(--theme-color) !important;
    }

/* --- Slider / Banner Alanı --- */
/* Bootstrap Carousel kullanın, arka plan resimleri burada */
.slider-bg-1 {
    background: url("../images/23Nisan/23NisanHavuz.jpg") no-repeat center center/cover;
}

.slider-bg-2 {
    background: url("../images/dceee.jpeg") no-repeat center center/cover;
}

.slider-bg-3 {
    background: url("../images/23Nisan/23NisanBc.jpg") no-repeat center center/cover;
}

.slider-bg-4 {
    background: url("../images/dceeee.jpeg") no-repeat center center/cover;
}

.slider-bg-5 {
    background: url("../images/bg5.jpeg") no-repeat center center/cover;
}

.slider-bg-6 {
    background: url("../images/sevimlidost.jpeg") no-repeat center center/cover;
}

.carousel-item {
    min-height: 650px; /* Slider yüksekliği */
    position: relative;
}

/* Siyah Perde (Overlay) */
.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 30%;
}

    .carousel-caption h3 {
        font-size: 50px;
        text-transform: capitalize;
        font-weight: 700;
    }

/* --- Genel Bölüm Stilleri --- */
section {
    padding: 70px 0;
}

.bg-light-theme {
    background-color: var(--main-bg-color);
}

.section-title {
    font-size: 40px;
    text-align: center;
    color: var(--heading-color);
    margin-bottom: 50px;
    font-weight: 300;
}

/* --- Kartlar ve Gridler --- */
.card-custom {
    background: #fff;
    padding: 25px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

    .card-custom:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 40px;
    color: var(--theme-color);
    margin-bottom: 20px;
}

/* --- Footer --- */
.footer-29 {
    background: #171717;
    color: #aaa;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #aaa;
}

    .footer-list a:hover {
        color: #fff;
    }

.social-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #252525;
    color: #777;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    transition: 0.3s;
}

    .social-icon:hover {
        background: var(--theme-color);
        color: #fff;
    }

/* --- WhatsApp Butonu --- */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .float-whatsapp:hover {
        background-color: #20b857;
        color: #fff;
        transform: scale(1.1);
    }

/* --- Responsive Düzenlemeler --- */
@media (max-width: 768px) {
    .carousel-caption h3 {
        font-size: 30px;
    }

    .section-title {
        font-size: 30px;
    }

    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Kartların üzerine gelince oluşan efekt */
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-effect:hover {
        transform: translateY(-10px); /* 10px yukarı kaldır */
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Gölgeyi artır */
    }

/* --- FOOTER MODERN --- */
.footer-29 {
    background-color: #2c3e50; /* Header'daki koyu maviye yakın modern bir ton */
    color: #b0b0b0; /* Okunabilir gri metin */
    font-size: 15px;
    padding-top: 60px;
}

.footer-title-29 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    /* Başlık altındaki küçük çizgi */
    .footer-title-29::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: var(--primary-color); /* Sitenin ana mavisi */
    }

.footer-list-29 ul {
    padding: 0;
    list-style: none;
}

    .footer-list-29 ul li {
        margin-bottom: 12px;
    }

        .footer-list-29 ul li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

            .footer-list-29 ul li a:hover {
                color: #fff;
                transform: translateX(5px); /* Üzerine gelince sağa kayma efekti */
            }

/* Sosyal Medya İkonları */
.main-social-footer-29 a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

    .main-social-footer-29 a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

/* En Alt Telif Hakkı Çizgisi */
.bottom-copies {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    background-color: #22303f; /* Bir tık daha koyu */
}

/* Kartların üzerine gelince oluşan efekt */
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-effect:hover {
        transform: translateY(-10px); /* 10px yukarı kaldır */
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Gölgeyi artır */
    }
/* --- GENEL AYARLAR --- */
:root {
    --primary-color: #3369e7; /* Sitenizin ana mavisi */
    --secondary-color: #013ca6;
    --text-color: #555a64;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden; /* Yatay kaydırmayı engeller */
}

/* --- NAVBAR (MENÜ) --- */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 24px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 15px;
    transition: 0.3s;
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

/* --- SLIDER (CAROUSEL) --- */
/* Resim yollarını burada 'assets' klasörüne yönlendirdik */
.slider-item {
    height: 85vh; /* Ekranın %85'ini kaplasın */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Siyah Perde (Yazıların okunması için) */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* %40 koyuluk */
}

/* Slider Resimleri - Dosya Yolları DÜZELTİLDİ */
/* CSS dosyası 'wwwroot/css' içinde olduğu için '../assets' diyerek bir üst klasöre çıkıp assets'e giriyoruz */
.bg-img-1 {
    background-image: url('../assets/images/23Nisan/23NisanHavuz.jpg');
}

.bg-img-2 {
    background-image: url('../assets/images/sevimlidost.jpeg');
}

.bg-img-3 {
    background-image: url('../assets/images/bg5.jpeg');
}

.carousel-caption {
    bottom: 40%; /* Yazıyı biraz yukarı al */
    z-index: 2;
}

    .carousel-caption h1 {
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    }

/* --- WHATSAPP BUTONU --- */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .float-whatsapp:hover {
        background-color: #128c7e;
        color: #fff;
        transform: scale(1.1); /* Üzerine gelince büyür */
    }

/* --- FOOTER --- */
footer {
    background-color: #212529;
    color: #aaa;
    padding: 40px 0;
    margin-top: 50px;
}
:root {
    --primary-color: #2DF5E2; /* Kurumsal Lacivert */
    --secondary-color: #F53B55; /* Açık Mavi */
    --accent-color: #e67e22; /* Turuncu (Vurgu) */
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Üst Bar Gradyan */
.top-bar {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    font-size: 0.9rem;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

        .top-bar a:hover {
            color: var(--accent-color);
        }

/* Navbar */
.navbar-brand img {
    height: 65px;
    transition: 0.3s;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-left: 10px;
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 700;
    }

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    margin-top: auto;
}

    footer h6 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    footer a {
        color: #aaa;
        text-decoration: none;
        transition: 0.3s;
    }

        footer a:hover {
            color: #fff;
            padding-left: 5px;
        }

    footer ul li {
        margin-bottom: 10px;
    }

.social-icon {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
    transition: 0.3s;
}

    .social-icon:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-3px);
    }

/* Whatsapp Butonu */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 100;
    box-shadow: 2px 2px 3px #999;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        background-color: #128c7e;
        color: white;
    }

/* Yukarı Çık Butonu */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}


.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-up:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

/* Liste öğesinin üzerine gelince arka plan değişimi */
.hover-bg-light {
    transition: background-color 0.3s ease, transform 0.2s;
}

    .hover-bg-light:hover {
        background-color: #f8f9fa; /* Hafif gri */
        transform: scale(1.01); /* Çok hafif büyüme */
        cursor: pointer;
    }

.ls-2 {
    letter-spacing: 2px;
}
