/*
Theme Name:   TripRex Child
Template:     triprex
Version:      1.0
Author:       Your Name
Description:  A child theme for TripRex
*/

/* Custom styles go below */

.ticket-form{
    background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
    box-shadow: 4px 3px 40px 0px rgba(16, 33, 34, 0.06);
    padding: 30px;
    border-radius: 5px;
}

.home1-banner-bottom #hotel-tab,
.home1-banner-bottom #transport-tab,
.home1-banner-bottom #activities-tab{
    display: none;
}

.package-card .package-card-content .card-content-bottom .price-area,
.package-card3 .package-card-content .card-content-bottom .price-area{
    display:none;
}


.top-bar .topbar-left::after,
.top-bar .topbar-right::after {
    display: none
}


.logo-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 20px; /* Space between items */
    padding: 20px;
}

/* Individual logo item styling */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9; /* Light background to frame logos */
    border: 1px solid #ddd;
    border-radius: 8px; /* Rounded corners for a polished look */
    padding: 20px; /* Add some inner spacing */
    height: 150px; /* Consistent height for all logo items */
    overflow: hidden; /* Ensure oversized logos are clipped */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Logo item hover effect */
.logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Image styling to ensure logos fit properly */
.logo-item img {
    max-width: 100%; /* Scale logos to fit the container width */
    max-height: 100%; /* Scale logos to fit the container height */
    object-fit: contain; /* Maintain the aspect ratio without distortion */
}

/* Base styles for the image box */
.image-box {
    display: inline-block;
    text-align: center;
    border-radius: 12px; /* Rounded corners */
    overflow: hidden; /* Clip overflow to match rounded edges */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover animation */
}

/* Link styling */
.image-box a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
    display: block;
}

/* Image container */
.image-container {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #ddd; /* Subtle separation for title */
}

/* Image styling */
.image-container img {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth zoom on hover */
}

/* Title container */
.image-title {
    padding: 15px;
    background: #fff; /* White background for contrast */
    font-family: 'Arial', sans-serif; /* Elegant font */
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Dark text for readability */
    transition: background 0.3s ease;
}

/* Hover effects */
.image-box:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}

.image-container:hover img {
    transform: scale(1.1); /* Slight zoom effect on image */
}

.image-box:hover .image-title {
    background: #f4f4f4; /* Light gray on hover */
}


.teams-card .teams-content h4 {
    font-size: 18px !important;
}

@media only screen and (max-width: 991px){
    header.style-1 .main-menu{
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
    .logo-container {
        grid-template-columns: 1fr; /* Single column for smaller screens */
        gap: 15px; /* Adjust gap for smaller screens */
        padding: 15px; /* Reduce padding */
    }

    .logo-item {
        height: 120px; /* Reduce height for smaller screens */
        padding: 15px; /* Reduce inner spacing */
    }

    .image-box {
        margin: 15px; /* Adjust margin for smaller screens */
    }

    .image-title {
        font-size: 16px; /* Adjust font size for readability */
    }
}


@media only screen and (max-width: 576px) {
    .home1-banner-bottom .filter-wrapper .nav-buttons .nav-pills .nav-item {
        width: inherit !important;
    }

}

@media only screen and (max-width: 480px) {
    .logo-container {
        grid-template-columns: 1fr; /* Keep single column */
        gap: 10px; /* Further reduce gap */
        padding: 10px; /* Further reduce padding */
    }

    .logo-item {
        height: 100px; /* Further reduce height for mobile */
        padding: 10px; /* Further reduce inner spacing */
    }

    .image-title {
        font-size: 14px; /* Smaller font for mobile */
        padding: 10px; /* Adjust padding */
    }
}


@media only screen and (max-width: 480px) {
    .breadcrumb-section .banner-content h1 {
        font-size: 32px !important;
    }
}