/* Bible Tours Page Specific Styles */

/* Main Content */
.main-content {
    padding-top: 0;
}

/* Hero Section */
.bible-tours-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, rgba(118, 75, 162, 0.85) 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bible-tours-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bible-tours-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Tours Section */
.tours-section {
    padding: 80px 0;
    background: #fff;
}

/* Service List - Two Column Layout */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.tour-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}

.tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* Alternating layout */
.tour-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.tour-item.reverse .tour-image {
    order: 2;
}

.tour-item.reverse .tour-content {
    order: 1;
}

.tour-image {
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

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

.tour-item:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.tour-name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.tour-description {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.tour-description p {
    margin-bottom: 15px;
}

.tour-description p:last-child {
    margin-bottom: 0;
}

.tour-info {
    margin-top: auto;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tour-duration,
.tour-price {
    margin: 0;
    font-weight: 500;
    color: #333;
}

.tour-price {
    color: #007cba;
    font-weight: 600;
    font-size: 1.1rem;
}

.book-now-btn {
    display: block;
    width: 100%;
    background: #007cba;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.book-now-btn:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
    color: white;
}

/* No Services State */
.no-services {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
}

.no-services-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.no-services-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    background: #007cba;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tour-item {
        gap: 30px;
        min-height: 350px;
    }

    .tour-image {
        height: 350px;
    }

    .tour-content {
        padding: 30px;
    }

    .tour-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .bible-tours-hero {
        padding: 100px 0 60px;
    }

    .bible-tours-hero h1 {
        font-size: 2.5rem;
    }

    .bible-tours-hero p {
        font-size: 1.1rem;
    }

    .tours-section {
        padding: 60px 0;
    }

    .service-list {
        gap: 40px;
    }

    .tour-item,
    .tour-item.reverse {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .tour-item.reverse .tour-image,
    .tour-item.reverse .tour-content {
        order: unset;
    }

    .tour-image {
        height: 250px;
        border-radius: 15px 15px 0 0;
    }

    .tour-content {
        padding: 30px;
        border-radius: 0 0 15px 15px;
    }

    .tour-name {
        font-size: 1.8rem;
    }

    .tour-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bible-tours-hero {
        padding: 90px 20px 50px;
    }

    .bible-tours-hero h1 {
        font-size: 2rem;
    }

    .bible-tours-hero p {
        font-size: 1rem;
    }

    .tours-section {
        padding: 50px 0;
    }

    .service-list {
        gap: 30px;
    }

    .tour-image {
        height: 220px;
    }

    .tour-content {
        padding: 25px;
    }

    .tour-name {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .tour-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .book-now-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .no-services {
        padding: 60px 15px;
        margin-top: 30px;
    }

    .no-services-content h2 {
        font-size: 1.75rem;
    }

    .no-services-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}
