/* ========================================= */
/* Accommodation & Transportation Styles
/* ========================================= */

.trans_section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

/* 共用區塊標題 */
.info-block {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #eaeaea;
}

.block_title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark_color, #2c3e50);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.block_title i.material-icons {
    margin-right: 10px;
    font-size: 26px;
    color: var(--dark_color, #2c3e50);
}

.block_content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

/* 1. 地圖與地點區塊 */
.venue_address {
    margin-bottom: 20px !important;
    font-size: 17px !important;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 45%; /* 控制地圖長寬比 */
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 2. 住宿區塊 */
.intro-text {
    margin-bottom: 25px !important;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hotel-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.hotel-card h4 {
    font-size: 18px;
    color: #333;
    margin: 0 0 15px 0;
}

.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.hotel-details span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.hotel-details span i {
    font-size: 18px;
    margin-right: 8px;
    color: #888;
}

.book-btn {
    margin-top: auto;
    display: inline-block;
    background-color: var(--dark_color, #2c3e50);
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #1a252f;
    color: #ffffff;
}

/* 3. 交通區塊 */
.transport_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport_list li {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e0e0e0;
}

.transport_list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.transport_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.transport_icon i {
    font-size: 24px;
    color: var(--dark_color, #2c3e50);
}

.transport-info strong {
    display: block;
    font-size: 17px;
    color: #333;
    margin-bottom: 8px;
}

.transport-info p {
    margin: 0;
    font-size: 15px;
    color: #555;
    /* text-align: justify; */
}

/* --- 手機版 RWD 微調 --- */
@media (max-width: 768px) {
    .info-block {
        padding: 20px;
    }
    
    .map-container {
        padding-bottom: 70%; /* 手機上地圖比例高一點比較好點擊 */
    }
    
    .transport_list li {
        flex-direction: column;
    }
    
    .transport_icon {
        margin-bottom: 15px;
    }
}