/* Genel Stiller */
body {
    font-family: 'Lato', sans-serif;
    color: #444;
    background-color: #f8f9fa;
    /* Açık bir arka plan rengi */
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bree Serif', serif;
    color: #0F1B2D;
    /* Gece Mavisi */
}

a {
    color: #FF6B35;
    /* Ateş Turuncusu */
    text-decoration: none;
}

a:hover {
    color: #0F1B2D;
    /* Gece Mavisi */
    text-decoration: none;
}

.btn-primary {
    background-color: #FF6B35;
    /* Ateş Turuncusu */
    border-color: #FF6B35;
}

.btn-primary:hover {
    background-color: #e05a2d;
    border-color: #e05a2d;
}

.btn-outline-primary {
    color: #FF6B35;
    border-color: #FF6B35;
}

.btn-outline-primary:hover {
    background-color: #FF6B35;
    color: #fff;
}

.text-primary {
    color: #FF6B35 !important;
}

.bg-primary {
    background-color: #FF6B35 !important;
}

.text-secondary {
    color: #0F1B2D !important;
    /* Gece Mavisi */
}

.bg-secondary {
    background-color: #0F1B2D !important;
    /* Gece Mavisi */
}

.text-accent {
    color: #FFD700 !important;
    /* Altın Sarısı */
}

.bg-accent {
    background-color: #FFD700 !important;
    /* Altın Sarısı */
}


/* Navbar Stilleri */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Bree Serif', serif;
    font-size: 1.8rem;
    color: #FF6B35 !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #FF6B35;
    /* Altın Sarısı */
}

/* Hero Section */
#hero {
    position: relative;
    color: white;
    /* Parallax benzeri bir efekt için arkaplan sabitlenebilir */
    /* background-attachment: fixed; */
}

#hero::before {
    /* Hafif bir overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 27, 45, 0.5);
    /* Gece Mavisi Overlay */
}

#hero .container {
    position: relative;
    /* Overlay'in üzerinde kalması için */
    z-index: 2;
}

/* Page Header Stilleri */
.page-header {
    position: relative;
    color: white;
    /* background-attachment: fixed; */
    /* İsteğe bağlı parallax */
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 27, 45, 0.6);
    /* Gece Mavisi Overlay */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}


/* Kart Stilleri */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-title a:hover {
    color: #FF6B35;
    /* Ateş Turuncusu */
}

/* Footer Stilleri */
#footer {
    background-color: #0F1B2D;
    /* Gece Mavisi */
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

#footer h5 {
    color: #FFD700;
    /* Altın Sarısı */
    font-family: 'Bree Serif', serif;
    margin-bottom: 1.5rem;
}

#footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

#footer a:hover {
    color: #FFD700;
    /* Altın Sarısı */
}

#footer .social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

#footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* AOS Animasyonları için temel ayar */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

/* Renk Paleti Uygulamaları */
.bg-gece-mavisi {
    background-color: #0F1B2D !important;
}

.text-gece-mavisi {
    color: #0F1B2D !important;
}

.bg-ates-turuncusu {
    background-color: #FF6B35 !important;
}

.text-ates-turuncusu {
    color: #FF6B35 !important;
}

.bg-altin-sarisi {
    background-color: #FFD700 !important;
}

.text-altin-sarisi {
    color: #FFD700 !important;
}

/* Timeline Stilleri (Hakkımızda sayfası için) */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0F1B2D;
    /* Gece Mavisi */
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    /* Timeline noktaları */
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -14px;
    /* Noktanın konumu */
    background-color: white;
    border: 4px solid #FF6B35;
    /* Ateş Turuncusu */
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -12px;
    /* Sağdaki item için noktanın konumu */
}

.timeline-content {
    padding: 20px 30px;
    background: #ffffff;
    /* İçerik arka planı */
    position: relative;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .timeline-content {
    text-align: right;
    /* Soldaki item için içerik hizalaması */
}

.timeline-icon {
    /* İkonların bulunduğu daire */
    position: absolute;
    width: 50px;
    height: 50px;
    right: -27px;
    /* İkonun konumu */
    background-color: #FFD700;
    /* Altın Sarısı */
    top: 22px;
    border-radius: 50%;
    z-index: 2;
    /* Noktaların üzerinde kalması için */
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.right .timeline-icon {
    left: -23px;
    /* Sağdaki item için ikonun konumu */
}

/* Mobil için Timeline Stilleri */
@media (max-width: 768px) {
    .timeline::before {
        left: 31px;
        /* Çizgiyi sola kaydır */
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        /* İçeriği sağa ittir */
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0%;
        /* Sağdaki item'ları da sola al */
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 15px;
        /* Noktaları sola kaydır */
    }

    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: 5px;
        /* İkonları sola kaydır */
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        text-align: left;
        /* Tüm içerikleri sola hizala */
    }
}

/* Blog Detay Sayfası İçin Stiller */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.blog-content figure {
    margin-bottom: 1.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #FFD700;
    /* Altın Sarısı */
    padding-left: 1rem;
    margin-left: 0;
    font-style: italic;
    color: #555;
}


/* Ensure Swiper Wrapper and Slides take full height of the parent (.mySwiper) */
.mySwiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    /* This will now reliably be 80vh */
}

/* Style each slide */
.mySwiper {
    width: 100%;

        {
            {
            /* Changed min-height to height for more reliable 100% height for children */
        }
    }

    height: 80vh;
    /* Use height instead of min-height */
    position: relative;
    /* Needed for absolute positioning of pagination/navigation */
    overflow: hidden;
    /* Hide any overflow */
}

/* Ensure Swiper Wrapper and Slides take full height of the parent (.mySwiper) */
.mySwiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    /* This will now reliably be 80vh */
}

/* Style each slide */
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;
    /* Fallback background */
    display: flex;
    /* Use flexbox to center content vertically and horizontally */
    justify-content: center;
    align-items: center;
    position: relative;
    /* Needed for absolute positioning of the background image */
    width: 100%;
    height: 100%;
    /* This will now reliably be 80vh */
}

/* Style the background image within the slide */
.swiper-slide .swiper-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This will cover the 80vh slide area */
    object-fit: cover;
    /* Ensures image covers the slide area */
    z-index: 0;
    /* Place image behind the text content */
}

/* Style the text container to ensure it's above the image */
.swiper-slide .container {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
}

/* Optional: Style Swiper pagination (dots) for visibility on dark background */
.swiper-pagination-bullet {
    background: white;
}

/* Optional: Style Swiper navigation (arrows) for visibility on dark background */
.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}