/* Excursion Page Specific Styles */

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px; /* Account for fixed navbar */
    border-bottom: 1px solid #eee;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #2D5016;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumbs .current {
    color: #2D5016;
    font-weight: 500;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: #D2691E;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #87CEEB;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Content */
.excursion-content {
    padding: 4rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.main-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.excursion-summary {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #2D5016;
}

.excursion-summary h2 {
    color: #2D5016;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2D5016;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.excursion-summary p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Itinerary Timeline */
.itinerary {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.itinerary h3 {
    color: #2D5016;
    margin-bottom: 2rem;
}

.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2D5016, #87CEEB);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #2D5016;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0 0 0 2px #2D5016;
}

.timeline-time {
    background: #2D5016;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

.timeline-content h4 {
    color: #2D5016;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Highlights */
.highlights {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.highlights h3 {
    color: #2D5016;
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: #2D5016;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #2D5016;
}

.booking-header {
    background: linear-gradient(135deg, #2D5016, #4A7C23);
    color: white;
    padding: 2rem;
    text-align: center;
}

.booking-header h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.booking-details {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #333;
}

.detail-value {
    color: #666;
    text-align: right;
}

.includes, .not-includes {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.includes h4, .not-includes h4 {
    color: #2D5016;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.includes ul, .not-includes ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.includes li, .not-includes li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.includes li {
    color: #2D5016;
}

.not-includes li {
    color: #666;
}

.booking-actions {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Recommendations */
.recommendations {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #D2691E;
}

.recommendations h4 {
    color: #2D5016;
    margin-bottom: 1.5rem;
}

.recommendations ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommendations li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.recommendations li::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Related Excursions */
.related-excursions {
    padding: 4rem 0;
    background: white;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-content h4 {
    color: #2D5016;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.related-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.related-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .booking-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-price {
        font-size: 2rem;
    }
    
    .excursion-content {
        padding: 2rem 0;
    }
    
    .main-info {
        gap: 2rem;
    }
    
    .excursion-summary,
    .itinerary,
    .highlights {
        padding: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .timeline-time {
        min-width: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-header {
        padding: 1.5rem;
    }
    
    .booking-details,
    .includes,
    .not-includes,
    .booking-actions {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-price {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-timeline {
        padding-left: 1rem;
    }
    
    .timeline-item::before {
        left: -1rem;
    }
    
    .price {
        font-size: 2rem;
    }
}



/* Safety Information Section */
.safety-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.safety-info h3 {
    color: #2D5016;
    margin-bottom: 2rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.safety-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #D2691E;
}

.safety-item h4 {
    color: #2D5016;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safety-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Additional responsive styles for safety section */
@media (max-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-info {
        padding: 1.5rem;
    }
}

