/* history-tour.css */
.history-tour-page {
    padding-top: 100px;
}

.history-tour-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.history-tour-content .page-title {
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-left: 70px;
    margin-right: 70px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6a00;
}

.history-tour-images {
    text-align: center;
    margin-left: 70px;
    margin-right: 70px;
}

.history-tour-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    box-shadow: none;
    border-radius: 8px;
}

/* 예약 버튼 */
.reservation-link {
    text-align: center;
    margin: 40px 0;
}

.btn-reservation {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
}

.btn-reservation i {
    margin-right: 8px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .history-tour-page {
        padding-top: 120px;
    }

    .history-tour-content {
        padding: 15px;
    }

    .history-tour-content .page-title {
        font-size: 1.5rem;
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .history-tour-images {
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
    }

    .history-tour-image {
        border-radius: 4px;
        margin-bottom: 15px;
    }

    .btn-reservation {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .history-tour-page {
        padding-top: 100px;
    }

    .history-tour-content .page-title {
        font-size: 1.3rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    .history-tour-images {
        padding-left: 10px;
        padding-right: 10px;
    }

    .btn-reservation {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}


