@charset "utf-8";

/* Genel Mall ve Margin Yapısı (tours.css'den alındı) */

a {
    text-decoration: none;    
}


.mall {
    background-color: #F0F3F7;
    padding: 20px 0;
    width: 100%;
    margin-top: 95px;
}

.mall .margin {
     width: 98%;
     max-width: 1400px;
     background: #fff;
     border: 1px solid #ccc;
     border-radius: 8px;
     box-shadow: 0 0 3px rgb(153,153,153);
     margin: 20px auto;
     padding: 2%;
}


   .content-box { max-width: 900px; margin: 140px auto; background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
        .post-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        .img-flex-container { display: flex; flex-wrap: wrap; gap: 15px; margin: 25px 0; }
        .img-flex-container .blog-img { flex: 1; min-width: 280px; object-fit: cover; }

        @media (max-width: 768px) {
            .content-box { padding: 20px; margin: 10px; }
        }
		
		
/* Rehber Kart Tasarımı (tours.css .tour mantığı) */
#load_data_guides {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.guide-item {
    width: 31%; /* 3'lü dizilim */
    min-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Resim Alanı */
.guide-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-item:hover .guide-image img {
    transform: scale(1.1);
}

/* Kategori Rozeti (tours.css indirim rozeti gibi) */
.guide-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0099ff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

/* İçerik Alanı */
.guide-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guide-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #333;
    line-height: 1.4;
}

.guide-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Devamını Oku Butonu */
.read-more {
    margin-top: auto;
    color: #0099ff;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive (tours.css'den uyarlandı) */
@media (max-width: 1024px) {
    .guide-item { width: 47%; }
}

@media (max-width: 768px) {
    .guide-item { width: 100%; margin-bottom: 15px; }
    .mall { margin-top: 70px; }
}

/* Loader (tours.css'den birebir) */
.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0099ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================== OTHER GUIDES SECTION ====================== */
.other-guides-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.other-guides-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
    font-size: 1.8rem;
    position: relative;
}

.other-guides-wrapper h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #0099ff;
    margin: 12px auto;
    border-radius: 3px;
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.other-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.other-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.o-img {
    height: 190px;
    overflow: hidden;
}

.o-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.other-card:hover .o-img img {
    transform: scale(1.08);
}

.o-info {
    padding: 18px;
}

.o-info h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.35;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ====================== GENEL İYİLEŞTİRMELER ====================== */
.content-box {
    max-width: 1000px;
    margin: 140px auto 60px;
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.meta-data {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.post-body {
    line-height: 1.75;
    font-size: 1.05rem;
    color: #333;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-body h2, .post-body h3 {
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .content-box {
        margin: 90px 10px 40px;
        padding: 25px;
    }
    
    .other-guides-wrapper h2 {
        font-size: 1.6rem;
    }
}



/* ====================== İLGİLİ TURLAR ====================== */
.related-tours-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.other-guides-wrapper h2,
.related-tours-wrapper h2 {
    text-align: center;
    font-size: 1.85rem;
    margin: 50px 0 25px;
    color: #1a1a1a;
    position: relative;
}

.other-guides-wrapper h2:after,
.related-tours-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #0099ff;
    border-radius: 2px;
}

/* Tours Card */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.13);
}

.t-img {
    height: 185px;
    overflow: hidden;
}

.t-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.tour-card:hover .t-img img {
    transform: scale(1.07);
}

.t-info {
    padding: 16px 18px;
}

.t-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

.price {
    color: #d62828;
    font-weight: 700;
    font-size: 1.2rem;
}