/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}
.dropdown-menu{
    z-index:9999 !important;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

/* Jumbotron */
.jumbotron {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.3rem;
}

/* Tour Cards */
.tour-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tour-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Forms */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.3rem;
}

/* Reviews */
.review-card {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.3rem;
}

/* Add these styles to your existing CSS */

.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    height: 550px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.tour-info span {
    font-size: 0.9rem;
}

.tour-info i {
    margin-right: 5px;
    color: #0d6efd;
}

.booking-card.sticky-top {
    top: 20px;
}

.rating span {
    font-size: 1.2rem;
}

/* Star Rating Styles */
.rating-wrapper {
    text-align: center;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.2em;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 2rem;
    padding: 0.2em;
    transition: all 0.2s ease;
}

.star-rating label i {
    color: #ddd;
    transition: all 0.2s ease;
}

.star-rating input:checked ~ label i,
.star-rating input:hover ~ label i {
    color: #ffd700;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.rating-description {
    min-height: 1.5em;
}

/* Display Rating Styles */
.display-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.display-rating .far {
    color: #ddd;
}

.display-rating .fas.fa-star,
.display-rating .fas.fa-star-half-alt,
.display-rating .far.fa-star {
    color: #ffd700;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

/* Rating Summary */
.rating-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.rating-summary .average {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.rating-summary .total-ratings {
    color: #666;
    font-size: 0.9rem;
}

/* Update Rating Styles */
.rating-container {
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.rating-container:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.rating-hint {
    display: none;
    font-size: 0.8rem;
    margin-top: 2px;
}

.rating-container:hover .rating-hint {
    display: block;
}

/* Video Section Styles */
.video-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f8f9fa 50%);
    transform: translateY(-100%);
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Add responsive padding */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }
    
    .video-container {
        margin-top: 2rem;
    }

    .tour-card {
        margin-bottom: 1rem;
    }
    
    .tour-card .card-img-top {
        height: 180px;
    }
}

/* Optional: Add a play button overlay */
.video-container {
    position: relative;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover::before {
    opacity: 1;
}

.video-container::after {
    content: '\f144';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-container:hover::after {
    opacity: 1;
}

/* Add these styles for the nav buttons */
.navbar .btn {
    padding: 0.375rem 1rem;
}

.navbar .btn-outline-light:hover {
    color: #000;
}

.navbar .dropdown-menu {
    min-width: 200px;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
}

/* Tour Page Styles */
.tourSwiper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 10px !important;
}

.tourSwiper .swiper-slide {
    height: 400px;
}

.tourSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourSwiper .swiper-button-next,
.tourSwiper .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tourSwiper .swiper-button-next:after,
.tourSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.tourSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.tourSwiper .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-card.sticky-top {
    top: 20px;
}

@media (max-width: 768px) {
    .tourSwiper .swiper-slide {
        height: 300px;
    }
    
    .booking-card.sticky-top {
        position: static !important;
        margin-top: 2rem;
    }
}

/* Thumbnail Slider Styles */
.thumbSwiper {
    height: 80px;
    box-sizing: border-box;
    padding: 5px 0;
}

.thumbSwiper .swiper-slide {
    width: 100px;
    height: 70px;
    opacity: 0.4;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.thumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thumbSwiper {
        height: 60px;
    }
    
    .thumbSwiper .swiper-slide {
        width: 80px;
        height: 50px;
    }
} 
/* Contact Page Styles */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-info {
    /* height: 100%; */
}

.contact-info i {
    width: 40px;
    text-align: center;
}

.map-container {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-info {
        margin-top: 2rem;
    }
} 