/* Turlar Listesi Sayfası Stilleri */

/* Sayfa Başlık Alanı */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('/img/slide.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0 60px; /* Üst padding değerini 90px'den 120px'e çıkardım */
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 100px; /* Header yüksekliğini hesaba katmak için eklendi */
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffb900, #e6a600);
}

.page-header h1 {
    font-family: 'PT Sans Narrow', sans-serif !important;
    font-size: 4.2rem; /* Font boyutu arttırıldı */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    font-weight: 700; /* Daha kalın font ağırlığı */
}

.page-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ffb900;
    margin: 10px auto 0;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Filtre Alanı */
.tour-filters {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-filters::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffb900, #e6a600);
}

.filter-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Special Gothic Condensed One', sans-serif;
}

.filter-group select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    appearance: none;
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.filter-group select:hover, 
.filter-group select:focus {
    border-color: #ffb900;
    box-shadow: 0 5px 15px rgba(255, 185, 0, 0.1);
    outline: none;
}

/* Özel select arrow */
.filter-group::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    bottom: 14px;
    font-size: 16px;
    color: #ffb900;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.filter-group:hover::after {
    transform: translateY(2px);
}

.filter-button {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.2);
    font-family: 'Special Gothic Condensed One', sans-serif;
}

.filter-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.filter-button:hover {
    background: linear-gradient(135deg, #ffb900 0%, #e6a600 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 185, 0, 0.3);
}

.filter-button:hover i {
    transform: rotate(180deg);
}

/* Turlar Grid */
.tours-list-section {
    margin-top: 40px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Tur Kartı */
.tour-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffb900;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 1;
}

.tour-price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 4px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-left: 3px solid #ffb900;
}

.tour-content {
    padding: 20px;
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.tour-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.tour-info-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #666;
}

.tour-info-item i {
    color: #ffb900;
    margin-right: 8px;
    font-size: 16px;
    min-width: 16px;
    margin-top: 2px;
}

.tour-desc {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 20px;
}

.tour-desc h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.tour-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-now {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.tour-price-badge .price-now {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.price-old {
    font-size: 0.9rem;
    color: #999;
}

.tour-price-badge .price-old {
    font-size: 0.8rem;
    color: #cccccc;
    text-decoration: line-through;
}

.tour-button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tour-button.full-width {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    border-radius: 0 0 8px 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.tour-button:hover {
    background-color: #ffb900;
    color: #000;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: #ffb900;
    color: #000;
}

.pagination a:hover:not(.active) {
    background-color: #e9ecef;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Yatay görünümdeki cihazlar için page-header düzenlemesi */
@media screen and (max-width: 992px) and (orientation: landscape) {
    .page-header {
        margin-top: 0px; /* Yatay görünümde daha az boşluk */
        padding: 40px 0 30px; /* Yatay görünümde daha az padding */
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 60px 0 30px;
        margin-top: 0; /* Mobil dikey görünümde üst kenar boşluğunu kaldır */
        background-position: center 30%; /* Arka plan görselini daha iyi konumlandır */
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .tour-filters {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}
