.travel-container {
    margin: 50px;
    padding-bottom: 52px;
    font-family: "Inter";
}

.filters-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    .filter-wrapper {
        display: flex;
        flex-direction: column;
        background: #FBFBFB;
        gap: 10px;

        label {
            font-weight: 500;
            font-size: 14px;
        }

        .filter {
            border-width: 0 0 0.5px 0;
            border-color: black;
            min-width: 149px;
            height: 41px;
            outline: none;
            background: white;

        }
    }
}

.travels-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 50px 0;
    gap: 40px;

    .travel {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 69px;

        img {
            width: 30%;
        }

        p {
            margin: 0;
            font-weight: 500;
            letter-spacing: 0.6px;
        }

        .subt-1 {
            font-size: 14px;
            line-height: 23.4px;
        }

        .subt-2 {

            font-size: 13px;
            font-weight: 500;
            line-height: 13px;
        }

        .detail-1 {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .detail-2 {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .option-buttons {
            width: 40%;
            display: flex;
            flex-direction: column;
            align-content: center;
            justify-content: center;
            min-width: 217px;
            gap: 15px;
        
            .detail-btn {
                border: 1px solid #002147;
                height: 45px;
                color: white;
                font-size: 13px;
                font-weight: 500;
                line-height: 23.4px;
                letter-spacing: 0.6px;
                background: #002147;
            }
        
            .booking-btn {
                border: 1px solid #B9B9B9;
                height: 45px;
                color: #002147;
                font-size: 13px;
                font-weight: 500;
                line-height: 23.4px;
                letter-spacing: 0.6px;
                background: white;
            }
        }
    }
}

button {
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: scale(1.02);
    cursor: pointer;
}

button:active {
    transform: scale(0.98);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .travel-container {
        margin: 30px 20px;
    }

    .filters-container {
        flex-wrap: wrap;
        gap: 15px;

        .filter-wrapper {
            .filter {
                min-width: 120px;
            }
        }
    }

    .travels-container {
        .travel {
            gap: 30px;

            img {
                width: 35%;
            }

            .option-buttons {
                min-width: 180px;
            }
        }
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .travel-container {
        margin: 20px 15px;
    }

    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;

        .filter-wrapper {
            .filter {
                min-width: 100%;
                width: 100%;
            }
        }
    }

    .travels-container {
        margin: 30px 0;
        gap: 30px;

        .travel {
            flex-direction: column;
            align-items: stretch;
            gap: 20px;

            img {
                width: 100%;
                max-width: 300px;
                align-self: center;
            }

            .detail-1,
            .detail-2 {
                text-align: center;
            }

            .option-buttons {
                width: 100%;
                min-width: auto;
                align-self: center;
                max-width: 300px;
            }
        }
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .travel-container {
        margin: 15px 10px;
    }

    .travels-container {
        .travel {
            .option-buttons {
                .detail-btn,
                .booking-btn {
                    height: 40px;
                    font-size: 12px;
                }
            }
        }
    }
}