@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
    --vw-dark-blue: #0d1e3a;
    --vw-yellow: #ffc72c;
    --vw-light-bg: #f5f7fa;
    --vw-accent-blue: #1e90ff;
    --vw-text-gray: #6c757d;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--vw-light-bg);

    color: var(--vw-dark-blue);
    overflow-x: hidden;
}

/* Prevent overflow from scaled images */
.hero-carousel-item,
.dest-card,
.destination-slider {
    overflow: hidden;
}

/* Mobile fix for namaste-india */
@media (max-width: 576px) {
    .namaste-india {
        left: 2%;
        right: 2%;
        width: 96%;
    }
}


.call-action-btn {
    background-color: var(--vw-yellow);
    color: var(--vw-dark-blue) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 40px;
    transition: background-color 0.3s, transform 0.2s;
}

.call-action-btn:hover {
    background-color: #f7b400;
    transform: translateY(-2px);
}

.hero-carousel-item:hover img {
    transform: scale(1.03);
}

.hero-carousel-item {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.namaste-india {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 400px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.namaste-india:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.02);
}

.namaste-india h3 {
    font-size: 2.25rem;
    line-height: 1.1;
}

.carousel-caption {
    position: absolute;
    left: 0;
    bottom: 10px;
    right: auto;
    width: auto;
    margin: 16px;
    transform: none !important;
}

.carousel-caption.mobile-caption-style {
    background: linear-gradient(to top right,
            rgba(29, 78, 216, 0.8),
            rgba(124, 58, 237, 0.9));
    color: #ffffff;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tour-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.tour-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 120px;
    object-fit: cover;
}

.card-price {
    font-size: 1.1rem;
    color: #0d6efd;
    /* Bootstrap primary color */
    font-weight: 700;
}


/* international tours */

.destination-slider {
    height: 500px;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: white;
}

.destination-slider .slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 2rem;
}

.dest-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 240px;
    position: relative;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dest-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
}

.badge-tours {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
    border-radius: 50px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .destination-slider {
        height: 400px;
        margin-bottom: 2rem;
    }

    .destination-slider .slide {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .destination-slider {
        height: 350px;
    }

    .destination-slider .slide {
        height: 350px;
    }

    .dest-card {
        height: 200px;
    }
}

/* inclusive Tour */
.hover-shadow-lg {
    transition: all 0.3s ease;
}

.hover-shadow-lg:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Stats */
.hover-lift {
    transition: all 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-12px);
    background-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.backdrop-blur-lg {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Footer */
.hover-lift-social {
    transition: all 0.3s ease;
}

.hover-lift-social:hover {
    transform: translateY(-5px);
    background-color: #fbbf24 !important;
    color: white !important;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.space-y-3>li {
    margin-bottom: 0.75rem;
}

.transition {
    transition: color 0.3s ease;
}

.hover\:text-warning:hover {
    color: #fbbf24 !important;
}
