:root {
    --primary-color: #d4a373;
    --bg-color: #fcfaf7;
    --text-main: #3d3d3d;
}

body {
    font-family: 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    color: var(--text-main);
}

.home-hero {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: -50px auto 50px;
    padding: 0 20px;
}

.trip-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 25px;
}

.trip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.2);
}

.trip-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
}

.trip-info h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

.trip-info p {
    color: #777;
    margin: 0;
}

.trip-arrow {
    font-weight: bold;
    color: var(--primary-color);
}

.upcoming {
    opacity: 0.6;
    border: 2px dashed #ccc;
    background: transparent;
    box-shadow: none;
}