Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENHANCEMENT IN Travel Itineraries SECTION #1603 #1739

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 125 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1119,21 +1119,116 @@ <h3>Romantic Getaway</h3>
</div>
</section>
<style>
.dark-mode #itineraries h2{
color: #ffa500;
}
.dark-mode #itineraries h3{
color: #ffa500;
}
.dark-mode #itineraries p{
color: #fff;
}
.dark-mode .itinerary{
background-color: #0e0e0e;
}
.dark-mode .itinerary p{
color: #2c2fdf;
}
/* Itineraries Section Styling */
#itineraries {
/* Soft gradient background */
padding: 40px; /* Increased padding for more spacing */
border-radius: 10px; /* Rounded corners */
max-width: 1200px; /* Max width for centering */
margin: 0 auto; /* Center the section */
}

/* Header styling */
#h1darkbtn {
text-align: center; /* Center header text */
color: #2c3e50; /* Dark color for the header */
font-size: 4rem; /* Large font size for header */
margin-bottom: 30px; /* Increased margin for spacing */
}

/* Paragraph styling */
#darkbtn {
text-align: center; /* Center paragraph text */
color: #34495e; /* Color for paragraph */
font-size: 1.5rem; /* Font size for paragraph */
margin-bottom: 30px; /* Space below paragraph */
}

/* Itinerary List */
.itinerary-list {
display: flex; /* Use flexbox for layout */
justify-content: space-between; /* Space items evenly */
gap: 30px; /* Increased gap between items */
flex-wrap: wrap; /* Allow wrapping */
}

/* Individual itinerary styles */
.itinerary {
background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%); /* Gradient background */
border-radius: 12px; /* Slightly rounded corners */
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Shadow for depth */
padding: 25px; /* Padding for spacing */
flex: 1 1 calc(33.333% - 30px); /* Responsive sizing */
transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition effects */
cursor: pointer; /* Pointer cursor on hover */
height: 320px; /* Fixed height for consistency */
}

/* Gradient backgrounds for specific itineraries */
.itinerary:nth-child(2) {
background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%); /* Gradient 2 */
}

.itinerary:nth-child(3) {
background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%); /* Gradient 3 */
}

/* Hover effects */
.itinerary:hover {
transform: scale(1.05); /* Slight scaling effect */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* More prominent shadow */
}

/* Header styles within each itinerary */
.header1 h3 {
color: #1e293b; /* Darker text for readability */
font-size: 2.5rem; /* Large font size for headers */
margin-bottom: 15px; /* Space below header */
}

.header1 h3:hover {
text-decoration: underline;
}

/* Paragraph styles within each itinerary */
.header1 p {
margin-top: 30px;
color: #555555; /* Subtle color for paragraphs */
font-size: 1.2rem; /* Normal font size for paragraphs */
margin-bottom: 20px; /* Space below paragraph */
}

/* Button styles */
.itinerary a button {
background-color: #3b82f6; /* Button color */
color: white; /* Button text color */
padding: 12px 25px; /* Increased button size */
border: none; /* Remove default border */
border-radius: 6px; /* Rounded corners for button */
cursor: pointer; /* Pointer cursor on hover */
transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover */
font-size: 1.5rem; /* Font size for button */
}

/* Button hover effect */
.itinerary a button:hover {
background-color: #1e40af; /* Darker button color on hover */
transform: translateY(-5px); /* Slight lift effect */
}

/* Section Responsiveness */
@media (max-width: 768px) {
.itinerary-list {
flex-direction: column; /* Stack items on smaller screens */
}

.itinerary {
margin-bottom: 20px; /* Space below items */
height: auto; /* Allow height to adjust */
}
}
</style>

</style>
<!-- Our Services Section -->
<section class="services" id="services">
Expand Down Expand Up @@ -1510,8 +1605,13 @@ <h2 id="h1darkbtn">Personalized Recommendations</h2>
<!-- Example Recommendation -->
<div class="recommendation-item">
<div class="header1">

<h3 id="h1darkbtn" style="color: #1e293b;font-size: 2.5rem; margin-bottom: 15px;">Beach Resort in Goa</h3>
<p>

<h3 id="h1darkbtn">Beach Resort in Goa</h3>
<p style="color : gray ;">

Based on your love for sunny destinations, we recommend this
beachfront resort in Goa for a perfect getaway.
</p>
Expand All @@ -1522,8 +1622,13 @@ <h3 id="h1darkbtn">Beach Resort in Goa</h3>

<div class="recommendation-item">
<div class="header2">

<h3 id="h1darkbtn" style="color: #1e293b;font-size: 2.5rem; margin-bottom: 15px;">Cultural Tour in Rajasthan</h3>
<p>

<h3 id="h1darkbtn">Cultural Tour in Rajasthan</h3>
<p style="color : gray ;">

Explore the rich cultural heritage of Rajasthan. This tour is
highly recommended based on your interest in historical places.
</p>
Expand All @@ -1534,8 +1639,13 @@ <h3 id="h1darkbtn">Cultural Tour in Rajasthan</h3>

<div class="recommendation-item">
<div class="header1">

<h3 id="h1darkbtn" style="color: #1e293b;font-size: 2.5rem; margin-bottom: 15px;">Adventure Trek in Himachal</h3>
<p>

<h3 id="h1darkbtn">Adventure Trek in Himachal</h3>
<p style="color : gray ;">

For the adventure lover in you, we recommend a thrilling trek in
the mountains of Himachal Pradesh.
</p>
Expand Down
Loading