body {
    overflow-x: hidden;
}
img {
    border-radius: 20px;
}

.btn {
    border-radius: 20px;
    font-weight: 500;
}

.cta {
    padding: 12px 16px;
    font-size: 18px;
}
.bg-white {
    background-color: #fff !important;
}
.btn-primary {
    background-color: var(--primary-color);
    border: var(--primary-color) solid 1px;
}

.btn-primary:hover,.btn-primary:focus, .btn-primary:active {
    background-color: var(--secondary-color) !important;
    border: var(--secondary-color) solid 1px !important;
}
.btn-primary:focus-visible {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem #c19a6b8f;
}
.btn-secondary-outline {
    border: var(--secondary-color) solid 1px;
}
.btn-secondary-outline:hover {
    border: var(--secondary-color) solid 1px;
    background-color: var(--secondary-color);
}

.sketch-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.sketch-underline::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 30px;
    /* Adjust height based on your image */
    background-image: url(strokebrush.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    /* Send it behind the text */
}

h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 40px;
}
@media screen and (min-width: 768px) {
    h1 {
        font-size: 48px;
    }
}

.dark-green {
    color: var(--dark-green);
}

.card-title {
    color: var(--dark-green);
}

.card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    /* Slight scaling effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow */
}

.card-img-top {
    transition: transform 0.3s ease;
    /* Smooth zoom effect for the image */
}

.card:hover .card-img-top {
    transform: scale(1.03);
    /* Zoom in the image */
}

p {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 18px;
    font-family: "Roboto Serif", serif !important;
    font-style: normal !important;
}

/* Style the clickable options */

/* Style the tour list */
#tour-list {
    margin-top: 20px;
}

.tour-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #fafafa;
}

.option {
    cursor: pointer;
}

.option img {
    height: 40px;
    margin-bottom: 4px;
}

.option:hover {
    transform: scale(1.05);
    font-weight: 700;
    color: var(--secondary-color);
}

.option.active {
    font-weight: 700;
    color: var(--dark-green);
}

.card,
.card-img-top {
    border-radius: 20px;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

.card-text {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    /* Number of lines to display */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

.bold {
    font-weight: 800;
}

.invisible {
    display: none;
}

.rating-pill {
    position: absolute;
    padding: 4px 12px;
    background-color: rgba(233, 233, 233, 0.381);
    border-radius: 20px;
    right: 15px;
    top: 15px;
    font-weight: 600;
}

.text-muted {
    font-size: 0.9rem;
    /* Slightly smaller for description */
    color: #6c757d;
    /* Bootstrap's muted text color */
    margin: 0;
}

.text-small {
    font-size: 1rem;
}

.fw-bold {
    font-size: 1rem;
    /* Same or slightly bigger for headings */
    margin-top: 10px;
    /* Add spacing between the image and text */
    margin: 0;
}

.fw-icon {
    background-color: #f8e8d5;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.fw-icon img {
    height: 40px;
    width: 40px;
}

.justify-items-center {
    justify-items: center;
}

.justify-items-end {
    justify-items: end;
}

.span-text-small {
    font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
    .span-text-small {
        font-size: 0.875rem;
    }
}

:root {
    --primary-color: #2d6a4f;
    --dark-green: #1c4d3d;
    --secondary-color: #c19a6b;
    --font-size: 16px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 12px 0px 12px;
    font-weight: 500;
}
a,
button,
.nav-link {
    font-family: "Montserrat", serif !important;
    font-style: normal !important;
}
.nav-link::after {
    content: "";
    width: 0px;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 0px;
    height: 2px;
    left: 0px;
    background-color: var(--secondary-color);
}

.nav-link.active::after {
    content: "";
    width: 100%;
    background-color: var(--dark-green);
    color: var(--dark-green) !important;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:not(.active):hover {
    color: var(--secondary-color) !important;
}
.navbar {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

footer {
    background-color: #27919c;
    border-radius: 20px 20px 0px 0px;
    box-shadow: inset 0px 4px 4px 0px #c19a6b8f;
}
footer a {
    color: #fff !important;
}
footer a:hover {
    color: var(--secondary-color) !important;
}
