/* Tour Page Specific Styles */

.tour-hero {
    height: 60vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    position: relative; /* Needed for overlay */
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.tour-hero .hero-content {
    position: relative; /* Above overlay */
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-hero h1 {
    font-size: 3rem; /* Adjust size */
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.tour-hero p {
    font-size: 1.2rem; /* Adjust size */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Tour Details Section Layout */
.tour-details .container {
    max-width: 1200px; /* Adjust as needed */
}

.tour-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Space between main content and sidebar */
}

.tour-main-content {
    flex: 2; /* Takes up 2/3rds of the space */
    min-width: 300px; /* Ensures content doesn't get too squished */
}

.tour-sidebar {
    flex: 1; /* Takes up 1/3rd of the space */
    min-width: 280px; /* Minimum width for sidebar */
}

/* Main Content Styling */
.tour-main-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.tour-main-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.tour-main-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.tour-main-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.tour-main-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start; /* Align icon with start of text */
}

.tour-main-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px; /* Align icon slightly better vertically */
    min-width: 20px; /* Ensure space for icon */
}

/* Itinerary List */
.itinerary li {
    position: relative;
    padding-left: 25px; /* Space for timeline element */
    margin-bottom: 15px;
}

.itinerary li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.itinerary li strong {
    display: block; /* Makes title appear on its own line */
    margin-bottom: 5px;
    color: var(--dark-color);
}

/* Important Notes Box */
.important-notes {
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}

.important-notes h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Sidebar Styling */
.tour-sidebar .sidebar-widget {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tour-sidebar h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

/* Booking Widget */
.booking-widget p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.booking-widget p i {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Related Tours Widget */
.related-tours-widget ul {
    list-style: none;
    padding: 0;
}

.related-tours-widget li {
    margin-bottom: 10px;
}

.related-tours-widget a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.related-tours-widget a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* Map Placeholder */
.map-widget div {
    background: #eee;
    border: 1px solid #ccc;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tour-hero {
        height: 40vh;
    }
    .tour-hero h1 {
        font-size: 2.2rem;
    }
    .tour-hero p {
        font-size: 1rem;
    }
    .tour-container {
        flex-direction: column;
    }
} 