/* Temel Ayarlar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =================================================== */
/* 1. HEADER STİLLERİ (ÜST BÖLÜM)
/* =================================================== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 1.1 En Üstteki İnce Bar */
.header-top-bar {
    background-color: #f9f9f4;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}
.header-top-bar .container {
    display: flex;
    justify-content: flex-end;
}
.secondary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.secondary-nav li { margin-left: 1.5rem; }
.secondary-nav a { text-decoration: none; color: #777; }

/* 1.2 Ana Header (Logo, Telefon) */
.header-main { padding: 1.5rem 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }

/* Logo Alanı (Link olarak) */
.logo-link {
    text-decoration: none; /* Linkin alt çizgisini kaldırır */
}
.logo-area { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; display: block; }
.logo { font-size: 2.5rem; font-weight: bold; color: #005a9e; line-height: 1; flex-shrink: 0; }

.header-contact { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }

/* Telefon Numaraları Stilleri */
.phone-numbers-wrapper {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
}
.phone-number {
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 1.6rem; 
    font-weight: bold;
    color: #005a9e;
    white-space: nowrap;
}
.phone-number i {
    color: #ff6600; 
}
.phone-numbers-wrapper .phone-number:last-child {
    font-size: 1.4rem; 
    margin-top: -5px; 
}

.social-icons { display: flex; gap: 0.5rem; }
.social-icon { display: inline-block; width: 32px; height: 32px; border-radius: 5px; color: white; text-align: center; line-height: 32px; font-size: 1.2rem; text-decoration: none; }
.social-icon.fb { background-color: #3b5998; }
.social-icon.x { background-color: #000000; }
.social-icon.ig { background-image: linear-gradient(to top right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.social-icon.wa { background-color: #25d366; }

/* 1.3 Ana Tur Navigasyonu (Menü) */
.header-nav-bar { background-color: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #ddd; padding: 0.8rem 0; }
.header-nav-bar .container { display: flex; justify-content: center; align-items: center; }
.header-nav-bar ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.header-nav-bar a { text-decoration: none; color: #005a9e; font-weight: bold; font-size: 0.9rem; text-transform: uppercase; padding: 0.5rem 0; }
.header-nav-bar a:hover { color: #ff6600; }

/* =================================================== */
/* 2. SLIDER STİLLERİ (Tam Genişlik - 400px Yükseklik)
/* =================================================== */
.main-slider {
    width: 100%; /* Tam genişlik */
    height: 400px; /* 400px yükseklik */
}

.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Slider Okları ve Noktaları */
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: #ff6600; /* Turuncu oklar */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    opacity: 1;
}
.main-slider .swiper-pagination-bullet-active {
    background: #ff6600;
}

/* =================================================== */
/* 3. POPÜLER TURLAR (ANA İÇERİK) STİLLERİ
/* =================================================== */
main {
    padding: 2rem 0;
}
main h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }

/* KARTLARIN TEMEL IZGARA YAPISI */
.featured-tours { 
    display: grid;
    gap: 1rem; /* Kartlar arası boşluk (16px) */
}
/* Ana sayfa için 4 sütun kuralı */
.grid-4-cols {
    grid-template-columns: repeat(4, 1fr); 
}
/* Yurtiçi sayfası için 3 sütun kuralı */
.grid-3-cols {
    grid-template-columns: repeat(3, 1fr); 
}
/* Yurtdışı sayfası için 2 sütun kuralı */
.grid-2-cols {
    grid-template-columns: repeat(2, 1fr); 
}

/* TUR KARTI STİLLERİ */
.tour-card { background-color: #ffffff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); overflow: hidden; }
.tour-card:hover { transform: translateY(-5px); }
.tour-card img {
    width: 100%;
    height: 200px; /* Kart görseli yüksekliği */
    object-fit: cover;
}
.card-content { padding: 1.5rem; }
.card-content h3 { font-size: 1.3rem; margin-top: 0; color: #005a9e; }
.card-content p { color: #666; font-size: 0.9rem; }
.price { font-size: 1.5rem; font-weight: bold; color: #333; margin: 1rem 0; }
.btn-detail { display: block; text-align: center; text-decoration: none; background-color: #005a9e; color: white; padding: 0.7rem; border-radius: 5px; font-weight: bold; }

/* =================================================== */
/* 4. FOOTER (ALT BİLGİ) STİLLERİ
/* =================================================== */
.site-footer {
    background-color: #0d47a1; /* Lacivert */
    color: #ffffff; /* Beyaz yazı */
    padding-top: 3rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-column h4 {
    color: #ffffff; /* Başlıklar beyaz */
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ff6600; /* Turuncu çizgi */
    padding-bottom: 0.5rem;
    display: inline-block;
}
.footer-column p { margin-bottom: 1rem; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 0.75rem; }
.footer-column ul a {
    text-decoration: none;
    color: #ffffff; /* Beyaz linkler */
    transition: color 0.3s ease;
}
.footer-column ul a:hover {
    color: #dddddd; /* Hover gri */
}
.footer-column p i {
    width: 20px;
    margin-right: 0.5rem;
    color: #ff6600; /* Turuncu ikonlar */
    text-align: center;
}
.social-icons-footer {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-bottom-bar {
    background-color: #1a1a1a; /* Koyu Gri/Lacivert Tonu */
    color: #ff6600; /* Turuncu Yazı */
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.8rem;
}
.footer-bottom-bar p { margin: 0; }

/* =================================================== */
/* 5. POP-UP (MODAL) STİLLERİ
/* =================================================== */
.modal-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999; 
    display: flex; 
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.modal-overlay:target {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 450px; /* Dar pop-up */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.modal-image {
    max-width: 100%;
    height: auto;
    max-height: 50vh; /* Ekranın %50'si */
    margin-bottom: 0;
}
.modal-close-button {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}
.modal-close-button:hover { color: #000; }
.whatsapp-button,
.download-button {
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 90%; 
    max-width: 300px;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.whatsapp-button i,
.download-button i {
    margin-right: 0.75rem; /* İkon boşluğu */
}
.whatsapp-button {
    background-color: #25D366;
    color: #fff;
}
.whatsapp-button:hover { 
    background-color: #1EAE50; 
    transform: translateY(-2px);
}
.download-button {
    background-color: #005a9e;
    color: #fff;
    order: -1;
}
.download-button:hover {
    background-color: #003366;
    transform: translateY(-2px);
}

/* =================================================== */
/* 6. HAKKIMIZDA & DİĞER SAYFA STİLLERİ
/* =================================================== */
.page-header {
    background-color: #0d47a1; 
    color: white;
    padding: 2rem 0;
    text-align: center;
}
.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
}
.about-page-content {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
}
.about-page-content h1 {
    font-size: 2.5rem;
    color: #005a9e;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
.about-page-content h2 {
    font-size: 1.8rem;
    color: #0d47a1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.about-page-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}
.tursab-belge {
    display: block;
    margin: 2.5rem auto 0 auto;
    max-width: 100%;
    width: 700px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.custom-tour-image {
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
    margin: 2rem 0; 
}

/* =================================================== */
/* 7. GELECEK TURLAR KARTI STİLLERİ
/* =================================================== */
.coming-soon-card {
    background-color: #f0f8ff; 
    border: 2px dashed #005a9e;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    min-height: 350px;
    transition: all 0.3s ease;
}
.coming-soon-card:hover {
    background-color: #e0f2f7;
    border-color: #ff6600;
    transform: translateY(-5px);
}
.coming-soon-card h3 {
    font-size: 1.8rem;
    color: #005a9e;
    margin-bottom: 1rem;
}
.coming-soon-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.coming-soon-card .icon-placeholder {
    font-size: 4rem;
    color: #ff6600;
    margin-bottom: 1.5rem;
}
.coming-soon-card .btn-more-info {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.coming-soon-card .btn-more-info:hover {
    background-color: #e05c00;
}


/* =================================================== */
/* 10. BLOG SAYFASI KART TASARIMI (YENİ)
/* =================================================== */

.blog-list-container {
    display: grid;
    /* Masaüstünde 3 sütunlu bir ızgara oluşturur */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Kartlar arası boşluk */
    margin: 2rem 0;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex; /* İçeriğin esnek olması için */
    flex-direction: column; /* Görsel üstte, içerik altta */
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px; /* Tur kartlarıyla aynı yükseklik */
    object-fit: cover;
}

.blog-card .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Kartların boyu farklı olsa bile butonun altta kalmasını sağlar */
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-top: 0;
    color: #005a9e;
}

.blog-card .blog-post-category {
    display: inline-block;
    background-color: #f0f8ff;
    color: #005a9e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: fit-content; /* Kategori ne kadarsa o kadar yer kaplar */
}

.blog-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1; /* Metnin büyümesini sağlar */
}

/* "Devamını Oku" butonu */
.blog-card .btn-detail {
    margin-top: 1rem; /* Metin ile buton arasına boşluk koyar */
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #005a9e;
    color: white;
    padding: 0.7rem;
    border-radius: 5px;
    font-weight: bold;
}


/* =================================================== */
/* 11. TEKİL BLOG YAZISI (ARTICLE) STİLLERİ
/* =================================================== */
.blog-post-full-content {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 2.5rem 3rem; 
    margin: 2rem 0; 
}

.blog-post-full-image {
    width: 100%;
    height: auto;
    max-height: 400px; 
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-post-full-content h1 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.blog-post-full-content h2 {
    font-size: 1.8rem;
    color: #005a9e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.blog-post-full-content p {
    font-size: 1.1rem;
    line-height: 1.8; 
    color: #333;
    margin-bottom: 1.5rem;
}

.blog-post-full-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =================================================== */
/* 12. MOBİL UYUMLULUK (RESPONSIVE) STİLLERİ
/* =================================================== */

/* Tablet ve altındaki ekranlar için (768px ve daha küçük) */
@media (max-width: 768px) {

    /* --- Header --- */
    .header-main .container {
        flex-direction: column; 
        gap: 1rem;
    }
    
    .phone-number {
        font-size: 1.4rem;
    }
    .phone-numbers-wrapper .phone-number:last-child {
        font-size: 1.2rem;
    }

    .header-nav-bar ul {
        gap: 1rem;
    }

    /* --- Slider --- */
    .main-slider {
        height: 300px;
    }
    
    /* --- Tur Kartları (MOBİLDE 1 SÜTUN) --- */
    .featured-tours {
        grid-template-columns: 1fr; /* Mobilde her zaman 1 sütun */
        gap: 1.5rem;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* --- Hakkımızda Sayfası --- */
    .about-page-content {
        padding: 1.5rem;
    }
    .about-page-content h1 {
        font-size: 2rem;
    }
    .about-page-content h2 {
        font-size: 1.5rem;
    }
    
    /* --- İletişim Sayfası --- */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-page-content {
        padding: 1.5rem;
    }

    /* --- Pop-up Modal --- */
    .modal-content {
        width: 95%;
        padding: 1rem;
    }
    .modal-image {
        max-height: 65vh; 
    }
    
    /* --- Blog Sayfası --- */
    .blog-list-container {
        grid-template-columns: 1fr; /* Mobilde kartlar alt alta */
    }
    
    .blog-post-full-content {
        padding: 1.5rem;
    }
    .blog-post-full-content h1 {
        font-size: 2rem;
    }
}