/* =================================================================== */
/* ================= TUR DETAY SAYFASI ÖZEL STİLLERİ ================= */
/* =================================================================== */
.tour-detail-page {
    padding-top: 8rem; /* Header yüksekliği kadar boşluk */
}

#tour-hero {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('GÖRSELLER/G14.jpg') no-repeat center top/cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
}

#tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

#tour-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.detail-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.detail-left {
    flex: 1 1 50rem;
}

.detail-right {
    flex: 1 1 40rem;
}

.detail-right h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.detail-right p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.detail-right h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.includes-list {
    list-style: none;
    font-size: 1.6rem;
}

.includes-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.includes-list li i {
    color: var(--secondary-color);
}

/* Fotoğraf Galerisi Stilleri */
.gallery-main-image {
    margin-bottom: 1.5rem;
}
.gallery-main-image img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
    gap: 1rem;
}
.gallery-thumbnails img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: .5rem;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.gallery-thumbnails img:hover {
    transform: scale(1.05);
}
.gallery-thumbnails img.active {
    border-color: var(--secondary-color);
}


/* Rezervasyon Bölümü */
#booking {
    background: var(--primary-color);
    padding: 6rem 7%;
    text-align: center;
    color: #fff;
}

#booking h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
}

#booking p {
    font-size: 1.8rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-booking {
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-booking:hover{
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

.btn-booking.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
}

.btn-booking.phone {
    background: linear-gradient(45deg, #d4af37, #b48f29);
    color: var(--primary-color);
}