
/* Jumbotron Styling */
.jumbotron {
    position: relative;
    height: 60vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 130px;
    font-family: 'League Spartan', sans-serif; /* League Spartan font for labels */
}

.jumbotron-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    padding: 20px 40px;
    border-radius: 10px;
}

.jumbotron h1 {
    font-size: 48px;
    margin: 0;
   
    letter-spacing: 1px;
}

.jumbotron p {
    margin-top: 10px;
    font-size: 20px;
}

/* Service Details Container */
.service-detail-container {
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-detail-content {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-detail-content p {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

/* Back Button */
.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #0056b3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-btn:hover {
    background-color: #0056b3;
    border-color: #003f7f;
    color: white;
}

.about-tour {
    width: 100%; /* Make it span the full width */
    margin: 30px 0; /* Remove auto centering, allow vertical spacing */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-entertainment h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-entertainment p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}


/* Main Section Wrapper */
.itinerary-booking-section {
    display: flex;
    font-family: 'League Spartan', sans-serif; /* League Spartan font for labels */
    flex-wrap: nowrap; /* Prevent wrapping in larger screens */
    gap: 20px; /* Space between the two sections */
    margin: 30px 0; /* Vertical spacing above and below */
    padding: 20px;
    background-color: #f5f5f5; /* Subtle background for contrast */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slight shadow for elegance */
}

/* Detailed Itinerary (Left: 60%) */
.itinerary-container {
    flex: 3; /* 60% of the space */
    padding: 20px;
    background-color: #ffffff; /* White background */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: hidden;
    text-align: left;
    font-family: 'League Spartan', sans-serif; /* League Spartan font for labels */
}

.itinerary-container h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.itinerary-container h3 i {
    color: #007bff; /* Blue accent for the Font Awesome icon */
}

.itinerary-container p {
    font-size: 16px;
    line-height: 1.6; /* Better readability */
    color: #555;
}

/* Booking Form (Right: 40%) */
.booking-form-container {
    flex: 2; /* 40% of the space */
    padding: 20px;
    background-color: #ffffff; /* White background */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
    
    text-align: left;
}

.booking-form-container h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}


/* Booking Form Inputs */
.booking-form-container .form-group {
    margin-bottom: 15px;
}

.booking-form-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.booking-form-container .form-control {
    width: 100%; /* Full width for inputs */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px; /* Rounded edges */
}

/* Booking Form Button */
.booking-form-container .btn-submit {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #2a9d8f; /* Blue button */
    color: white;
    border: none;
    border-radius: 30px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form-container .btn-submit:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow effect */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .itinerary-booking-section {
        flex-wrap: wrap; /* Stack sections vertically */
    }
    .itinerary-container,
    .booking-form-container {
        flex: 1 1 100%; /* Full width for each container */
    }
}

/* Hidden Dynamic Form Section */
.hidden-section {
    display: none; /* Initially hidden */
    margin-top: 5px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hidden-section h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.hidden-section .form-group {
    margin-bottom: 15px;
}

.hidden-section label {
    display: block;
    margin-bottom: 5px;
    font-size: 1em;
    color: #333;
}

.hidden-section input,
.hidden-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-icon {
    font-size: 2em;
    margin-left: 5px;
    color: rgb(14, 50, 59);
    transition: transform 0.3s ease, color 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.2); /* Enlarge slightly on hover */
    color: #007B8A;
}
/* Payment Icons */
.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-icon {
    font-size: 2em;
    cursor: pointer;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.2);
    color: #007b8a;
}

/* Hidden Payment Details Section */
.payment-details {
    display: none; /* Initially hidden */
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 15px;
}

.payment-details h5 {
    margin-bottom: 10px;
    color: #007b8a;
    font-size: 1.2em;
}

.payment-details .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.btn-submit {
    background: #2a9d8f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slight shadow effect */
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hidden-section,
    .booking-form-container {
        flex: 1 1 100%; /* Full width for smaller devices */
        max-width: 100%; /* Prevent any width limitation */
    }

    .hidden-section {
        margin-top: 20px; /* Add some spacing */
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .booking-form-container {
        margin-bottom: 20px; /* Add spacing below the form */
    }
}
