/* styles.css or app.css */
.tlink,
.tlink:visited,
.tlink:active {
    text-decoration: none;
    color: #9C3D91 !important;
}

.tlink:hover {
    color: #f261e6 !important; /* Slightly darker shade for hover */
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    padding: 0 5px;
}

/* Truncate long breadcrumb labels */
.breadcrumb-item {
    max-width: 500px; /* adjust if needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Make breadcrumb scrollable on mobile */
.breadcrumb.flex-nowrap {
    scrollbar-width: thin;
}

.logo {
    width: 250px; /* adjust the width as needed */
    height: auto;
    margin: 5px;
}

.overlay-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6); /* semi-transparent background */
    color: #fff;
    font-size: 1.1rem;
    border-radius: 4px;
}

.home-destinations .col .card {
    height: 200px !important; /* Fixed card height */
    position: relative;
    overflow: hidden;
}

.home-destinations .col .card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home-destinations .col .card .card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.hero-slide {
    height: 300px; /* Desktop height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    padding: 0 20px;
}

.btn-custom {
    background-color: #00BFA6 !important;
    border-color: #00BFA6 !important;
    color: #fff !important;
}

.btn-custom:hover {
    background-color: #00a890 !important;
    border-color: #00a890 !important;
}

.bg-custom {
    background-color: #00BFA6 !important;
    border-color: #00BFA6 !important;
    color: #fff !important;
}

/* styles.css or app.css */

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.875rem; }
h6 { font-size: 0.75rem; }

.ttfontcolor {
    color: #9C3D91 !important;
    text-shadow: 2px 2px 5px rgba(130, 128, 128, 0.5);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-item {
    border-left: 1px solid rgba(255, 255, 255, 0.3); /* semi-transparent white */
    padding-left: 10px;
    margin-left: 10px;
}

/* TOUR LISTING */
.card-title-tour {
    min-height: 50px;    
}

.listing-card {
    padding-top: 0px;
    padding-bottom: 0px;
}

.tour-card > figure {
    margin-bottom: 5px;
}

.tour-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}
.tour-card:hover {
    transform: scale(1.02);
}
.tour-img {
    height: 200px;
    object-fit: cover;
}
.rating {
    color: #f8b400;
    font-size: 0.9rem;
}
.price {
    font-weight: bold;
    color: #28a745;
}
.flag-badge {
    background-color: #ff6f61;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 5px;
}

.hero-title-h1 {
    font-size: 1.5rem;
}

::placeholder {
    font-size: 14px;   /* Change this value as needed */
}
/* TOUR LISTING END */

.home-tour-indicators {
    position: relative;
}
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #9C3D91;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: #ff6600;
    opacity: 1;
}

.line-clamp-3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; /* Chrome/Safari/Edge */
    line-clamp: 2;         /* Newer/standard */
    font-size: .9rem;;
}

.btn-outline-no-bg:hover,
.btn-outline-no-bg:focus,
.btn-outline-no-bg:active {
    background-color: transparent !important;
}

.smallest-text {
    font-size: 0.7rem;
}

section.top-attractions > .container {
    padding: 0px;
}

@media only screen and (max-width: 768px) {
    .logo {
        width: 200px; /* adjust the width for mobile devices */
        margin: 5px;
    }

    .hero-slide {
        max-height: 250px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }

    .navbar-nav .nav-item {
        border-left: none !important;
    }

    .breadcrumb-item {
        text-overflow: ellipsis;
    }
}