@charset "utf-8";
/* CSS Document */

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;   

}

h1, h2 {
    font-weight: 400;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}


/* Tour Page Styles */
.tour-page {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tour-page header {
    text-align: center;
    margin-bottom: 30px;
}

.tour-page .subtitle {
    font-size: 1.2em;
    color: #666;
}

.tour-page .intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-page .intro img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.tour-page .highlights {
    margin-bottom: 30px;
}

.tour-page .highlights ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tour-page .tour-stops {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.tour-page .tour-stops .stop {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.tour-page .tour-stops .stop img {
    margin-bottom: 15px;
}

.tour-page .details ul {
    list-style: disc;
    padding-left: 40px;
}

.tour-page .booking {
    text-align: center;
}

.tour-page .learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;   

}

.tour-page .learn-more:hover {
    background-color: #0069d9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tour-page .intro {
        flex-direction: column;
    }

    .tour-page .intro img {
        width: 100%;
        margin-bottom: 20px;
    }
}