/* travel.css */

.travel-hero {
    height: 400px;
    background: linear-gradient(rgba(0, 84, 164, 0.6), rgba(0, 84, 164, 0.6)), 
                url('../img/hero-travel.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.4;
    font-weight: 900;
}

.shop-grid {
    display: grid;
    gap: 40px;
    margin-top: 30px;
}

.shop-card {
    display: flex;
    gap: 25px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s;
}

.shop-image {
    flex: 0 0 260px;
}

.shop-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.shop-details h3 {
    font-size: 22px;
    color: #0054a4;
    margin-bottom: 15px;
    border-left: 4px solid #d4a74a;
    padding-left: 12px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.info-table th {
    width: 100px;
    text-align: left;
    font-size: 13px;
    color: #888;
    padding: 8px 0;
    vertical-align: top;
}

.info-table td {
    font-size: 15px;
    padding: 8px 0;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    padding: 8px 20px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
    transition: 0.3s;
}

.map-link:hover {
    background: #d4a74a;
    color: #fff;
}

.link-cat-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 900;
}

.banner-area {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-area img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.banner-area img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .shop-card {
        flex-direction: column;
    }
    .shop-image {
        flex: 0 0 auto;
    }
}